View Single Post
  #4  
Old 23rd August 2009, 06:51
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
never seen it not leave a error message can you check your data base make sure it did not put anything
open steps/4.php
find
PHP Code:
$db = new sql_db($db_host$db_user$db_pass$db_name$db_persistency); 
and add this after
PHP Code:
if(!$db->db_connect_id) {
        
$err $db->sql_error;
        
$errmsg $err["message"];
        die(
"<html>\n
        <head><title>phpMyBitTorrent Error</title>\n
        </head>\n
        <body>\n
        <!-- Error: 
$errmsg -->\n
        <p><center>\n
        <br /><br />\n
        <b>There seems to be a problem with the database server, sorry for the inconvenience.
        <br /><br />\n
        We should be back shortly.</b></center></p>\n
        </body>\n
        </html>"
);

and tell me the outcome of running step 4 again
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote