Jul 28th, 2011, 9:56 AM
Hey guys,
That is one wacky error! You should never get redirected to that page in any situation. So it looks like maybe the files didn't survive the trip when you FTP'd them to your web server.
It's also possible PHP isn't enabled on your server...?
Personally, I'd start by creating a phpinfo.php file, with the following content:
Upload that to your web server and load it up in your browser. That will let you know about your PHP environment - and in the very least, confirm that PHP is running.
Good luck!
- Ben
That is one wacky error! You should never get redirected to that page in any situation. So it looks like maybe the files didn't survive the trip when you FTP'd them to your web server.
It's also possible PHP isn't enabled on your server...?
Personally, I'd start by creating a phpinfo.php file, with the following content:
PHP Code:
<?php phpinfo(); ?>
Upload that to your web server and load it up in your browser. That will let you know about your PHP environment - and in the very least, confirm that PHP is running.
Good luck!
- Ben