Results 1 to 3 of 3
Hybrid View
-
10th Nov 2010, 06:45 PM #1OPMemberWebsite's:
litewarez.neterror after install ?
Ive just installed ipb 3.1 nulled version on localhost
and after install .. i go to index and i get error sayin ?
Could not determine your IP address and a white page
any suggestions why?bumilad20 Reviewed by bumilad20 on . error after install ? Ive just installed ipb 3.1 nulled version on localhost and after install .. i go to index and i get error sayin ? Could not determine your IP address and a white page any suggestions why? Rating: 5
-
11th Nov 2010, 12:15 AM #2Respected Member
TRy using a proxy like zend2.com or hidemyass.com and see if you get the same.
-
11th Nov 2010, 12:17 AM #3
Hello. IPv6 and IP.Board doesn't go well together...
Temp fix.
http://www.besthostingforums.com/sho...02&postcount=4
I investigated this a bit and did this "mod":
-----------------------------------------
Upload a file with this contents named ipv6.php
PHP Code:<?php
/* IPv6 to IPv4, a dirty hack
*
* This will create fake IPv4 for IPv6 users based on the 64 first bits of their IP.
* As most currently existing IPv6 providers are assigning /64 classes to their customers,
* banning the generated IPv4 effectively bans the whole IPv6.
*
* Also this script generates a 32bits IPv4 from 64bits of IPv6 using XOR.
* While this means people using IPv6 might share the same generated IPv4 (quite unlikely),
* it is usually impossible for someone to obtain a different generated IPv4 without access
* to more than a /64 (I believe only system administrators have this kind of thing).
*
* Author: NewEraCracker
* License: Public Domain
*/
//@link: http://php.net/manual/en/function.inet-pton.php
if ( !function_exists('inet_pton')) {
function inet_pton($ip){
//ipv4
if (strpos($ip, '.') !== FALSE) {
$ip = trim($ip,':f');
$ip = pack('N',ip2long($ip));
}
//ipv6
elseif (strpos($ip, ':') !== FALSE) {
//Short ipv6 fix by NewEraCracker
$_count = count(explode(':', $ip));
while($_count<8)
{
$ip = str_replace('::',':0::',$ip);
$_count++;
}
unset($_count);
//Newfags can't triforce!
$ip = explode(':', $ip);
$res = str_pad('', (4*(8-count($ip))), '0000', STR_PAD_LEFT);
foreach ($ip as $seg) {
$res .= str_pad($seg, 4, '0', STR_PAD_LEFT);
}
$ip = pack('H'.strlen($res), $res);
}
return $ip;
}
}
//@link: http://php.net/manual/en/function.inet-ntop.php
if ( !function_exists('inet_ntop')){
function inet_ntop($ip){
if (strlen($ip)==4){
//ipv4
list(,$ip)=unpack('N',$ip);
$ip=long2ip($ip);
}
elseif(strlen($ip)==16){
//ipv6
$ip=bin2hex($ip);
$ip=substr(chunk_split($ip,4,':'),0,-1);
$ip=explode(':',$ip);
$res='';
foreach($ip as $seg) {
while($seg{0}=='0') $seg=substr($seg,1);
if ($seg!='') {
$res.=($res==''?'':':').$seg;
} else {
if (strpos($res,'::')===false) {
if (substr($res,-1)==':') continue;
$res.=':';
continue;
}
$res.=($res==''?'':':').'0';
}
}
$ip=$res;
}
return $ip;
}
}
//@link: http://blog.magicaltux.net/2010/02/18/invision-power-board-and-ipv6-a-dirty-hack/
$encoded_ip = inet_pton($_SERVER['REMOTE_ADDR']);
if (strlen($encoded_ip) == 16) {
$ipv4 = '';
for($i = 0; $i < 8; $i += 2) $ipv4 .= chr(ord($encoded_ip[$i]) ^ ord($encoded_ip[$i+1]));
$_SERVER['REMOTE_ADDR'] = inet_ntop($ipv4);
}
?>
Look for:
PHP Code:define('IN_DEV', 0);
PHP Code:include_once('ipv6.php');
Trusted: Dom, l0calh0st, 0ccul7, robert420
Find all threads started by NewEraCracker
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
cant install cpanelll error installer.lock
By kedenya in forum Server ManagementReplies: 13Last Post: 4th Sep 2011, 10:10 AM -
[Help] My Blog error after install BBcode Plugin
By warung giras in forum Web Development AreaReplies: 5Last Post: 22nd Jul 2011, 04:15 PM -
I Install Kloxo On Vps But Its Gving Error
By PA$$!oN in forum Server ManagementReplies: 4Last Post: 14th Mar 2011, 03:38 PM -
i can't install windows 7 with pen drive some error i get
By CyberAff in forum Technical Help Desk SupportReplies: 1Last Post: 23rd Oct 2010, 11:19 PM -
WCDDL install error
By Godly Chaos in forum Forum and DDL DiscussionReplies: 4Last Post: 10th Jul 2009, 05:49 PM
themaCreator - create posts from...
Version 3.47 released. Open older version (or...