TO: CoZmicShReddeR
Quote:
Originally Posted by CoZmicShReddeR
It seems if I use images or RSS feeds from other website my pages load slow sometimes... If that hosting goes down it really screws up my load times on my website... So with that I usually will mess around with something then if I like it I will ask the author to make it so I can host it or I usually look for an alternative but in the end I do not like anything remotely hosted...
|
UPDATED AGAIN
1ST SEPTEMBER 2012
I did what you guys requested... Now all the files can be uploadet to your own servers! PLEASE UPDATE AND UPLOAD THE new FILES!
The ADDON is now updated, and I messaged everyone who had it Installed
4 hours ago.. And I also messaged on top! I think you missed my message about the new update! You can now upload it in your own server!.. Make sure to upload the new files + the new XML Products! And follow my intructions..
And btw, i visited your website and true, ITS LOADING very very slow. I have also godaddy and a usual SHARING webhostnig account! Right now I have more than 3 GB of files in my server. Still LOADS fast! You really need to speak to them about this,
::::::::::::::::::::::::::
And one more thing:
I can see that your forum is not letting the FULL text to show up:
Here is what you can do, as you can see there are 4 PHP files, beside the 2 folders, I can see you are using the RED color, so the file you need to EDIT is called "
ip2country.php" for the RED colored text! You can edit 3 LINES inside the PHP files, and I will show you how, This is how your PHP file looks like below:
Code:
// This is for displaying Text
$ip = getenv("REMOTE_ADDR") ;
echo "<font color=\"green\">Dear Guest, Welcome! You are visiting from IP: </font>" . $ip;
$IPaddress=$_SERVER['REMOTE_ADDR'];
echo "<font color=\"green\"> and your country flag is </font>"; $two_letter_country_code=iptocountry($IPaddress);
include("ip_files/countries.php");
// This is for displaying the flag
$file_to_check="flags/$two_letter_country_code.gif";
if (file_exists($file_to_check)){
print " <img src=$file_to_check width=21 height=15>";
}else{
print " <img src=flags/noflag.gif width=21 height=15>";
}
function iptocountry($ip) {
$numbers = preg_split( "/\./", $ip);
include("ip_files/".$numbers[0].".php");
$code=($numbers[0] * 16777216) + ($numbers[1] * 65536) + ($numbers[2] * 256) + ($numbers[3]);
foreach($ranges as $key => $value){
if($key<=$code){
if($ranges[$key][0]>=$code){$two_letter_country_code=$ranges[$key][1];break;}
}
}
if ($two_letter_country_code==""){$two_letter_country_code="unkown";}
return $two_letter_country_code;
}
echo "<font color=\"green\"> Click & register, Its Free!</font>";
?>
I have marked all the 3 LINES with RED COLOR! You can now type your own TEXT a bit shorter to make it fit on your forum! After you are finish, save it and upload it to your forum root.. Thats it.. And make sure upload the new updated files!
GOOD LUCK MATE; and ask if anything!
Below you will which file contains what color, and there are 4 PHP files:
ip2country.php -->
RED TEXT
ip2countryb.php ---> BLACK TEXT
ip2countryg.php --->
GREEN TEXT
ip2countrybrown.php -->
BROWN TEXT