View Single Post
Old 04-20-2009, 03:37 PM   #2 (permalink)
allworknoplay
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

You have this:

Code:
$session_start();

But it should just be this:

Code:
session_start();

I'm testing this against my mySQL directory and I am getting an error on line 39:

Warning: filemtime() [function.filemtime]: stat failed for /usr/local/mysqldocs in /usr/local/apache/public/directory_session.php on line 39


which is this line:

Code:
if (time() - filemtime($directory.$file) < 604800) {
allworknoplay is offline  
Reply With Quote