Hi,
I am new to the Drupal community, so any help would be appreciated. I got a running site off a client that was causing them problems due to a custom module that the previous website administrator had built and install. So I got brought in to fix it which is fine. BUT getting the site running locally has been a tricky to say the least. When I finally had it all running and logged in with the administrator username and password.
I immediately got this error message.
Fatal error: Maximum execution time of 30 seconds exceeded in ..\includes\database.mysql.inc on line 108
I had this same one when $db_url was set wrong. Even changing $db_url to a working Drupal site of the same version, the error still persists.
Below is the last record created in the watchdog table. Which is as far I know the only logging table in this version of Drupal (Please correct me if I am wrong)
"38432";"9";"php";"%message in %file on line %line.";"a:4:{s:6:\"%error\";s:12:\"user warning\";s:8:\"%message\";s:840:\"Duplicate entry 'taxonomy/autocomplete' for key 'PRIMARY'
query: INSERT INTO menu_router
(path, load_functions, to_arg_functions, access_callback,
access_arguments, page_callback, page_arguments, fit,
number_parts, tab_parent, tab_root,
title, title_callback, title_arguments,
type, block_callback, description, position, weight, file)
VALUES ('taxonomy/autocomplete', '', '', 'user_access',
'a:1:{i:0;s:14:\\"access content\\";}', 'taxonomy_autocomplete', 'a:0:{}', 3,
2, '', 'taxonomy/autocomplete',
'Autocomplete taxonomy', 't', '',
4, '', '', '', 0, 'modules/taxonomy/taxonomy.pages.inc')\";s:5:\"%file\";s:45:\"I:\\phpWorkspace\\website\\web\\includes\\menu.inc\";s:5:\"%line\";i:2457;}";"3";;"http://local.corksimon.ie/in";;"127.0.0.1";"1313142428"
Running:
Drupal 6.19
Apache 2.2.17
MySql 5.1.2.17-32bit
PHP 5.2.16
Unofficial WampServer 2.0j-32bit
Machine Details:
MS Windows 7 Ultimate 64-bit SP1
Intel Core Duo CPU E8500 3.16GHz
4.0GB RAM
Intel G33/G31 Express Shipset Family
Comments
Try increasing
Try increasing max_execution_time to 60 sec in php.ini file.
Abhishek Sawant
Drupal Developer
Hi, Thanks for the quick
Hi,
Thanks for the quick response. I had already tried that as it was suggested by a forum post on the issue. So I tried the site on firefox, IE9 and Safari. It was working on all of them. I logged in on firefox and then the site gives a fatal error as well. It is still working in IE9 and Safari. I then cleared the cache and cookies in Chrome but still no luck. Any ideas?
Hello! I had the same
Hello!
I had the same problem, i went on the net and after a lot pages i found this one
the soluce
And it works. You have to go one location of drupal/sites/default folder then found the file defaulf.setting and add new line on it
ini_set('max_execution_time', 0);
You can also use others one like
ini_set('session.cookie_lifetime', 2000000);
it's as you wish
I hope it help's you
I had the same problem, i
I had the same problem, i went on the net and after a lot pages i found this one
the soluce
And it works. You have to go one location of drupal/sites/default folder then found the file defaulf.setting and add new line on it
ini_set('max_execution_time', 0);
You can also use others one like
ini_set('session.cookie_lifetime', 2000000);
it's as you wish
I hope it help's you