PHP request not responding

Status
Not open for further replies.

Bengal313

Beta member
Messages
4
We moved our web server to a new machine with the following config.

Apache 2
MySQL 5
PHP 5
SUSE Linux


Everything works fine. The php pages show up fine. The record sets all show up. But when I go to login in an admin page. I put in the username and password and click login. Nothing happens when I click the login button except the fields clear. Also the same thing happens when I try to input something in the search field. Nothing happens. I read somewhere that it has something to do with the session module? My session module is turned on. I tried using error reporting
PHP:
Turn on error reporting:
PHP Code:
ini_set('display_errors', 1);
error_reporting(E_ALL);

But when I run the page the entire page is a blank.


Any thoughts?
 
Try this code:

PHP:
<?php

session_start();
echo session_id();

?>

See if it echo's the ID.
 
Status
Not open for further replies.
Back
Top Bottom