I have a shared host, and have created my own php.ini file for my site platinumtouchent.biz. However I get the following error:

register_globals is enabled. Drupal requires this configuration directive to be disabled. Your site may not be secure when register_globals is enabled. The PHP manual has instructions for how to change configuration settings. (Currently using PHP register globals Enabled (''off''))

Can't install Drupal. Anyone have any ideas?

Comments

Anonymous’s picture

I had this problem just the other day while working on multisite.

Make sure your php.ini stipulates that register globals is off.

register_globals = off

Why did you upload a php.ini in the first place?

chriswarren-1’s picture

I created a php.ini file because my hosting service told me I needed to, and one wasn't put in with Drupal. After kicking around some scripts I found out what my problem was.

I had my php.ini file reading like:

register_globals = 'off'

When it should have read the way yours does:

register_globals = off

Thanks for the assist though!!