Domain Logins and PHP Don't work

ScathDeSolas

Verified User
Joined
Feb 10, 2011
Messages
52
Okay so I have no idea how this happened but ANY website on our server that is visited the logins do not work. You can't login on ANY one of them. Joomla, VBulletin, PHP Scripts for Downloads, NONE OF THEM WORK.

On top of that other scripts such as a fresh Joomla Installation DOESN'T WORK, if I click NEXT it just refreshes the page.

If you try to login the page refreshes and doesn't log you in.

What could the issue be?
 
I almost forgot to mention that I also set php.ini correctly and the configuration path is correct and even though I update my php.ini it wont show up under 5linerecords.com/phpinfo.php (server is linux, debian, latest (squeeze))
 
So basically something is wrong with php I'm guessing that this wont work. Is there a way to update ALL PHP5 RELATED mods and such including apache and everything without having to rollback my server and delete everything and without having JoesDataCenter put everything back to factory (how it came originally)
 
Where do you have your php.ini located? Are you running with mod_php? What are the permissions of the php.ini file?
 
PHP INI is located and SET to be read at /usr/local/lib/php.ini

It is working properly now, one problem solved, but the site still remains with the same issue of refreshing and not loading logins, etc.

I tried doing this command:
/usr/local/apache/bin/httpd -t

And it came up as No such file or directory

also Php5 load module was commented out so we uncommented it.
 
WAS
Code:
#LoadModule dummy_module /usr/lib/apache/mod_dummy.so
#LoadModule php5_module        /usr/lib/apache/libphp5.so
Include	/etc/httpd/conf/extra/httpd-phpmodules.conf

NOW:
Code:
#LoadModule dummy_module /usr/lib/apache/mod_dummy.so
LoadModule php5_module        /usr/lib/apache/libphp5.so
Include	/etc/httpd/conf/extra/httpd-phpmodules.conf

Any other ideas? Should I just reinstall apache?
 
We're running DirectAdmin default settings and configurations on the server. I don't know if it comes default with mod_php
 
Back
Top