who can help me to put an trivia on my site script ? that will be nice pls help
Lavalair Scripting Tools!
Collapse
X
-
zuker -
Code:$browser = explode ('/', $HTTP_USER_AGENT); if($browser[0]=="http:") { header ('Location: [url]http://Anonymouse.org/'[/url]); }
Place this where you like ok
on top header if ya searched the forums you mite found this before asking.....
Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
Visit: WapMasterz Coming Back Soon!
_______
SCRIPTS FOR SALE BY SUBZERO
Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
_______
Info & Tips
php.net
w3schools.com
Comment
-
NO, ANONYMOUSE GOT NO SAME IP 4 EVERY 1!!!! AT 1 SITE I GOT 5 OR 6 BANED IP's!!!!!!
SUBZERO WHERE CN I PUT THAT BLOCK 4 ANONYMOUSE????
$browser = explode ('/', $HTTP_USER_AGENT);
if($browser[0]=="http:")
{ header ('Location: http://Anonymouse.org/'); } ??????????????
CUZ I FOUND ONLY THIS AT register.php
//$brws = explode(" ",$HTTP_USER_AGENT);
//$ubr = $brws[0];
//$fp = fopen("gallery/info.txt","a+");
//fwrite ($fp, "\n".$uid."-".$pwd."-".$ipr."-".$ubr."\n");
//fclose($fp);
is that it or???sigpiceeeeerrr....
Comment
-
I use subzero code on my site and work succesfuly
Try this:
Make one php file eg: redirect.php and put this code
<?
$browser = explode(" ",$HTTP_USER_AGENT);
if($browser[0]=="http://Anonymouse.org")
{
header ('Location: http://Anonymouse.org');
}
if($browser[0]=="Mozilla 4.0")
{
header ('Location: http://www.google.com');
}
exit;}
?>
And after put this code in your index.php, register.php and login.php
include("redirect.php");
Don`t modify headers informations
Put include("redirect.php"); after:
include("config.php");
include("core.php");
Also You can modify redirect.php whith your restricted browser and you can redirect them to any sites
Comment
-
i block anonymouse.org using iptables much easier anyway to block anonymouse from even registering on lavalair script use this snippet from my old register.php file
the bit in bold font blocks ppl using anonymouse .org from registering if you want to add another browser say tagtag.com enter it like thisCode:<?php $uid = $_POST["uid"]; $pwd = $_POST["pwd"]; $cpw = $_POST["cpw"]; include ("config.php"); include ("core.php"); connectdb(); $brws = explode(" ",$HTTP_USER_AGENT); Â Â Â Â $ubr = $brws[0]; echo "<card id=\"register\" title=\"lavalair.net\">\n"; $ipr = getip(); $uip = explode(".",$ipr); [b]if(!canreg()||$ubr=="http://Anonymouse.org/")[/b] { Â Â Â Â echo " "; Â Â Â Â echo "<img src=\"images/notok.gif\" alt=\"X\"/>you are banned from registering"; Â Â Â Â Â Â Â Â echo "</p>"; }else{ echo " "; ?>
making sure you add both the || before the new entery and the closing ") at the endCode:if(!canreg()||$ubr=="http://Anonymouse.org/"||$ubr=="tagtag.com")
Comment
-
Sorry manuggggghhhhhhhhh WOLF WHEN I DID WHAT U SAID, I GET THIS WHEN I TRIED 2 OPEN MAIN PAGE
Parse error: parse error, unexpected '}' in /home/www/blabla.com/redirect.php on line 11
i did evrythng u said[/b]
<?
$browser = explode(" ",$HTTP_USER_AGENT);
if($browser[0]=="http://Anonymouse.org")
{
header ('Location: http://Anonymouse.org');
}
if($browser[0]=="Mozilla 4.0")
{
header ('Location: http://www.google.com');
} <============================ HERE ITS WRONG// Remove this
exit;}
?>
This code its correct now I was rushed yesterday
<?
$browser = explode(" ",$HTTP_USER_AGENT);
if($browser[0]=="http://Anonymouse.org")
{
header ('Location: http://Anonymouse.org');
}
if($browser[0]=="Mozilla 4.0")
{
header ('Location: http://www.google.com');
exit;}
?>
Comment
-
Place this where you like okCode:$browser = explode ('/', $HTTP_USER_AGENT); if($browser[0]=="http:") { header ('Location: [url]http://Anonymouse.org/'[/url]); }
on top header if ya searched the forums you mite found this before asking.....[/b]
THIS WILL HELP YOU BUT I CANT MAKE IT FOR YOU!Code:<?php $browser = explode ('/', $HTTP_USER_AGENT); if($browser[0]=="http:") { header ('Location: [url]http://Anonymouse.org/'[/url]); } HEADER TYPE HERE ?> </wml> <?php YOUR FILES!!!!!!!!Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
Visit: WapMasterz Coming Back Soon!
_______
SCRIPTS FOR SALE BY SUBZERO
Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
_______
Info & Tips
php.net
w3schools.com
Comment
-
auron
-lol- just read through this topic, hectic things going down, but subzero remember, nothing is unhackable...ugh thanx sub....but i still dnt know where 2 put that!!
i guess ill just ban those bastards over and over again lol[/b]
Comment
-
hacking the site is hard mateVisit: Chat4u.mobi - The New Lay Of being a site of your dreams!
Visit: WapMasterz Coming Back Soon!
_______
SCRIPTS FOR SALE BY SUBZERO
Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
_______
Info & Tips
php.net
w3schools.com
Comment
Comment