View Single Post
Old 07-08-2004, 02:20 PM   #2
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Hi. One more oops...

These changes are for PhpDig version 1.8.1 downloaded before the date of this post.

In auth.php right after:
PHP Code:
$relative_script_path ".."
place the following:
PHP Code:
if (isset($_POST['no_connect'])) {
    
$no_connect $_POST['no_connect'];

It should look like this afterwards:
PHP Code:
$relative_script_path "..";

if (isset(
$_POST['no_connect'])) {
    
$no_connect $_POST['no_connect'];

Also in auth.php find:
PHP Code:
header("Location: $relative_script_path/admin/"); 
and replace with:
PHP Code:
header("Location: $relative_script_path/admin/$redir_file"); 
Again, these changes are for PhpDig version 1.8.1 downloaded before the date of this post.

These changes have already been applied to PhpDig version 1.8.1 downloaded after the date of this post.
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote