

- #Http error 500 mamp wordpress how to
- #Http error 500 mamp wordpress install
- #Http error 500 mamp wordpress driver
Should I type in the cmd window "php" + that option ? I am really lost.Īs you have pointed out, I think that the problem comes from the PHP version. Should I comment 'pdo mysql driver' and de-comment 'mysql pdo support' in the php.ini ? Then how do I actually do the 'recompilation' ?
#Http error 500 mamp wordpress how to
I am sorry, but I don't understand how to recompile PHP with pdo support. However this problem is still quite annoying. The original website that was (and is still) in this virtual machine has the same problem: I can't access to the page "localhost/admin" or "localhost/admin/reports/status" but I can go to the modules pages and most of the administrator pages.
#Http error 500 mamp wordpress driver
So I don't really know if the permissions on the driver is okay or not. Yes, I did restart MySQL and Apache each time I tried to change something.īut the whole Apache, MySQL, PHP that I am using was already installed, and what I have to do is to build a new website on these. If someone has the solution or can help me. In my php.ini file, 'extension=php_pdo_mysql.dll' is not in comment. So I checked that the file 'C:\Program Files (x86)\PHP\ext\php_pdo_mysql.dll' and it is indeed here. Child 1944: Starting thread to listen on port 80. Apache/2.2.25 (Win32) configured - resuming normal operations PHP Warning: PHP Startup: Unable to load dynamic library 'C:\Program Files (x86)\PHP\ext\php_pdo_mysql.dll' - Le module sp\xe9cifi\xe9 est introuvable.\r\n in Unknown on line 0 Parent: Child process exited successfully. Child 1164: All worker threads have exited. I have checked the error.log of Apache and this is what I got: Parent: Received shutdown signal - Shutting down the server. But the weird thing is that I can still go to create contents pages and add contents : and it works ! I can't access to these pages and I got once more the HTTP 500 Internal server error. The problem now comes when I try to go to admin pages like modules. If I refresh the page, I can still continue the installation until I finish it. Then I go to " with my browser to set up the installation.īut at the database configuration, when I confirm my settings, I have the HTTP 500 Internal server error.
#Http error 500 mamp wordpress install
I try to install Drupal as usual (copy -> settings.php.).

Version MySQL : mysql Ver 14.14 Distrib 5.5.28

In the following, I will try to explain precisely how iteration works in different cases.I have a problem with the Drupal 6 installation. Otherwise its a more complex problem to locate.įoreach supports iteration over three different kinds of values: Īt the very least you should begin to get errors by changing to development. and change the environment define to development define('ENVIRONMENT', 'development'). Change the database.php to reflect your local development databasename, password. If you don't have different subdirectories for production and development than you just have one config.php and one database.php file in the main config directory. My guess is that the first line of the index.php file says this define('ENVIRONMENT', 'production') and points to a production database in /application/config/production/database.php (as you downloaded it from a production server) - and as a result you can't connect nor are you getting any errors as by default the production environment serves no errors just a 500 page if something went wrong. CodeIgniter in the index.php file has options for different environments production and development and supports having subdirectories of the same name in the config folder with different configs depending on the environment.
