Windows 2000 SP4
Apache/2.0.55
PHP/5.1.5
mysql 5.0.18
PHPMyAdmin 2.6.4-pl3
phpwcms dev 1.2.5
as mentioned earlier, the issue in step 2 seems to be a problem with the sql insert comamnd used to place the admin account details in to the "user" table
the insert comamnd only modifies certain fields and relies on the other fields being set to their default values as given in the schema for table "_user"
some of the default values appear to be invalid and so the insert fails and no admin account is created
also had a similiar issue trying to install the 1.1.4 rc version so i assume its some change made in the way mysql is running
one way i found around the setup issue was to modify the mysql global settings so as to remove STRICT_TRANS_TABLES which basically means that during a SQL INSERT if a value is invalid mysql will put the lowest valid value in
running the sql statement below in myphpadmin will dispaly the global setting
SELECT @@global.sql_mode
and this sql statment with set the "modes" of the global settingsl
SET GLOBAL sql_mode='modes'
in mysql 5.0.18 the default 'modes' value is
'STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'
I changed the 'modes' value to
'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'
by making the above change I was able to run the phpwcms setup
with the 1.1.4 cr of phpwcms after running setup was able to login and phpwcms seemed to be working although not really used it in anger yet
with 1.25 dev version of phpwcms (setup with its own database) was able to login but then ran in to a this page can not be displayed
so i still appear to have an issue with the 1.2.5 dev version

to be honest not really happy making the global setting change in mysql as I belong to the old school where all values should be explicitly defined
if i am just being a pain trying to run latest version of mysql will people please let me know whats the latest version of mysql they have managed to use to run phpwcms 1.2.5 dev version and what global settings they have configured in mysql