I am using apache 2.2.22-win32-x86-openssl-0.9.8t, mysql-5.5.24-win32, php-5.2.17-Win32-VC6-x86. phpinfo() works but PHP pages won't load, show source code. I have been trying to find the solution for days. Could you please help? Thank you.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
| show 4 more comments |
|
Since you seem unfamiliar with most of the terms used in answers/comments I suggest you download an all-in-one WAMP (Windows, Apache, MySQL, PHP) package: These will take care of the mis-configuration issues you seem to be having. It will also give you the opportunity to change certain settings knowing that you can just reinstall the package if everything blows up. |
|||
|
|
|
Check in your php.ini if you have "short_open_tag" enabled, and if you use:
instead of
Or simple test (in a file):
|
|||||||||||||
|
|
You know that PHP is installed and working since phpinfo() is showing properly. This leads to the assumption that it is your specific configuration of a script that is not working.
|
|||||
|
ini_set('display_errors',true); error_reporting(E_ALL);on top of your script and see what is the problem. – Justin T. May 15 '12 at 16:24phpinfo()works but other pages are dumping their full source? Seems to be a contradiction. Need more information to answer. Review your apache and php error logs. – Mike B May 15 '12 at 16:27