J'ai un script PHP que je dois exécuter en tant que tâche cron. Cependant, ce script doit avoir accès à l'API WP ( get_pages()
, get_post_meta()
et get_permalink()
spécifiquement). J'ai suivi les instructions sur http://codex.wordpress.org/Integrating_WordPress_with_Your_Website , mais en vain.
Code:
require_once('../../../wp-blog-header.php');
$args = array(
'child_of' => 2083
);
$pages = get_pages($args);
Cependant, lorsque je cours à php -q this_file.php
partir de la ligne de commande, j'obtiens la sortie suivante:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Database Error</title>
</head>
<body>
<h1>Error establishing a database connection</h1>
</body>
</html>
Quelqu'un a des idées / suggestions?
get_pages
, il a besoin de la classe WP. donc wp-blog-header.php était le bon fichier à appeler.