Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » PHP request not responding
Closed Thread
Old 02-12-2008, 11:17 PM   #1 (permalink)
Bengal313's Avatar
 
Newb Techie

Join Date: Mar 2007

Posts: 4

Bengal313 is on a distinguished road

Default PHP request not responding

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 Code:
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?
Bengal313 is offline  
Old 02-12-2008, 11:36 PM   #2 (permalink)
CrazeD's Avatar
 
Wizard Techie

Join Date: Feb 2006

Location: Maine

Posts: 3,682

CrazeD will become famous soon enough

Send a message via AIM to CrazeD Send a message via MSN to CrazeD
Default Re: PHP request not responding

Try this code:

PHP Code:
<?php

session_start
();
echo 
session_id();

?>
See if it echo's the ID.
__________________

Need website help? PM me!
CrazeD is offline  
Old 02-13-2008, 01:36 PM   #3 (permalink)
Bengal313's Avatar
 
Newb Techie

Join Date: Mar 2007

Posts: 4

Bengal313 is on a distinguished road

Default Re: PHP request not responding

I get this.

5fivsareptgca2e3dvia38sfk0
Bengal313 is offline  
Old 02-13-2008, 06:39 PM   #4 (permalink)
CrazeD's Avatar
 
Wizard Techie

Join Date: Feb 2006

Location: Maine

Posts: 3,682

CrazeD will become famous soon enough

Send a message via AIM to CrazeD Send a message via MSN to CrazeD
Default Re: PHP request not responding

Ok, so sessions are working.

Can you post your code that doesn't work?
__________________

Need website help? PM me!
CrazeD is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP problem Mike9182 Web Site Hosting / ISP Q & A 4 08-19-2007 11:41 PM
Need a good captcha generating php script surut Windows Operating Systems and Software 1 05-26-2007 09:23 AM
PHP captcha script needed iorgus Programming Discussions 2 05-20-2007 01:33 PM
PHP 2-player game? thejeremy Programming Discussions 4 04-09-2007 06:01 PM
Remote file access w/ IP + PHP? thejeremy Programming Discussions 2 04-04-2007 05:24 PM