Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
4.1k views
in Q2A Core by
I receive a 500 Internal server error when trying to accesso localhost/qa (which is the folder where I put all the application).

I'm working on php 5.2 an apache 2.2

I followed all the installation step correctly.

Nothing happens removing htaccess.

Can you please help me: I would love to try your script.

1 Answer

+1 vote
by
 
Best answer
have you tried serving a standard php page from your qa directory to make sure you have your web server configured correctly?

Just do a index.php with a standard echo.
make sure that you can serve pages from the directory first.
by
I just tried with http://localhost/qa/index.php and gives the same error.
Though I got other websites running on localhost and they work.
What it may be?
by
I just solved it: I deleted the .htaccess file. Thanks anyway!
by
The htaccess is at least important to have nice urls for seo.
Instead of deleting the htaccess file You may try this at the beginning of Your htaccess file:

AddType x-mapp-php5 .php

There are commands communly used for this kind of problems, a google search for AddType x-mapp-php5 .php brings up many infos..
by
thanks hey, that resolved my problem as well.
...