I have a working Drupal installation that uses the 4.4.1 and the xtemplate / pushbutton.
This installation hosts 3 separate domains on one installation, in the same database, but with different prefixes in the conf files.
I tried to upgrade to yesterday (2004-09-26 CVS), and ran into problems.
Here are the steps I did:
- Created the users_roles and locales_meta tables for each domain
CREATE TABLE site1_users_roles (
uid int(10) unsigned NOT NULL default '0',
rid int(10) unsigned NOT NULL default '0',
PRIMARY KEY (uid, rid)
);
CREATE TABLE site2_locales_meta (
locale varchar(12) NOT NULL default '',
name varchar(64) NOT NULL default '',
enabled int(2) NOT NULL default '0',
isdefault int(2) NOT NULL default '0',
plurals int(1) NOT NULL default '0',
formula varchar(128) NOT NULL default '',
PRIMARY KEY (locale)
);
(same for site2, and site3)
- Ran the update.php script
At this point, I can browse the site with no problem.
However, when I go into the admin menus and change anything (I tried going into admin/themes and unchecking 'primary links' one time, and tried to remove the path to the logo at another time), and then clock on Save configuration, the site becomes unusable with the following message for any access:
Fatal error: Maximum execution time of 30 seconds exceeded in /home/myusername/html/includes/menu.inc on line 653