hello 1 of my site owners uses opra mini on 1 of the sites i just put up but cant tool up it wont let her any 1 know how n where to unblock this in the wapdesire script cheers
Opera Mini
Collapse
X
-
i looked there b4 i edited it but she still couldnt do it this is the file
<?php
$mobile = "blocked2.php";
$text = $_SERVER['HTTP_USER_AGENT'];
$var[0] = 'J2ME';
$var[1] = 'Opera Mini246/';
$var[2] = 'anonymouse.org';
$var[3] = 'Mozilla/4.0 (compatible; MSIE 6.0; Symbian OS; Series 60';
$var[4] = 'http://www.verkata.com';
$result = count($var);
for ($i=0;$i<$result;$i++)
{
$ausg = stristr($text, $var[$i]);
if(strlen($ausg)>0)
{
header("location: $mobile");
echo '
java/opera mini browser detected
';
break;
}
}
?>
this is the part i took out $var[1] = 'Opera Mini246/'; but still didnt work
Comment
-
i looked there b4 i edited it but she still couldnt do it this is the file
Code:<?php $mobile = "blocked2.php"; $text = $_SERVER['HTTP_USER_AGENT']; $var[0] = 'J2ME'; $var[1] = 'Opera Mini246/'; $var[2] = 'anonymouse.org'; $var[3] = 'Mozilla/4.0 (compatible; MSIE 6.0; Symbian OS; Series 60'; $var[4] = '[url]http://www.verkata.com';[/url] $result = count($var); for ($i=0;$i<$result;$i++) { $ausg = stristr($text, $var[$i]); if(strlen($ausg)>0) { header("location: $mobile"); echo ' java/opera mini browser detected '; break; } } ?>
Code:$var[1] = 'Opera Mini246/';
J2ME = Java 2 Platform, Micro Edition
Opera Mini = J2ME
got a clue?
your
Code:$var[0] = 'J2ME';
means.. it blocks UCWEB, SHARK, OPERA MINI, ETC...It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ â“â“¡â“” â“ⓑⓛⓔ ⓣⓞ â“—â“”â“â“¡ !
ιη тнєσÑу, тнє ÏÑα¢тι¢є ιѕ α Ñєѕυℓт σƒ тнє тнєσÑу, вυт ιη ÏÑα¢тι¢є ιѕ тнє σÏÏσѕιтє.
Comment
Comment