Időzített feladatok beragadnak

fox mulder képe

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:

  1. Current working directory at content_theme() is: /home/kacagva
  2. The real path of file is [semmi]
  3. File not found. [semmi]

Miért nem találja?

Melyik modulhoz, modulokhoz kapcsolódik a téma?: 
Drupal verzió: 
fox mulder képe

require_once(./sites/all/modules/date/date/date.theme) [function.require-once]: failed to open stream: No such file or directory - .../public_html/drupal/sites/all/modules/date/date/date.module - 261. sor.

Mi lehet ezzel a gond?

  1. function date_theme() {
  2. $path = drupal_get_path('module', 'date');
  3. require_once "./$path/date.theme";
  4. ...
0
0

Fox Mulder

Illyés Edit képe

Van joga a webszervernek a date.theme olvasására?

0
0
fox mulder képe

Jogosultságok: 644. Eddig nem volt gond vele, ám most egyszer csak...

0
0

Fox Mulder