This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Importing Woes


avatar
gene 2
From: -
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. Confused Face

Anyone have any ideas?

Thanks,
Gene

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Importing Woes
avatar
Editor
0
From: -
Look like zlib is missing. You need to configure PHP with the parameter -–with-zlib
1 Re: Importing Woes
avatar
OP 2
From: -
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


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:
error_reporting( 0 );


to:
error_reporting( E_ALL );
1 Re: Importing Woes
avatar
Editor
0
From: -
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:
error_reporting( 0 );


to:
error_reporting( E_ALL );

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.