Ich habe ein PHP-Skript, das ich als Cron-Job ausführen muss. Allerdings muss dieses Skript Zugriff auf die WP - API ( get_pages()
, get_post_meta()
und get_permalink()
speziell). Ich habe die Anweisungen unter http://codex.wordpress.org/Integrating_WordPress_with_Your_Website befolgt , aber ohne Erfolg.
Code:
require_once('../../../wp-blog-header.php');
$args = array(
'child_of' => 2083
);
$pages = get_pages($args);
Wenn ich jedoch php -q this_file.php
von der Kommandozeile aus starte, erhalte ich folgende Ausgabe:
<!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>
Hat jemand irgendwelche Gedanken / Vorschläge?
get_pages
benötigt er die WP-Klasse. Also war wp-blog-header.php die richtige Datei zum Aufrufen.