Magic Quotes GPC Off | No |
It basically won't install unless Magic Quotes GPC is turned off.
Found the answer here by humvee
All other answers were pointing towards fooling Joomla into thinking that either it didn't need GPC turned off, or that it needs the feature turned on. The correct way would of course to have the system setup to how joomla would need it (hence the verification stage here).
Basically, found php.ini in two folders:
Applications/MAMP/bin/php/:
php5.2.17
php5.3.6
/config/php.ini
in 5.3.6 I only found the following lines:
; Magic quotesin 5.2.17 I found these more promising lines:
;
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = On
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
I edited the line in 5.2.17 to no avail. I also looked in MAMP which said it was using php 5.3.6 anyway.
I looked on MAMP's website and found that the latest version of MAMP comes with version 5.4.4. I also read that PHP 5.4.4 has depricated Magic Quotes! as of 5.3.
So, the easier solution would be simply to upgrade MAMP.
After doing so I found that I had to put my MYSQL password in for MAMP to be able to use mysql. In these files (found in a previous blog):
- Go to MAMP/bin/mamp/index.php and change the password bit
- Got to MAMP/bin/MyPHPAdmin/config.inc.php and change the password bit in here too
Joomla 3 worked after this.
No comments:
Post a Comment