Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > xBTiT
Reply
  #1  
Old 25th August 2018, 15:57
Raful's Avatar
Raful Raful is offline
Senior Member
 
Join Date: Aug 2015
Bangladesh
Posts: 69
Default XbtitFM 2.1 and 2.2
All Script is Official Released Script, It's not Nulled


First Install 1.6 or 1.7 then Upgrade to 2.1 and ENjoy

or copy install.php and then install and enjoy


XbtitFM Upgradeable to 2.1

XbtitFM Upgradeable 2.1 to 2.2

XbtitFm bugfix(03) all 2.2
Reply With Quote
The Following User Says Thank You to Raful For This Useful Post:
groupunknown (11th April 2019)
  #2  
Old 26th August 2018, 07:37
Krypto's Avatar
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Thumbs up
Any chance you can either attach the files to your post or use a decent hosting site eg. http://zippyshare.com/ that doesn't have download restrictions, having to wait 2 hours between each download is a

EDIT: Files now Attached
Attached Files
File Type: rar xbtitFM 2.2 - BugFixes-all-in-one.rar (71.1 KB, 156 views)
File Type: rar Xbtitfm2.1-to-fm2.2 Upgrade.rar (7.31 MB, 187 views)
File Type: zip upgrade_to_xbtitFM_2.1.zip (46.92 MB, 215 views)

Last edited by Krypto; 26th August 2018 at 11:31.
Reply With Quote
The Following 4 Users Say Thank You to Krypto For This Useful Post:
Botanicar (26th August 2018), dj_otrov (12th September 2018), groupunknown (11th April 2019), papad (27th August 2018)
  #3  
Old 13th October 2018, 11:32
sfs00784's Avatar
sfs00784 sfs00784 is offline
Member
 
Join Date: Oct 2018
Posts: 8
Default
new to here. where can i get the 1.6 or 1.7...only see 1.17. thank you so much
Reply With Quote
  #4  
Old 14th November 2018, 21:46
z3ro's Avatar
z3ro z3ro is offline
Senior Member
 
Join Date: Oct 2010
P2P
Posts: 121
Smile re
Quote:
Originally Posted by sfs00784 View Post
new to here. where can i get the 1.6 or 1.7...only see 1.17. thank you so much
PHP Code:
<?php
/////////////////////////////////////////////////////////////////////////////////////
// xbtit - Bittorrent tracker/frontend
//
// Copyright (C) 2004 - 2014  Btiteam
//
//    This file is part of xbtit DT FM.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   1. Redistributions of source code must retain the above copyright notice,
//      this list of conditions and the following disclaimer.
//   2. Redistributions in binary form must reproduce the above copyright notice,
//      this list of conditions and the following disclaimer in the documentation
//      and/or other materials provided with the distribution.
//   3. The name of the author may not be used to endorse or promote products
//      derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
////////////////////////////////////////////////////////////////////////////////////

$dbfile="database.sql";
// declaration of variables
$INSTALLPATH dirname(__FILE__);
$action = isset($_POST['action']) ? $_POST['action'] : (isset($_GET['action']) ? $_GET['action'] : 'welcome');
$allowed_actions = array('save_owner','welcome','reqcheck','settings','sql_import','save_mysql','owner','site_config''save_tracker','finished');
if (!
in_array($action$allowed_actions))
    
$action 'welcome';
define("BTIT_INSTALL"TRUE);

require_once(
"include/xbtit_version.php");

global 
$tracker_version$tracker_revision;

// getting globals
$GLOBALS["btit-tracker"]         = "XBTIT DT FM V17.0 DE ";
$GLOBALS["current_btit_version"] = $tracker_version " (r".$tracker_revision.")";
$GLOBALS["btit_installer"]       = "XBTIT DT FM V17.0 DE Installer ::";

// getting needed files
load_lang_file();

// starting main page
echo ("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
echo (
"<html xmlns=\"http://www.w3.org/1999/xhtml\">");
echo (
"<head>");
echo (
"<meta http-equiv=\"content-type\" content=\"text/html; charset=".(isset($install_lang["charset"])?$install_lang["charset"]:"ISO-8859-1")."\" />");
echo (
"<title>".$GLOBALS["btit_installer"]."&nbsp;".$GLOBALS["current_btit_version"]."</title>");
echo (
"<link rel=\"stylesheet\" href=\"style/FS-FM-DT/main.css\" type=\"text/css\" />");
echo (
"</head>");
echo (
"<body>");
echo (
"<div id=\"main\" />");
echo (
"<center><div id=\"logo\" />");
echo (
"<table width=\"750\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" />");
echo (
"<tr><td class=\"tracker_logo\" valign=\"top\"></td></tr>");
echo (
"</table></div></center>");
// now we can add the different pages for the installer

// Getting wished install language
function load_lang_file()
{
    global 
$install_lang;

    
$GLOBALS["find_install_lang"] = array();

    
// Make sure the languages directory actually exists.
    
if (file_exists(dirname(__FILE__) . '/language/install_lang/'))
    {
        
// Find all the "Install" language files in the directory.
        
$dir dir(dirname(__FILE__) . '/language/install_lang/');
        while (
$entry $dir->read())
        {
            if (
substr($entry08) == 'install.' && substr($entry, -4) == '.php')
                
$GLOBALS["find_install_lang"][$entry] = ucfirst(substr($entry8strlen($entry) - 12));
        }
        
$dir->close();
    }

    
// Didn't find any, show an error message!
    
if (empty($GLOBALS["find_install_lang"]))
    {
        
step ("Installation ERROR!","ERROR!","*");
        echo (
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
        echo (
"<html xmlns=\"http://www.w3.org/1999/xhtml\">");
        echo (
"<head>");
        echo (
"<meta http-equiv=\"content-type\" content=\"text/html; charset=ISO-8859-1\" />");
        echo (
"<title>".$GLOBALS["btit_installer"]."&nbsp;".$GLOBALS["current_btit_version"]." - Language Error</title>");
        echo (
"<link rel=\"stylesheet\" href=\"style/FS-FM-DT/main.css\" type=\"text/css\" />");
        echo (
"</head>");
        echo (
"<body style=\"font-family: sans-serif;\"><div style=\"width: 600px;\">");
        echo (
"<p>A critical language error has occurred.</p>");
        echo (
"<p>This installer was unable to find the installer's language file or files.  They should be found under:</p>");
        echo (
"<div style=\"margin: 1ex; font-family: monospace; font-weight: bold;\">/language/install_lang/</div>");
        echo (
"<p>In some cases, FTP clients do not properly upload files with this many folders.  Please double check to make sure you <span style=\"font-weight: 600;\">have uploaded all the files in the distribution</span>.</p>");
        echo (
"<p>If you continue to get this error message, feel free to <a href=\"http://www.btiteam.org/smf/index.php/\">look to us for support</a>.</p>");
        echo (
"</div>");
        die;
    }

    
// Override the language file?
    
if (isset($_GET["lang_file"]))
        
$_SESSION["install_lang"] = $_GET["lang_file"];
    elseif (isset(
$GLOBALS["HTTP_GET_VARS"]["lang_file"]))
        
$_SESSION["install_lang"] = $GLOBALS["HTTP_GET_VARS"]["lang_file"];
    
// If no language is selected, use English as the default
    
else $_SESSION["install_lang"] = "install.english.php";

    
// Make sure it exists, if it doesn't reset it.
    
if (!isset($_SESSION["install_lang"]) || !file_exists(dirname(__FILE__) . '/language/install_lang/' $_SESSION["install_lang"]))
    {
        
// Use the first one...
        
list ($_SESSION["install_lang"]) = array_keys($GLOBALS["find_install_lang"]);

        
// If we have english and some other language, use the other language.  We Americans hate english :P.
        
if ($_SESSION["install_lang"] == "install.english.php" && count($GLOBALS["find_install_lang"]) > 1)
            list (
$_SESSION["install_lang"]) = array_keys($GLOBALS["find_install_lang"]);
    }

    
// And now include the actual language file itself.
    
require_once(dirname(__FILE__) . '/language/install_lang/' $_SESSION["install_lang"]);
}

function 
language_list()
         {

         global 
$TABLE_PREFIX;

         
$ret = array();
         
$res mysql_query("SELECT * FROM {$TABLE_PREFIX}language ORDER BY language");

         while (
$row mysql_fetch_assoc($res))
             
$ret[] = $row;

         unset(
$row);
         
mysql_free_result($res);

         return 
$ret;
}

function 
style_list()
         {

         global 
$TABLE_PREFIX;

         
$ret = array();
         
$res mysql_query("SELECT * FROM {$TABLE_PREFIX}style ORDER BY id");

         while (
$row mysql_fetch_assoc($res))
             
$ret[] = $row;

         unset(
$row);
         
mysql_free_result($res);

         return 
$ret;
}

//starting functions for the install
// Starting page at every step
function step ($text ''$stepname ''$stepnumber '') {
    
////////// top block  //////////
    
echo ("<div><table class=\"lista\" cellpadding=\"0\" cellspacing=\"0\" width=\"90%\" align=\"center\">");
    echo (
"<tr><td class=\"block\" height=\"20px\" style=\"padding: 5px;\">");
    echo (
"<center><b>".$text."</b><div align=\"right\">" $stepname "&nbsp;(" $stepnumber "/5)</div></center>");
    echo (
"</td></tr></table></div>");
    
////////// main block //////////
    
echo ("<table class=\"lista\" cellspacing=\"0\" cellpadding=\"10\" width=\"90%\" align=\"center\">");
    echo (
"<tr><td style=\"padding: 10px;\" class=\"lista\">");
  }

// check if the installation is not locked
if (file_exists(dirname(__FILE__)."/install.lock"))
{
    
step ("Installation Error!","ERROR!","*");
    echo (
"<p>For security reasons, this installer is locked!<br>Please (via FTP) remove or change the 'install.lock' file before continue.</p>");
    die; 
}

// main page -> step zero
if ($action == 'welcome')
{
    
step ($install_lang["welcome_header"],$install_lang["step"]."&nbsp;".$install_lang["welcome_header"],"*");
    echo (
"<p align=\"center\">".$install_lang["welcome"]."</p>");
    
    
// Show a language selection...
    
if (count($GLOBALS["find_install_lang"]) > 1)
    {
        echo 
'
                <div style="padding-bottom: 2ex; text-align: '
, empty($install_lang["lang_rtl"]) ? 'right' 'left'';">
                    <form action="'
$_SERVER['PHP_SELF'], '" method="get">
                        '
$install_lang["installer_language"], '&nbsp;<select id="installer_language" name="lang_file" onchange="location.href = \''$_SERVER['PHP_SELF'], '?lang_file=\' + this.options[this.selectedIndex].value;">';

        foreach (
$GLOBALS["find_install_lang"] as $lang => $name)
            echo 
'
                            <option'
, isset($_SESSION["install_lang"]) && $_SESSION["install_lang"] == $lang ' selected="selected"' ''' value="'$lang'">'$name'</option>';

        echo 
'
                        </select>

                        <noscript><input type="submit" value="'
$install_lang["installer_language_set"], '" /></noscript>
                    </form>
                </div>'
;
    }
    
// listing the 777 files
    
echo ("".$install_lang["list_chmod"]."");
    echo (
"<ul>");
    echo (
"<li>./include/settings.php</li>");
    echo (
"<li>./include/userstuff.php</li>");
    echo (
"<li>./include/logs</li>");
    echo (
"<li>./images/clients/</li>");
    echo (
"<li>./imdb/cache/</li>");
    echo (
"<li>./imdb/images/</li>");
    echo (
"<li>./nfo/</li>");
    echo (
"<li>./nfo/rep/</li>");
    echo (
"<li>./imdb/imgs/</li>");
    echo (
"<li>./cache/</li>");
    echo (
"<li>./torrentimg/</li>");
    echo (
"<li>./dox/</li>");
    echo (
"<li>./avatar/</li>");
    echo (
"<li>./torrents/</li>");
    echo (
"<li>./subtitles/</li>");
    echo (
"<li>./badwords.txt</li>");
    echo (
"<li>./lasttorrents.xml</li>");
  
    echo (
"</ul>");

    echo (
"".$install_lang["system_req"]."");
    
// changelog
    
echo ("<p>".$install_lang["view_log"]."&nbsp;<a href=\"changelog.txt\" target=\"_blank\">".$install_lang["here"]."</a></p>");
    echo (
"<div align=\"right\"><input type=\"button\" class=\"button\" name=\"continue\" value=\"".$install_lang["start"]."\" onclick=\"javascript:document.location.href='install.php?lang_file=".$_SESSION["install_lang"]."&amp;action=reqcheck'\" /></div>");
}

// requirements check
elseif ($action == 'reqcheck') {
    
step ($install_lang["requirements_check"],$install_lang["step"]."&nbsp;".$install_lang["reqcheck"],"1");
    

// check userstuff
if (file_exists(dirname(__FILE__)."/include/userstuff.php"))
  {
  if (
is_writable(dirname(__FILE__)."/include/userstuff.php"))
        
$stuff=$install_lang["write_succes"];
  else
        
$stuff=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$stuff=$install_lang["write_file_not_found"];     

// check cache folder
if (file_exists(dirname(__FILE__)."/cache"))
  {
  if (
is_writable(dirname(__FILE__)."/cache"))
        
$cache=$install_lang["write_succes"];
  else
        
$cache=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$cache=$install_lang["write_file_not_found"];
  
// check nfo folder
if (file_exists(dirname(__FILE__)."/nfo"))
  {
  if (
is_writable(dirname(__FILE__)."/nfo"))
        
$nfo=$install_lang["write_succes"];
  else
        
$nfo=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$nfo=$install_lang["write_file_not_found"];  
  
// check dox folder
if (file_exists(dirname(__FILE__)."/dox"))
  {
  if (
is_writable(dirname(__FILE__)."/dox"))
        
$dox=$install_lang["write_succes"];
  else
        
$dox=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$dox=$install_lang["write_file_not_found"]; 
  
// check nfo rep folder
if (file_exists(dirname(__FILE__)."/nfo/rep"))
  {
  if (
is_writable(dirname(__FILE__)."/nfo/rep"))
        
$nforep=$install_lang["write_succes"];
  else
        
$nforep=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$nforep=$install_lang["write_file_not_found"];   
  
// check torrents folder
if (file_exists(dirname(__FILE__)."/torrents"))
  {
  if (
is_writable(dirname(__FILE__)."/torrents"))
        
$torrents=$install_lang["write_succes"];
  else
        
$torrents=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else  
    
$torrents=$install_lang["write_file_not_found"];
 
// check subtitles folder
if (file_exists(dirname(__FILE__)."/subtitles"))
  {
  if (
is_writable(dirname(__FILE__)."/subtitles"))
        
$subtitles=$install_lang["write_succes"];
  else
        
$subtitles=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else  
    
$subtitles=$install_lang["write_file_not_found"];   
// check torrents images folder
if (file_exists(dirname(__FILE__)."/torrentimg"))
  {
  if (
is_writable(dirname(__FILE__)."/torrentimg"))
        
$torrentimg=$install_lang["write_succes"];
  else
        
$torrentimg=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else   
  
$torrentimg=$install_lang["write_file_not_found"];
// check avatars folder
if (file_exists(dirname(__FILE__)."/avatar"))
  {
  if (
is_writable(dirname(__FILE__)."/avatar"))
        
$avatar=$install_lang["write_succes"];
  else
        
$avatar=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$avatar=$install_lang["write_file_not_found"];
// check btclients folder
if (file_exists(dirname(__FILE__)."/images/btclients"))
  {
  if (
is_writable(dirname(__FILE__)."/images/btclients"))
        
$btc=$install_lang["write_succes"];
  else
        
$btc=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$btc=$install_lang["write_file_not_found"];
// check lasttorrents.xml
if (file_exists(dirname(__FILE__)."/lasttorrents.xml"))
  {
  if (
is_writable(dirname(__FILE__)."/lasttorrents.xml"))
        
$lasttorrents=$install_lang["write_succes"];
  else
        
$lasttorrents=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$lasttorrents=$install_lang["write_file_not_found"];
  
// check badwords.txt
if (file_exists(dirname(__FILE__)."/badwords.txt"))
  {
  if (
is_writable(dirname(__FILE__)."/badwords.txt"))
        
$badwords=$install_lang["write_succes"];
  else
        
$badwords=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else
  
$badwords=$install_lang["write_file_not_found"];
  
// check include/settings.php
if (file_exists(dirname(__FILE__)."/include/settings.php"))
  {
  if (
is_writable(dirname(__FILE__)."/include/settings.php"))
        
$settings=$install_lang["write_succes"];
  else
        
$settings=$install_lang["write_fail"]."&nbsp;".$install_lang["not_continue_settings"];
  }
else
  
$settings=$install_lang["write_file_not_found"]."&nbsp;".$install_lang["not_continue_settings2"];
  

  
//  check torrents imdb folder
if (file_exists(dirname(__FILE__)."/imdb/cache"))
  {
  if (
is_writable(dirname(__FILE__)."/imdb/cache"))
        
$imdbc=$install_lang["write_succes"];
  else
        
$imdbc=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else   
  
$imdbc=$install_lang["write_file_not_found"];
  

if (
file_exists(dirname(__FILE__)."/imdb/images"))
  {
  if (
is_writable(dirname(__FILE__)."/imdb/images"))
        
$imdbim=$install_lang["write_succes"];
  else
        
$imdbim=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else   
  
$imdbim=$install_lang["write_file_not_found"];
  
    if (
file_exists(dirname(__FILE__)."/imdb/imgs"))
  {
  if (
is_writable(dirname(__FILE__)."/imdb/imgs"))
        
$imdbimg=$install_lang["write_succes"];
  else
        
$imdbimg=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else   
  
$imdbimg=$install_lang["write_file_not_found"];
  
      if (
file_exists(dirname(__FILE__)."/include/logs"))
  {
  if (
is_writable(dirname(__FILE__)."/include/logs"))
        
$logs=$install_lang["write_succes"];
  else
        
$logs=$install_lang["write_fail"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  }
else   
  
$logs=$install_lang["write_file_not_found"];

if ((bool)
ini_get('allow_url_fopen')===true)
   
$allow_url_fopen=$install_lang["allow_url_fopen_ON"];
else
   
$allow_url_fopen=$install_lang["allow_url_fopen_OFF"]."&nbsp;&nbsp;&nbsp;".$install_lang["can_continue"];
  
    echo (
"<h2>".$install_lang["requirements_check"]."</h2>");
    echo (
"<table width=\"100%\" cellpadding=\"4\" cellspacing=\"4\" border=\"0\" style=\"margin-bottom: 2ex;\">");
    echo (
"<tr><td width=\"40%\" valign=\"top\">".$install_lang["cache_folder"].":</td><td>".$cache."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">".$install_lang["torrents_folder"].":</td><td>".$torrents."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">Torrent Images folder:</td><td>".$torrentimg."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">IMDB Cache folder:</td><td>".$imdbc."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">IMDB Images folder:</td><td>".$imdbim."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">IMDB Imgs folder:</td><td>".$imdbimg."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">DOX folder:</td><td>".$dox."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">NFO folder:</td><td>".$nfo."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">NFO REP folder:</td><td>".$nforep."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">Include/logs folder:</td><td>".$logs."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">Avatar folder:</td><td>".$avatar."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">Subtitles folder:</td><td>".$subtitles."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">Images/BT Clients folder:</td><td>".$btc."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">Include/userstuff file:</td><td>".$stuff."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">".$install_lang["badwords_file"].":</td><td>".$badwords."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">lasttorrents.xml:</td><td>".$lasttorrents."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">".$install_lang["settings.php"].":</td><td>".$settings."</td></tr>");
    echo (
"<tr><td width=\"40%\" valign=\"top\">".$install_lang["allow_url_fopen"].":</td><td>".$allow_url_fopen."</td></tr>");
    echo (
"</table>");
    
// don't continue if this file doesn't exists
    
if (file_exists(dirname(__FILE__)."/include/settings.php"))
        {
        if (
is_writable(dirname(__FILE__)."/include/settings.php"))
            echo (
"<div align=\"right\"><input type=\"button\" class=\"button\" name=\"continue\" value=\"".$install_lang["next"]."\" onclick=\"javascript:document.location.href='install.php?lang_file=".$_SESSION["install_lang"]."&amp;action=settings'\" /></div>");
        }

}

// setting up the tracker
elseif ($action == 'settings') {
    
step ($install_lang["settings"],$install_lang["step"]."&nbsp;".$install_lang["settings"],"2");
    
    
// getting host info.
    
$db_server = @ini_get('mysql.default_host') or $db_server 'localhost';
    
$db_user = isset($_POST['ftp_username']) ? $_POST['ftp_username'] : @ini_get('mysql.default_user');
    
$db_name = isset($_POST['ftp_username']) ? $_POST['ftp_username'] : @ini_get('mysql.default_user');
    
$db_passwd = @ini_get('mysql.default_password');
    
$db_name = empty($db_name) ? 'xbtit' $db_name;
    
    echo (
"<form action=\"".$_SERVER['PHP_SELF']."?lang_file=".$_SESSION["install_lang"]."&amp;action=save_mysql\" method=\"post\">");
    echo (
"<h2>".$install_lang["mysql_settings"]."</h2><h3>".$install_lang["mysql_settings_info"]."</h3>");
    echo (
"<table width=\"100%\" cellpadding=\"4\" cellspacing=\"4\" border=\"0\" style=\"margin-bottom: 2ex;\">");
    echo (
"<tr><td width=\"20%\" valign=\"top\">".$install_lang["mysql_settings_server"].":</td><td><input type=\"text\" name=\"db_server\" id=\"db_server_input\" value=\"".$db_server."\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["mysql_settings_username"].":</td><td><input type=\"text\" name=\"db_user\" id=\"db_user_input\" value=\"".$db_user."\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["mysql_settings_password"].":</td><td><input type=\"password\" name=\"db_passwd\" id=\"db_passwd_input\" value=\"".$db_passwd."\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["mysql_settings_database"].":</td><td><input type=\"text\" name=\"db_name\" id=\"db_name_input\" value=\"".$db_name."\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["mysql_settings_prefix"].":</td><td><input type=\"text\" name=\"db_prefix\" id=\"db_prefix_input\" value=\"xbtit_\" size=\"30\" /></td></tr></table>");
    echo (
"<div align=\"right\"><input type=\"submit\" value=\""$install_lang["next"]."\" /></div></form>");
}
// saving the database connection data
elseif ($action == 'save_mysql'){

if (empty(
$_POST["db_server"]) || empty($_POST["db_user"]) || empty($_POST["db_passwd"]) || empty($_POST["db_name"]) || empty($_POST["db_prefix"])){
    
step ($install_lang["mysqlcheck"],$install_lang["step"]."&nbsp;".$install_lang["mysqlcheck_step"],"2");
    echo (
$install_lang["no_leave_blank"]);
    die;
}
// check settings.php file
$random substr(number_format(time() * rand(),0,'',''),0,10);
if (
file_exists(dirname(__FILE__)."/include/settings.php"))
  {
  if (
is_writable(dirname(__FILE__)."/include/settings.php"))
     {
     
$fd fopen("include/settings.php""w");
     
$foutput "<?php\n\n";
     
$foutput.= "\$dbhost = \"".$_POST["db_server"]."\";\n";
     
$foutput.= "\$dbuser = \"".$_POST["db_user"]."\";\n";
     
$foutput.= "\$dbpass = \"".$_POST["db_passwd"]."\";\n";
     
$foutput.= "\$database = \"".$_POST["db_name"]."\";\n";
     
$foutput.= "\$TABLE_PREFIX = \"".$_POST["db_prefix"]."\";\n";
     
$foutput.= "\$mySecret  = \"".$random ."\";\n";
     
$foutput.= "\n?>";
     
fwrite($fd,$foutput);
     
fclose($fd);
     
step ($install_lang["mysqlcheck"],$install_lang["step"]."&nbsp;".$install_lang["mysqlcheck_step"],"2");
     echo (
$install_lang["mysql_settings"]."&nbsp;".$install_lang["saved"]);
     echo (
"<div align=\"right\"><input type=\"button\" class=\"button\" name=\"continue\" value=\"".$install_lang["next"]."\" onclick=\"javascript:document.location.href='install.php?lang_file=".$_SESSION["install_lang"]."&amp;action=sql_import'\" /></div>");
     }
  else
    echo (
$install_lang["file_not_writeable"]);
  }
else
echo (
$install_lang["file_not_exists"]);
}

// checking the database connection
elseif ($action == 'sql_import') {
    
step ($install_lang["mysql_import"],$install_lang["step"]."&nbsp;".$install_lang["mysql_import_step"],"3");

    
// Make sure it works.
    
require(dirname(__FILE__) . '/include/settings.php');

    
// Attempt a connection.
    
$db_connection = @mysql_connect($dbhost$dbuser$dbpass);
    
    
// No dice?  Let's try adding the prefix they specified, just in case they misread the instructions ;).
    
if (!$db_connection)
    {
        
$mysql_error mysql_error();

        
$db_connection = @mysql_connect($dbhost$TABLE_PREFIX $dbuser$dbpass);
        if (
$db_connection != false)
        {
            
$db_user $TABLE_PREFIX $dbuser;
            
updateSettingsFile(array('db_user' => $dbuser));
        }
    }

    
// Still no connection?  Big fat error message :P.
    
if (!$db_connection)
    {
        echo 
'
                <div class="error_message">
                    <div style="color: red;">'
$install_lang['error_mysql_connect'], '</div>

                    <div style="margin: 2.5ex; font-family: monospace;"><b>'
$mysql_error'</b></div>

                    <a href="'
$_SERVER['PHP_SELF'], '?step=0&amp;overphp=true">'$install_lang['error_message_click'], '</a> '$install_lang['error_message_try_again'], '
                </div>'
;
        return 
false;
    }

    
// Let's try that database on for size...
    
if ($database != '')
        
mysql_query("
            CREATE DATABASE IF NOT EXISTS `
$database` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci"$db_connection);

    
// Okay, let's try the prefix if it didn't work...
    
if (!mysql_select_db($database$db_connection) && $database != '')
    {
        
mysql_query("
            CREATE DATABASE IF NOT EXISTS `"
.$TABLE_PREFIX.$database."` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci"$db_connection);

        if (
mysql_select_db($TABLE_PREFIX $database$db_connection))
        {
            
$db_name $TABLE_PREFIX $db_name;
            
updateSettingsFile(array('database' => $database));
        }
    }

    
// Okay, now let's try to connect...
    
if (!mysql_select_db($database$db_connection))
    {
        echo 
'
                <div class="error_message">
                    <div style="color: red;">'
sprintf($install_lang['error_mysql_database'], $database), '</div>
                    <br />
                    <a href="'
$_SERVER['PHP_SELF'], '?step=0&amp;overphp=true">'$install_lang['error_message_click'], '</a> '$install_lang['error_message_try_again'], '
                </div>'
;

        return 
false;
    }

    
$replaces = array(
        
'{$db_prefix}' => $TABLE_PREFIX,
    );
    foreach (
$install_lang as $key => $value)
    {
        if (
substr($key08) == 'default_')
            
$replaces['{$' $key '}'] = addslashes($value);
    }

    if (isset(
$replaces['{$default_reserved_names}']))
       
$replaces['{$default_reserved_names}'] = strtr($replaces['{$default_reserved_names}'], array('\\\\n' => '\\n'));

    
// If the UTF-8 setting was enabled, add it to the table definitions.
    
if (isset($_POST['utf8']))
        
$replaces[') TYPE=MyISAM;'] = ') TYPE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;';

    
// Read in the SQL.  Turn this on and that off... internationalize... etc.
    
$sql_lines explode("\n"strtr(implode(' 'file(dirname(__FILE__) . '/sql/database.sql')), $replaces));

    
// Execute the SQL.
    
$current_statement '';
    
$failures = array();
    
$exists = array();
    foreach (
$sql_lines as $count => $line)
    {
        
// No comments allowed!
        
if (substr(trim($line), 01) != '#')
            
$current_statement .= "\n" rtrim($line);

        
// Is this the end of the query string?
        
if (empty($current_statement) || (preg_match('~;[\s]*$~s'$line) == && $count != count($sql_lines)))
            continue;

        
// Does this table already exist?  If so, don't insert more data into it!
        
if (preg_match('~^\s*INSERT INTO ([^\s\n\r]+?)~'$current_statement$match) != && in_array($match[1], $exists))
        {
            
$current_statement '';
            continue;
        }

        if (
mysql_query($current_statement) === false)
        {
            
// Error 1050: Table already exists!
            
if (mysql_errno($db_connection) === 1050 && preg_match('~^\s*CREATE TABLE ([^\s\n\r]+?)~'$current_statement$match) == 1)
                
$exists[] = $match[1];
            else
                
$failures[$count] = mysql_error();
        }

        
$current_statement '';
    }
     echo (
$install_lang["database_saved"]);
     echo (
"<div align=\"right\"><input type=\"button\" class=\"button\" name=\"continue\" value=\"".$install_lang["next"]."\" onclick=\"javascript:document.location.href='install.php?lang_file=".$_SESSION["install_lang"]."&amp;action=site_config'\" /></div>");
}

// site config
elseif ($action == 'site_config') {
    
step ($install_lang["site_config"],$install_lang["step"]."&nbsp;".$install_lang["site_config_step"],"4");

    
// getting started
    
require (dirname(__FILE__)."/include/settings.php");

    
mysql_connect($dbhost$dbuser$dbpass);
    
mysql_select_db($database);
    
    
// finding the host
    
$host = empty($_SERVER['HTTP_HOST']) ? $_SERVER['SERVER_NAME'] . (empty($_SERVER['SERVER_PORT']) || $_SERVER['SERVER_PORT'] == '80' '' ':' $_SERVER['SERVER_PORT']) : $_SERVER['HTTP_HOST'];
    
// finding the base path.
    
$baseurl 'http://' $host substr($_SERVER['PHP_SELF'], 0strrpos($_SERVER['PHP_SELF'], '/'));
    
$smf_lang=str_replace("\\""/"dirname(__FILE__))."/smf/Themes/default/languages/Errors.english.php";
    
$ipb_lang=str_replace("\\""/"dirname(__FILE__))."/ipb/cache/lang_cache/1/core_public_error.php";
    
    echo (
"<form action=\"".$_SERVER['PHP_SELF']."?lang_file=".$_SESSION["install_lang"]."&amp;action=save_tracker\" method=\"post\">");
    echo (
"<h2>".$install_lang["site_config"]."</h2>");
    echo (
"<h4>".$install_lang["settingup"]."</h4>");
    echo (
"<table width=\"100%\" cellpadding=\"4\" cellspacing=\"4\" border=\"0\" style=\"margin-bottom: 2ex;\">");
    echo (
"<tr><td width=\"20%\" valign=\"top\">".$install_lang["sitename"].":</td><td><input type=\"text\" name=\"sitename\" id=\"sitename_input\" value=\"".$install_lang["sitename_input"]."\" size=\"50\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["siteurl"].":</td><td><input type=\"text\" name=\"siteurl\" id=\"siteurl_input\" value=\"".$baseurl."\" size=\"50\" /><br /><div style=\"font-size: smaller; margin-bottom: 2ex;\">".$install_lang["siteurl_info"]."</div></td></tr>");
    echo (
"<tr><td>".$install_lang["default_lang"].":</td><td><select name=\"language\">");

    
$lres=language_list();
    foreach (
$lres as $l)
            echo (
"<option value=\"".$l["id"]."\"".($l["id"]==1?" selected=\"selected\"":"").">".StripSlashes($l["language"])."</option>");

    echo (
"</select></td>");
    echo (
"<tr><td>".$install_lang["default_style"].":</td><td><select name=\"style\">");

    
$sres=style_list();
    foreach (
$sres as $s)
            echo (
"<option value=\"".$s["id"]."\">".StripSlashes($s["style"])."</option>");
    echo (
"</select></td>");
    echo (
"<tr><td>".$install_lang["validation"].":</td><td><select name=\"validation\">");
    echo (
"<option value=\"none\">none</option>");
    echo (
"<option value=\"user\" selected=\"selected\">user</option>");
    echo (
"<option value=\"admin\">admin</option>");
    echo (
"</select></td>");
    echo (
"<tr><td>".$install_lang["torrents_dir"]."</td><td><input type=\"text\" name=\"torrentdir\" size=\"30\" value=\"torrents\"></td></tr>");
    echo (
"<tr><td>".$install_lang["forum_type"].":</td><td><select name=\"forumtype\">");
    echo (
"<option value=\"1\" selected=\"selected\">".$install_lang["forum_internal"]."</option>");
    echo (
"<option value=\"2\">".$install_lang["forum_smf"]."</option>");
    echo (
"<option value=\"3\">".$install_lang["forum_ipb"]."</option>");
    echo (
"<option value=\"4\">".$install_lang["forum_other"]."</option>");
    echo (
"</select>");
    echo (
"&nbsp;&nbsp;&nbsp;<input type='text' name='externalforum' size='30' maxlength='200' value='')></td></tr>");
    echo (
"<tr><td colspan=\"2\">");
    echo (
"<p><table border='0' width='100%' align='left' bgcolor='#A0A0A0'><tr><td>" $install_lang["smf_download_a"] . $smf_lang $install_lang["smf_download_b"] . "</td></tr></table></p>");
    echo (
"</td></tr>");
    echo (
"<tr><td colspan=\"2\">");
    echo (
"<p><table border='0' width='100%' align='left' bgcolor='#A0A0A0'><tr><td>" $install_lang["ipb_download_a"] . $ipb_lang $install_lang["ipb_download_b"] . "</td></tr></table></p>");
    echo (
"</td></tr>");
    echo (
"<tr><td colspan=\"2\">".$install_lang["more_settings"]."</td></tr></table>");
    echo (
"<div align=\"right\"><input type=\"submit\" value=\""$install_lang["next"]."\" /></div></form>");
    
}

// saving the site data
elseif ($action == 'save_tracker') {
    
step ($install_lang["site_config"],$install_lang["step"]."&nbsp;".$install_lang["site_config_step"],"4");   

    
// getting variables
    
$default_lang $_POST["language"];
    
$default_style $_POST["style"];
    
$baseurl $_POST["siteurl"];
    
$sitename $_POST["sitename"];
    
$torrentdir $_POST["torrentdir"];
    
$val_mode $_POST["validation"];
    
$forum_type intval($_POST["forumtype"]);
    if(
$forum_type==1$forum="";
    elseif(
$forum_type==2$forum="smf";
    elseif(
$forum_type==3$forum="ipb";
    elseif(
$forum_type==4$forum=mysql_real_escape_string($_POST["externalforum"]);

    
// getting started
    
require (dirname(__FILE__)."/include/settings.php");

    @
mysql_connect($dbhost$dbuser$dbpass);
    @
mysql_select_db($database);
    
    if(
$forum=="smf")
    {
        
$smf_lang=str_replace("\\""/"dirname(__FILE__))."/smf/Themes/default/languages/Errors.english.php";
        
        
// Lets check the main SMF Settings file is present
        
if (!file_exists(dirname(__FILE__)."/smf/Settings.php"))
            die(
$install_lang["smf_err_1"]);

        
// Now to check they've actually installed it by checking the database
        
require (dirname(__FILE__)."/smf/Settings.php");
        
        
$smf=mysql_query("SELECT `value` FROM `{$db_prefix}settings` WHERE variable='smfVersion'");
        if(
mysql_num_rows($smf)==0)
            die(
$install_lang["smf_err_2"]);
        else
        {
            
$ver=mysql_fetch_assoc($smf);
            
$forum=(((int)(substr($ver["value"],0,1))==1)?"smf":"smf2");
        }
        
        
// Now lets check if the SMF English Language file is writable
        
if(!is_writable($smf_lang))
            die(
$install_lang["smf_err_3a"] . $smf_lang $install_lang["smf_err_3b"]);

        
$filename=dirname(__FILE__)."/include/settings.php";
        if (
file_exists($filename))
        {
            if (
is_writable($filename))
            {
                
$filesize=filesize($filename);
                
$fd fopen($filename"w");
                
$contents ="<?php\n\n";
                
$contents.="\$dbhost = \"$dbhost\";\n";
                
$contents.="\$dbuser = \"$dbuser\";\n";
                
$contents.="\$dbpass = \"$dbpass\";\n";
                
$contents.="\$database = \"$database\";\n";
                
$contents.= "\$TABLE_PREFIX = \"$TABLE_PREFIX\";\n";
                
$contents.= "\$db_prefix = \"$db_prefix\";\n";
                
$contents.= "\n?>";
                
fwrite($fd,$contents);
                
fclose($fd);
            }
        }
    }
    elseif(
$forum=="ipb")
    {
        
$BASEDIR=str_replace("\\""/"dirname(__FILE__));
        
$ipb_lang=$BASEDIR."/ipb/cache/lang_cache/1/core_public_error.php";
        
        
// Lets check the main IPB Config file is present
        
if (!file_exists($BASEDIR."/ipb/conf_global.php"))
            die(
$install_lang["ipb_err_1"]);

        
// Now to check they've actually installed it by checking the database
        
require ($BASEDIR."/ipb/conf_global.php");
        
        
$ipb=mysql_query("SELECT `name` FROM `".$INFO["sql_tbl_prefix"]."members` LIMIT 1;");
        if(@
mysql_num_rows($ipb)==0)
            die(
$install_lang["ipb_err_2"]);

        
// Let's check if the default IPB Language cache file exists
        
if(!file_exists($ipb_lang))
            die(
$install_lang["ipb_err_4a"] . $ipb_lang $install_lang["ipb_err_4b"]);
        
        
// Now lets check if the IPB English Language file is writable
        
if(!is_writable($ipb_lang))
            die(
$install_lang["ipb_err_3a"] . $ipb_lang $install_lang["ipb_err_3b"]);

        
$ipb_conf_writable=((is_writable($BASEDIR."/ipb/conf_global.php"))?true:false);

        if(
$ipb_conf_writable===true)
        {
            
$filename=$BASEDIR."/ipb/conf_global.php";
            
$fd=fopen($filename,"r+");
            
$data=fread($fd,filesize($filename));
            
ftruncate($fd,0);
            
rewind($fd);
            
$search=array("\$INFO['banned_group']\t\t\t=\t'5';""\$INFO['admin_group']\t\t\t=\t'4';""\$INFO['guest_group']\t\t\t=\t'2';""\$INFO['auth_group']\t\t\t=\t'1';");
            
$replace=array("\$INFO['banned_group']\t\t\t=\t'0';""\$INFO['admin_group']\t\t\t=\t'8';""\$INFO['guest_group']\t\t\t=\t'1';""\$INFO['auth_group']\t\t\t=\t'2';");
            
$data=str_replace($search$replace$data);
            
$start=strpos($data"\$INFO['sql_tbl_prefix']");
            
$end=strpos(substr($data,$start),";")+1;
            
$data2=substr($data,$start,$end);
            
fwrite($fd,$data);
            
fclose($fd);
            
$data=str_replace(array("\$INFO['sql_tbl_prefix']""\t","'"), array("\$ipb_prefix","","\""),$data2);
            
$data=str_replace("x=\"""x = \""$data);

            
$filename=$BASEDIR."/include/settings.php";
            if (
file_exists($filename))
            {
                if (
is_writable($filename))
                {
                    
$filesize=filesize($filename);
                    
$fd fopen($filename"w");
                    
$contents ="<?php\n\n";
                    
$contents.="\$dbhost = \"$dbhost\";\n";
                    
$contents.="\$dbuser = \"$dbuser\";\n";
                    
$contents.="\$dbpass = \"$dbpass\";\n";
                    
$contents.="\$database = \"$database\";\n";
                    
$contents.= "\$TABLE_PREFIX = \"$TABLE_PREFIX\";\n";
                    
$contents.= $data."\n";
                    
$contents.= "\n?>";
                    
fwrite($fd,$contents);
                    
fclose($fd);
                }
                else
                    die(
$install_lang["ipb_err_6"] . $filename $install_lang["ipb_err_3b"]);
            }
        }
        else
            die(
$install_lang["ipb_err_5"] . $BASEDIR."/ipb/conf_global.php" $install_lang["ipb_err_3b"]);
    }
    
    @
mysql_query("ALTER TABLE {$TABLE_PREFIX}users CHANGE `language` `language` TINYINT( 4 ) NOT NULL DEFAULT '$default_lang'") or mysql_error();
    @
mysql_query("ALTER TABLE {$TABLE_PREFIX}users CHANGE `style` `style` TINYINT( 4 ) NOT NULL DEFAULT '$default_style'") or mysql_error();
    @
mysql_query("UPDATE {$TABLE_PREFIX}settings SET `value` = '$baseurl' WHERE `key` = 'url'") or mysql_error();
    @
mysql_query("UPDATE {$TABLE_PREFIX}settings SET `value` = '$sitename' WHERE `key` = 'name'") or mysql_error();
    @
mysql_query("UPDATE {$TABLE_PREFIX}settings SET `value` = '$torrentdir' WHERE `key` = 'torrentdir'") or mysql_error();
    @
mysql_query("UPDATE {$TABLE_PREFIX}settings SET `value` = '$val_mode' WHERE `key` = 'validation'") or mysql_error();
    @
mysql_query("UPDATE {$TABLE_PREFIX}settings SET `value` = '$forum' WHERE `key` = 'forum'") or mysql_error();
        
    echo (
$install_lang["tracker_saved"]);
    echo (
"<div align=\"right\"><input type=\"submit\" name=\"continue\" value=\"".$install_lang["next"]."\" onclick=\"javascript:document.location.href='install.php?lang_file=".$_SESSION["install_lang"]."&amp;action=owner&amp;forumtype=$forum'\" /></div>");

}

// creating owner account
elseif ($action == 'owner') {

    
step ($install_lang["create_owner_account"],$install_lang["step"]."&nbsp;".$install_lang["create_owner_account_step"],"5");
    echo (
"<form action=\"".$_SERVER['PHP_SELF']."?lang_file=".$_SESSION["install_lang"]."&amp;action=save_owner\" method=\"post\">");
    echo (
"<h2>".$install_lang["create_owner_account"]."</h2>");
    echo (
"<h4>".$install_lang["create_owner_account_info"]."</h4>");
    echo (
"<table width=\"100%\" cellpadding=\"4\" cellspacing=\"4\" border=\"0\" style=\"margin-bottom: 2ex;\">");
    echo (
"<tr><td valign=\"top\">".$install_lang["username"].":</td><td><input type=\"text\" name=\"username\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["password"].":</td><td><input type=\"password\" name=\"password\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["password2"].":</td><td><input type=\"password\" name=\"password2\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["email"].":</td><td><input type=\"text\" name=\"email\" value=\"email@yourhost.com\" size=\"30\" /></td></tr>");
    echo (
"<tr><td valign=\"top\">".$install_lang["email2"].":</td><td><input type=\"text\" name=\"email2\" value=\"email@yourhost.com\" size=\"30\" /></td></tr>");
    echo (
"<input type=\"hidden\" name=\"forumtype\" value=\"".$_GET["forumtype"]."\"/>");
    echo (
"</table><div align=\"right\"><input type=\"submit\" value=\""$install_lang["next"]."\" /></div></form>");
}

// saving owner account
elseif ($action == 'save_owner') {
 
    
$forum=$_POST["forumtype"];
    
step ($install_lang["create_owner_account"],$install_lang["step"]."&nbsp;".$install_lang["create_owner_account_step"],"5");
    
    
// getting started
    
require (dirname(__FILE__)."/include/settings.php");

    @
mysql_connect($dbhost$dbuser$dbpass);
    @
mysql_select_db($database);
    
    function 
validemail($email) {
             return 
preg_match('/^[\w.-]+@([\w.-]+\.)+[a-z]{2,6}$/is'$email);
    }

    function 
safe_email($email) {   
             
$email str_replace("<","",$email); 
             
$email str_replace(">","",$email); 
             
$email str_replace("\'","",$email); 
             
$email str_replace('\"',"",$email); 
             
$email str_replace("\\\\","",$email); 
             return 
$email;
    }

    function 
check_email ($email) {
             
//if(ereg("^([A-Za-z0-9]+_+)|([A-Za-z0-9]+\-+)|([A-Za-z0-9]+\.+)|([A-Za-z0-9]+\++))*[A-Za-z0-9]+@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$", $email))
             
if(preg_match('/\b[\w\.-]+@[\w\.-]+\.\w{2,4}\b/i'$email))
                 return 
true;
             else
                 return 
false;
    }

    function 
owner_error ($error_lang$back){
             echo (
$error_lang);
             echo (
"<div align=\"right\"><input type=\"button\" class=\"button\" name=\"continue\" value=\"".$back."\" onclick=\"javascript:document.location.href='install.php?lang_file=".$_SESSION["install_lang"]."&amp;action=owner'\" /></div>");
             die;
    }
    function 
ipb_passgen($pwd)
    {
        
$salt '';
        
$len=5;
        
srand( (double)microtime() * 1000000 );

        for ( 
$i 0$i $len$i++ )
        {
            
$num   rand(33126);

            if ( 
$num == '92' )
            {
                
$num 93;
            }

            
$salt .= chr$num );
        }
        
$passhash md5md5$salt ) . md5$pwd ) );
        return array(
$passhash$salt);
    }

    
// getting variables
    
$username $_POST["username"];
    
$password mysql_real_escape_string($_POST["password"]);
    
$password_repeat mysql_real_escape_string($_POST["password2"]);
    
$email $_POST["email"];
    
$email_repeat $_POST["email2"];
    
$email htmlspecialchars(trim($email));
    
$email_repeat htmlspecialchars(trim($email_repeat));
    
$email safe_email($email);
    
    
// Create Random number
    
$floor 100000;
    
$ceiling 999999;
    
srand((double)microtime()*1000000);
    
$random rand($floor$ceiling);

    if (empty(
$username) || empty($password) || empty($password_repeat) || empty($email) || empty($email_repeat)){
    
owner_error($install_lang["no_leave_blank"], $install_lang["back"]);
    }
    if (!
validemail($email)){
    
owner_error($install_lang["not_valid_email"], $install_lang["back"]);
    }
    if (!
check_email($email)){
    
owner_error($install_lang["not_valid_email"], $install_lang["back"]);
    }
    if (
$password == $username){
    
owner_error($install_lang["pass_not_same_username"], $install_lang["back"]);
    }
    if (
$email != $email_repeat){
    
owner_error($install_lang["email_not_same"], $install_lang["back"]);
    }
    if (
$password != $password_repeat){
    
owner_error($install_lang["pass_not_same"], $install_lang["back"]);
    }

    
$smf_fid=0;
    
$ipb_fid=0;

    if(
substr($forum,0,3)=="smf")
    {
        require (
dirname(__FILE__)."/smf/Settings.php");

        
$filename=dirname(__FILE__) . '/sql/'.$forum.'.sql';
        
$fd=fopen($filename"r");
        
$sql=fread($fdfilesize($filename));

        
$sql_lines=str_replace("{\$db_prefix}"$db_prefixexplode(";"$sql));

        foreach(
$sql_lines as $v)
        {
            @
mysql_query($v);
        }

        
$smfpass = array(sha1(strtolower($username) . $password), substr(md5(rand()), 04));

    if(
$forum=="smf")
        @
mysql_query("INSERT INTO `{$db_prefix}members` (`ID_MEMBER`, `memberName`, `dateRegistered`, `ID_GROUP`, `realName`, `passwd`, `emailAddress`, `memberIP`, `memberIP2`, `is_activated`, `passwordSalt`) VALUES (2 ,'$username', UNIX_TIMESTAMP(), 18, '$username', '$smfpass[0]', '$email', '".$_SERVER["REMOTE_ADDR"]."', '".$_SERVER["REMOTE_ADDR"]."', 1, '$smfpass[1]')");
    else
        @
mysql_query("INSERT INTO `{$db_prefix}members` (`id_member`, `member_name`, `date_registered`, `id_group`, `real_name`, `passwd`, `email_address`, `member_ip`, `member_ip2`, `is_activated`, `password_salt`) VALUES (2 ,'$username', UNIX_TIMESTAMP(), 18, '$username', '$smfpass[0]', '$email', '".$_SERVER["REMOTE_ADDR"]."', '".$_SERVER["REMOTE_ADDR"]."', 1, '$smfpass[1]')");
    @
mysql_query("UPDATE `{$db_prefix}settings` SET `value` = 2 WHERE `variable` = 'latestMember'");
    @
mysql_query("UPDATE `{$db_prefix}settings` SET `value` = '$username' WHERE `variable` = 'latestRealName'");
    @
mysql_query("UPDATE `{$db_prefix}settings` SET `value` = UNIX_TIMESTAMP() WHERE `variable` = 'memberlist_updated'");
    @
mysql_query("UPDATE `{$TABLE_PREFIX}users_level` SET `smf_group_mirror`=`id`+10");
    
    
$smf_lang="smf/Themes/default/languages/Errors.english.php";

    require_once(
$smf_lang);
    
    
// finding the host
    
$host = empty($_SERVER['HTTP_HOST']) ? $_SERVER['SERVER_NAME'] . (empty($_SERVER['SERVER_PORT']) || $_SERVER['SERVER_PORT'] == '80' '' ':' $_SERVER['SERVER_PORT']) : $_SERVER['HTTP_HOST'];
    
// finding the base path.
    
$baseurl 'http://' $host substr($_SERVER['PHP_SELF'], 0strrpos($_SERVER['PHP_SELF'], '/'));
    
    
$txt['registration_disabled'] = "Sorry, registration via SMF is disabled. Registration for this forum must be done via the Tracker <a href=\"$baseurl/index.php?page=signup\">Here</a>.<br /><br />If you already have a tracker account please <a href=\"$baseurl/index.php?action=login\">login here</a> with the same credentials.";

    
$fd=fopen($smf_lang"w");

    
$foutput="<?php\n\n";

    foreach(
$txt as $k => $v)
    {
        
$foutput.="\$txt['$k']   =   '".str_replace("'""\\'"$v)."';\n";
    }
    
$foutput.="\n?>";

    
fwrite($fd,$foutput);
    
fclose($fd);

    
$smf_fid=2;
    }
    elseif(
$forum=="ipb")
    {
        
$BASEDIR=str_replace("\\""/"dirname(__FILE__));

        require (
$BASEDIR."/include/settings.php");

        
$filename=dirname(__FILE__) . '/sql/ipb.sql';
        
$fd=fopen($filename"r");
        
$sql=fread($fdfilesize($filename));

        
$sql_lines=str_replace("{\$ipb_prefix}"$ipb_prefixexplode(";"$sql));

        foreach(
$sql_lines as $v)
        {
            @
mysql_query($v);
        }
        
// Disable forum registration
        
$res=mysql_query("SELECT `cs_value` FROM `{$ipb_prefix}cache_store` WHERE `cs_key`='settings'");
        
$row=mysql_fetch_assoc($res);
        
$array=unserialize($row["cs_value"]);
        
$array["no_reg"]=1;
        
$cs_value=serialize($array);
        @
mysql_query("UPDATE `{$ipb_prefix}cache_store` SET `cs_value`='".mysql_real_escape_string($cs_value)."' WHERE `cs_key`='settings'");
        @
mysql_query("UPDATE {$ipb_prefix}core_sys_conf_settings` SET `conf_value`=1 WHERE `conf_key`='no_reg'");

        
// Update the registration closed message to something more appropriate

        // finding the host
        
$host = empty($_SERVER['HTTP_HOST']) ? $_SERVER['SERVER_NAME'] . (empty($_SERVER['SERVER_PORT']) || $_SERVER['SERVER_PORT'] == '80' '' ':' $_SERVER['SERVER_PORT']) : $_SERVER['HTTP_HOST'];
    
// finding the base path. 
        
$baseurl 'http://' $host substr($_SERVER['PHP_SELF'], 0strrpos($_SERVER['PHP_SELF'], '/'));

        
$ipb_lang=$BASEDIR."/ipb/cache/lang_cache/1/core_public_error.php";
        
$fd=fopen($ipb_lang"r+");
        
$lang_data=fread($fdfilesize($ipb_lang));
        
ftruncate($fd,0);
        
rewind($fd);
        
$lang_search="The administrator is currently not accepting new membership registrations.";
        
$lang_replace="Sorry, registration via IPB is disabled. Registration for this forum must be done via the Tracker <a target='_self' href='".$baseurl."/index.php?page=signup'>Here</a>.<br /><br />If you already have a tracker account please <a target='_self' href='index.php?app=core&module=global&section=login'>login here</a> with the same credentials.";
        
$lang_data=str_replace($lang_search$lang_replace$lang_data);
        
fwrite($fd,$lang_data);
        
fclose($fd);

        if(!
defined('IPS_ENFORCE_ACCESS'))
            
define('IPS_ENFORCE_ACCESS'true);
        if(!
defined('IPB_THIS_SCRIPT'))
            
define'IPB_THIS_SCRIPT''public' );

        require_once( 
dirname(__FILE__).'/ipb/initdata.php' );
        require_once( 
IPS_ROOT_PATH 'sources/base/ipsRegistry.php' );
        require_once( 
IPS_ROOT_PATH 'sources/base/ipsController.php' );
        
$registry ipsRegistry::instance(); 
        
$registry->init();

        
$l_username=strtolower($username);
        
$seo_username=IPSText::makeSeoTitle($username);
        
$ipbpass=ipb_passgen($password);

        @
mysql_query("INSERT INTO `{$ipb_prefix}members` (`member_id`,`name`, `member_group_id`, `email`, `joined`, `ip_address`, `allow_admin_mails`, `time_offset`, `language`, `members_display_name`, `members_seo_name`, `members_created_remote`, `members_l_display_name`, `members_l_username`, `members_pass_hash`, `members_pass_salt`, `bday_day`, `bday_month`, `bday_year`, `msg_show_notification`, `last_visit`, `last_activity`, `posts`) VALUES (2, '".mysql_real_escape_string($username)."', 8, '".mysql_real_escape_string($email)."', UNIX_TIMESTAMP(), '".mysql_real_escape_string($_SERVER["REMOTE_ADDR"])."', 1, 0, 1, '".mysql_real_escape_string($username)."', '".mysql_real_escape_string($seo_username)."', 1, '".mysql_real_escape_string($l_username)."', '".mysql_real_escape_string($l_username)."', '".mysql_real_escape_string($ipbpass[0])."', '".mysql_real_escape_string($ipbpass[1])."', 0, 0, 0, 1, UNIX_TIMESTAMP(), UNIX_TIMESTAMP(), 1)");
        @
mysql_query("INSERT INTO `{$ipb_prefix}pfields_content` (`member_id`) VALUES (2)");
        @
mysql_query("INSERT INTO `{$ipb_prefix}profile_portal` (`pp_member_id`, `pp_setting_count_friends`, `pp_setting_count_comments`) VALUES (2, 1, 1)");
        @
mysql_query("UPDATE `{$ipb_prefix}forums` SET `last_poster_id`='2', `last_poster_name`='".mysql_real_escape_string($username)."' WHERE `id`=2");
        @
mysql_query("UPDATE `{$ipb_prefix}posts` SET `author_id`= '2', `author_name`='".mysql_real_escape_string($username)."' WHERE `pid`=1");
        @
mysql_query("UPDATE `{$ipb_prefix}topics` SET `starter_id`='2', `last_poster_id`='2', `starter_name`='".mysql_real_escape_string($username)."', `last_poster_name`='".mysql_real_escape_string($username)."', `seo_last_name`='".mysql_real_escape_string($seo_username)."', `seo_first_name`='".mysql_real_escape_string($seo_username)."' WHERE `tid`=1");
        
$myres=mysql_query("SELECT `cs_value` FROM `{$ipb_prefix}cache_store` WHERE `cs_key`='stats'");
        
$myrow=mysql_fetch_assoc($myres);
        
$in=unserialize($myrow["cs_value"]);
        
$in["mem_count"]=1;
        
$in["last_mem_name"]=$username;
        
$in["last_mem_id"]=2;
        
$in["last_mem_name_seo"]=$seo_username;
        
$out=serialize($in);
        @
mysql_query("UPDATE `{$ipb_prefix}cache_store` SET `cs_value`='".mysql_real_escape_string($out)."'  WHERE `cs_key`='stats'");
        @
mysql_query("UPDATE `{$TABLE_PREFIX}users_level` SET `ipb_group_mirror`=`id`");
        
$ipb_fid=2;
    }

    
mysql_query("INSERT INTO {$TABLE_PREFIX}users (id, username, password, random, style, id_level, email, joined, lastconnect, pid, time_offset, smf_fid, ipb_fid) VALUES (2, '$username', '" md5($password) . "', $random, 6, 8, '$email', NOW(), NOW(), '".md5(uniqid(rand(),true))."', 0, $smf_fid$ipb_fid)");
    echo (
$install_lang["create_owner_account"]."&nbsp;".$install_lang["is_succes"]);
    echo (
"<div align=\"right\"><input type=\"button\" class=\"button\" name=\"continue\" value=\"".$install_lang["next"]."\" onclick=\"javascript:document.location.href='install.php?lang_file=".$_SESSION["install_lang"]."&amp;action=finished'\" /></div>");
}

// finished
elseif ($action == 'finished') {
    
step ($install_lang["finished"],$install_lang["step"]."&nbsp;".$install_lang["finished_step"],"*");
    echo (
"<h2>".$install_lang["succes_install1"]."</h2>");
    if(!
rename("install.unlock""install.lock") || !unlink("install.php"))
        echo (
$install_lang["succes_install2b"]);
    else
        echo (
$install_lang["succes_install2a"]);
    echo (
"<br /><br />");
    echo (
$install_lang["succes_install3"]);
    echo (
"<br />");
    echo (
"<p>BTITeam</p>");
    echo (
"<div align=\"center\"><a href=\"index.php\" target=\"_self\">".$install_lang["go_to_tracker"]."</a>");
}
echo (
"</td>\n</tr>\n</table>");
echo (
"</div>");
echo (
"</body>");
echo (
"</html>");
?>
install.php
Reply With Quote
  #5  
Old 17th March 2019, 18:05
stargate's Avatar
stargate stargate is offline
Member
 
Join Date: May 2018
Posts: 4
Default
Hello,

I would like to know if possible, what is the procedure for upgrading from xbtitfm 1.16 to xbtitfm 2.1. without losing all the data already installed.

I have a tracker with xbtitfm1.16 fully functional and I would like to upgrade but I don't know if it's possible and how to do it.

Can anyone help me by pointing out the step by step procedure?

thanks a lot

Greeting
Reply With Quote
Reply

Tags
21 , 22 , xbtitfm

Thread Tools

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

Forum Jump



All times are GMT +2. The time now is 07:12. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.