Importing Woes While attempting to install RC3 on Freebsd, using apache 2.2, and mysql 5, I arrive at the step 9 "Installing Templates". And that's it. It just sits there with "Importing install" on the screen. I've tried chmod'ing the templates directory to 777 to no avail. Anyone have any ideas? Thanks, Gene
Chmod the templates directory will not help. The installer will read and parse the templates XML files at this part of the installation (in your case /cadmin/install/default.tmpl.xml). You could try to change the following line in cadmin/cinstall.php to see if there are any errors: PHP: error_reporting( 0 ); to: PHP: error_reporting( E_ALL );
I did so - and the error is: Fatal error: Call to undefined function gzinflate() in classes/class_xml.php on line 252 I'll have to investigate - I'm using PHP 5 so the function ought to be there. Maybe I need to recompile - Gene