webshop error

Status
Niet open voor verdere reacties.

soundguy

Gebruiker
Lid geworden
27 okt 2007
Berichten
167
hallo mensen,

ik heb al een tijdje een webshop maar ik wil er nu echt mee aan de gang gaan.
dus ook op internet zetten.
maar als ik hem nu op de server zet krijg ik dit:

Server Requirement Error: register_globals is disabled in your PHP configuration. This can be enabled in your php.ini configuration file or in the .htaccess file in your catalog directory.

wat betekent dat? en hoe kan ik zorgen dat hij het gaat doen?

groeten soundguy
 
Het betekent: "register_globals is uitgeschakeld in jouw PHP configuratie. Dit kan worden ingeschakled in je php.ini configuratie-bestand of in het .htaccess bestand in de map van je catalogus". :rolleyes:
 
#<IfModule mod_php4.c>
# php_value session.use_trans_sid 0
# php_value register_globals 1
#</IfModule>

dat betekent toch al dat hij is ingeschakeld?
 
dan krijg ik het nogsteeds dit is mijn .htacces bestand:

# $Id: .htaccess,v 1.3 2003/06/12 10:53:20 hpdl Exp $
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
# <Directory "/usr/local/apache/htdocs">
# AllowOverride Options
# </Directory>
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)

# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers

<IfModule mod_setenvif.c>
<IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfDefine>
</IfModule>

# If Search Engine Friendly URLs do not work, try enabling the
# following Apache configuration parameter
#
# AcceptPathInfo On

# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)
#
<IfModule mod_php4.c>
php_value session.use_trans_sid 0
php_value register_globals on
</IfModule>
 
Hangt van je Apache-versie af...

Code:
# Override PHP settings. The first IfModule is
# for Apache 1.3, the second for Apache 2. 

<IfModule mod_php4.c>
  php_value register_globals 1
</IfModule>

<IfModule sapi_apache2.c>
  php_value register_globals 1
</IfModule>
 
php_flag register_globals on

dat heb ik nu toegevoegt maar nu duurt het laden een eeuw en je krijgt niks...
tis al een verbeting...
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan