Can someone help me with this?
Fatal error: Maximum execution time of 30 seconds exceeded in /usr/local/plesk/apache/vhosts/darrendonohue.com/httpdocs/mainfile.php on line 392
when saving from my preferences.
You can modify maximum execution time in php.ini file. There is a variable named max_execution_time on row like:
max_execution_time = 30 ; Maximum execution time of each script, in seconds
Zdenek
it looks like you're on a shared hosting server.
you can try using the .htaccess way.
in your .htaccess file, add this line
php_value max_execution_time 3600
that's set the max time to 1 hr.
-sridhar
What is the script trying to do? Do you get the error every time? If it is just occasional. does it only happen when doing that one function?
30 seconds is plenty of time for most local operations, you might have a loop going on or something.
I don't know where to find that file.
And to answer the second question, it happens every time, it did not used to, until i add a new theme.....
Thanks again....