Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   url issue. (http://www.bvlist.com/showthread.php?t=6295)

Swompen 13th April 2011 08:24

url issue.
 
Hey there, i'm in the work of currently rebuilding a site to Tbdev2009

And starting with some issues, i edited config.php and all that and when i enter the url to the url bar it shows up twice. ie:

http://IP-adress/ (is the thing i enter, using ip adress sence its a test server)
http://IP-adress/Ip-adress/login.php=blablabla (is what comes up)

I'm going mad here trying to figure out why it does that, any ideas?

Code:

/*
+------------------------------------------------
|  TBDev.net BitTorrent Tracker PHP
|  =============================================
|  by CoLdFuSiOn
|  (c) 2003 - 2009 TBDev.Net
|  http://www.tbdev.net
|  =============================================
|  svn: http://sourceforge.net/projects/tbdevnet/
|  Licence Info: GPL
+------------------------------------------------
|  $Date$
|  $Revision$
|  $Author$
|  $URL$
+------------------------------------------------
*/
error_reporting(E_ALL);

define('SQL_DEBUG', 2);

/* Compare php version for date/time stuff etc! */
    if (version_compare(PHP_VERSION, "5.1.0RC1", ">="))
        date_default_timezone_set('Europe/London');


define('TIME_NOW', time());

$TBDEV['time_adjust'] = 0;
$TBDEV['time_offset'] = 0;
$TBDEV['time_use_relative'] = 0;
$TBDEV['time_use_relative_format'] = '{--}, h:i A';
$TBDEV['time_joined'] = 'j-F y';
$TBDEV['time_short'] = 'jS F Y - h:i A';
$TBDEV['time_long'] = 'Y-m-d H:i:s';
$TBDEV['time_tiny'] = '';
$TBDEV['time_date'] = '';


// DB setup
$TBDEV['mysql_host'] = "N/A";
$TBDEV['mysql_user'] = "N/A";
$TBDEV['mysql_pass'] = "N/A";
$TBDEV['mysql_db']  = "N/A";

// Cookie setup
$TBDEV['cookie_prefix']  = 'tbalpha_'; // This allows you to have multiple trackers, eg for demos, testing etc.
$TBDEV['cookie_path']    = ''; // ATTENTION: You should never need this unless the above applies eg: /tbdev
$TBDEV['cookie_domain']  = '.IP-ADRESS/'; // set to eg: .somedomain.com or is subdomain set to: .sub.somedomain.com
                             
$TBDEV['site_online'] = 1;
$TBDEV['tracker_post_key'] = 'test';
$TBDEV['max_torrent_size'] = 1000000;
$TBDEV['announce_interval'] = 60 * 30;
$TBDEV['signup_timeout'] = 86400 * 3;
$TBDEV['minvotes'] = 1;
$TBDEV['max_dead_torrent_time'] = 6 * 3600;

// Max users on site
$TBDEV['maxusers'] = 25000; // LoL Who we kiddin' here?

$TBDEV['torrent_dir'] = ROOT_PATH . '/torrents'; # must be writable for httpd user 

# the first one will be displayed on the pages
$TBDEV['announce_urls'] = array();
$TBDEV['announce_urls'][] = "http://localhost/TB_ALPHA/announce.php";
//$TBDEV['announce_urls'] = "http://localhost:2710/announce";
//$TBDEV['announce_urls'] = "http://domain.com:83/announce.php";

if ($_SERVER["HTTP_HOST"] == "")
  $_SERVER["HTTP_HOST"] = $_SERVER["SERVER_NAME"];
 
$TBDEV['baseurl'] = "http://IP-ADRESS/" . $_SERVER["HTTP_HOST"];

/*
## DO NOT UNCOMMENT THIS: IT'S FOR LATER USE!
$host = getenv( 'SERVER_NAME' );
$script = getenv( 'SCRIPT_NAME' );
$script = str_replace( "\\", "/", $script );

  if( $host AND $script )
  {
    $script = str_replace( '/index.php', '', $script );

    $TBDEV['baseurl'] = "http://{$host}{$script}";
  }
*/

//set this to true to make this a tracker that only registered users may use
//$TBDEV['membersonly'] = 1; //deprecated no longer needed

//maximum number of peers (seeders+leechers) allowed before torrents starts to be deleted to make room...
//set this to something high if you don't require this feature
//$TBDEV['peerlimit'] = 50000; //deprecated. no longer used.

// Email for sender/return path.
$TBDEV['site_email'] = "noreply@N/A";

$TBDEV['site_name'] = "N/A";

$TBDEV['language'] = 'en';
$TBDEV['msg_alert'] = 0; // saves a query when off

$TBDEV['autoclean_interval'] = 900;
$TBDEV['sql_error_log'] = ROOT_PATH.'/logs/sql_err_'.date("M_D_Y").'.log';
$TBDEV['pic_base_url'] = "./pic/";
$TBDEV['stylesheet'] = "./default.css";
$TBDEV['readpost_expiry'] = 14*86400; // 14 days
//set this to size of user avatars
$TBDEV['av_img_height'] = 100;
$TBDEV['av_img_width'] = 100;
$TBDEV['allowed_ext'] = array('image/gif', 'image/png', 'image/jpeg');
// Set this to the line break character sequence of your system
//$TBDEV['linebreak'] = "\r\n"; // not used at present.

$TBDEV['cache'] = ROOT_PATH.'/cache';

define ("UC_USER", 0);
define ("UC_POWER_USER", 1);
define ("UC_PRO_USER", 2);
define ("UC_ELITE_USER", 3);
define ("UC_LEGEND_USER", 4);
define ("UC_HERO", 5);
define ("UC_SUPERHERO", 6);
define ("UC_VIP", 7);
define ("UC_UPLOADER", 8);
define ("UC_MODERATOR", 9);
define ("UC_ADMINISTRATOR", 10);
define ("UC_DESIGNER", 11);
define ("UC_CODER", 12);
define ("UC_SYSOP", 13);

//pass-salt
define ('PASS_SALT', 'N/A');

//Do not modify -- versioning system
//This will help identify code for support issues at tbdev.net
define ('TBVERSION','TBDev_2009_svn');

?>


Gouald 13th April 2011 15:16

Code:

$TBDEV['baseurl'] = "http://IP-ADRESS/" . $_SERVER["HTTP_HOST"];
To

Code:

$TBDEV['baseurl'] = "http://" . $_SERVER["HTTP_HOST"];
You have added your ip to that line and that line already determines your baseurl so leave that untouched.


Code:

$_SERVER["HTTP_HOST"]
That finds your domain/ip so as i just pointed out you have your ip then $_SERVER["HTTP_HOST"] adding your ip all over again

Swompen 13th April 2011 17:53

Thanks a bunch, think it was that easy.. :)


All times are GMT +2. The time now is 06:07.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.