Sziasztok.
Az egyik honlapomon (http://kacagva.hu) sokszor "beragadnak" az időzített feladatok, ezért nem lesznek kiküldve a hírlevelek. Nem tudok rájönni mi a baj.
A tárhelyen van beállítva, hogy óránként fusson le a cron.php. Az admin/reports/dblog lapon azt látom, hogy minden esetben, amikor nem sikerült az időzített feladatoknak egy órán belül lefuttatni, van egy hibaüzenet is:
require_once(./sites/all/modules/cck/theme/theme.inc) [function.require-once]: failed to open stream: No such file or directory - .../public_html/drupal/sites/all/modules/cck/content.module - 205. sor.
Gondolom ez okozza a gebaszt. A hiba nem a 205. sorban van, mert betettem elé egy 28 soros hibakeresdőt:
/** * Implementation of hook_theme(). */ function content_theme() { $path = drupal_get_path('module', 'content') .'/theme'; /** * HIBAKERESO ELEJE */ watchdog( 'hibakereso', 'Current working directory at content_theme() is: ' . getcwd() ); watchdog( 'hibakereso', 'The real path of file is ' . realpath("./$path/theme.inc") ); if (!file_exists("./$path/theme.inc")) { watchdog( 'hibakereso', 'File not found. ' . realpath("./$path/theme.inc") ); } elseif (!is_readable("./$path/theme.inc")) { watchdog( 'hibakereso', 'File is not readable. ' . realpath("./$path/theme.inc") ); } /** * HIBAKERESO VEGE */ require_once "./$path/theme.inc"; // <-- ITT A HIBA!
A négy watchdog()-ból az első három fut le az alábbi kimenetekkel:
- Current working directory at content_theme() is: /home/kacagva
- The real path of file is [semmi]
- File not found. [semmi]
Miért nem találja?
Hasonló hiba a Date modulban
Mi lehet ezzel a gond?
Fox Mulder
jogosultság?
Van joga a webszervernek a date.theme olvasására?
644
Jogosultságok: 644. Eddig nem volt gond vele, ám most egyszer csak...
Fox Mulder