Thread: url issue.
View Single Post
  #2  
Old 13th April 2011, 15:16
Gouald Gouald is offline
Member
 
Join Date: Sep 2010
P2P
Posts: 7
Default
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
Reply With Quote