Wordpress script run error

fly4food

New Member
I have an xml sitemap generator plugin installed on my wordpress blog and whenever I run it I get this error:

  • The last run didn't finish! Maybe you can raise the memory or time limit for PHP scripts. Learn more
  • The last known memory usage of the script was 12.75MB, the limit of your server is 32M.
  • The last known execution time of the script was 0.04 seconds, the limit of your server is 120 seconds.
  • The script stopped around post number 34 (+/- 100)

Any suggestions or ideas?

Thanks!
 
One way is to create (becareful to not overwrite any existing .htaccess file as in some FTP programs they are not visible) or append your .htaccess file to add

php_value memory_limit 64M
php_value max_execution_time 180

but ultimately a script or a plug-in shouldn't require these high values.
 
Top