a fresh install produces the following error:
http://img245.images…installerrorrx2.jpg
any hints? ;)
For security reasons, we recommend you to have magic_quotes set to ON and register_globals
set to OFF in php.ini, although PostNuke will work regardless of these settings.
![]()
a .htaccess file with "php_flag register_globals Off" in the postnuke root solved the problem here.
my entry to the bug tracker was "closed" -_-
Date: 2006-10-15 04:16
Sender: Beyss
a .htaccess file with "php_flag register_globals Off"
in the postnuke root solved the problem here.

Date: 2006-10-15 04:16
Sender: Beyss
a .htaccess file with "php_flag register_globals Off"
in the postnuke root solved the problem here.
I think I used php_value register_globals 0 and php_value magic_quotes_gpc 1 in the .htaccess
When I read your post I was first kind of anoyed.. cause.. anyone knows that I cant create a file starting with a dot! But I trusted in your wisdom and the installation worked perfectly!!!!![]()
There are a number of solutions to this problem.
If you run your own server, or PHP is running as a cgi on your hosted server:
Open php.ini, find the line
Code
register_globals = On
and change it to:
Code
register_globals = Off
If you don't run your own server, and PHP is running as an apache module, create an .htaccess file (or edit your existing one) and add:
Code
php_flag register_globals Off
If this generates an error 500, then talk to your host. If they won't or can't disable register_globals, then you will need an updated pnAPI.php from SVN once a particular bug is fixed.
This problem was plaguing me as well. I solved it by creating a php.ini file in the root of my postnuke install with the following settings:
Code
register_globals=off
post_max_size = 20M
memory_limit = 80M
upload_max_filesize = 20M
max_execution_time = 120
expose_php=off
There are a number of solutions to this problem.
If you run your own server, or PHP is running as a cgi on your hosted server:
Open php.ini, find the line
Code
register_globals = On
and change it to:
Code
register_globals = Off
If you don't run your own server, and PHP is running as an apache module, create an .htaccess file (or edit your existing one) and add:
Code
php_flag register_globals Off
If this generates an error 500, then talk to your host. If they won't or can't disable register_globals, then you will need an updated pnAPI.php from SVN once a particular bug is fixed.