Error message
Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home1/tylerfra/public_html/includes/common.inc).
drupal 6.x
So I was trying to manually run cron.php on a drupal site, and it was timing out because the cron job couldn't finish. The cron job is quite intense, and I'm sure it isn't finishing because I am trying to run it during the day on a busy site. So in order to tell Drupal to forget about your last cron attempt:
- go into your drupal database
- go into the 'variable' table
- sort by the 'name' column ascending order
- look for any variable names beginning with 'cron_' and delete them
Here are some MySQL queries that should get the job done:
PHP
From abbreviation to name...
Drupal can be a memory hog, it's very hungry. Occassionally you may run out of memory when trying to enable a module or some other feature. If this happens, you'll probably see a message similar to the following
Fatal error: Allowed memory size of # bytes exhausted (tried to allocate # bytes) in includes/database.mysqli.inc
To fix this problem, I opened my sites/default/settings.php and added the following php ini setting:
Pages