| Previous topic :: Next topic |
| Author |
Message |
Jerome!
Joined: 08 Jun 2007
Posts: 4
|
| Posted: Fri Jun 08, 2007 3:38 pm Post subject: MySQL Max executiontime |
|
|
Hello everyone,
I'm having troubles installing Vtiger 5.03 on my hosting service. They have limited the max. execution time to 30 instead of the required 600 .
Is there a way to dump a SQL script into the database? Can I generate the SQL code from the installer someway?
Any help appreciated,
Jerome! |
|
| Back to top |
|
tpubcom
Joined: 20 Jun 2007
Posts: 7
|
| Posted: Tue Jul 10, 2007 4:12 am Post subject: Re: MySQL Max executiontime |
|
|
I was having the same problem with my dedicated server. It looks like they forgot to create a php.ini file with the installation of vtiger. Check your VTIGERPATH/php/lib directory and see if there's a php.ini file in there. If not copy one from somewhere and set your max_execution_time to a higher limit.
This fixed it for me. I was having problems with the backup timing out.
Rich. |
|
| Back to top |
|
Angilo
Joined: 07 Jul 2007
Posts: 4
|
| Posted: Tue Jul 10, 2007 8:05 am Post subject: Re: MySQL Max executiontime |
|
|
Just put this at the bottom of your "config.inc.php" file:
Code:
// Set maximum execution time
set_time_limit(600);
This is the time in seconds, 10 minutes in this case. |
|
| Back to top |
|
| |