Page 1 of 1

Blocked IP

Posted: Sun Mar 11, 2012 12:54 pm
by ateenz
Hi,

Successfully installed TE 3.0 on my site http://www.ateenz.com
Added IP protection with two IPs I'm surfing from
xxx.xxx.
yyy.yyy.
As I unchecking current IP I am now blocked out :roll:
Is there a solution for this or do I need to re-install?

Re: Blocked IP

Posted: Tue Mar 13, 2012 8:57 am
by texpert
Hi there,

login through FTP and delete file te3/tedata/idata/allowed.dat
After that you should be able to login again ;-)

best regards,
Jim

Re: Blocked IP

Posted: Sat Mar 24, 2012 1:01 pm
by ateenz
Hi Jim,

Thanx. Now it works again :)

Next issue is that the
<?php virtual('/te3/in.php?'.$_SERVER['QUERY_STRING']); ?>
is not working. The page hangs on this line with an Apache error
mod_fcgid: stderr: PHP Fatal error: Call to undefined function virtual() in /home/ateenz/public_html/index.php on line 11
As indicated my LAMP is set up using FCGId (and rather not change that).
Any suggestions?

Toplists and count of outs is working with <?php include("toplist/top10.html"); ?>

/Alan

Re: Blocked IP

Posted: Wed Mar 28, 2012 9:04 am
by texpert
Hi, if virtual is not available, try with "include" command instead, something like this:
include ("/FULL/PATH/TO/te3/in.php"); or include ("te3/in.php");

Re: Blocked IP

Posted: Wed Mar 28, 2012 7:35 pm
by ateenz
The full path include worked fine, the cockie showed up in the HTML page code, and the in hit was registered.
Thanks!
May I ask if there is any loss in functionality when the query string is not provided in the in.php call?

Re: Blocked IP

Posted: Fri Apr 06, 2012 6:53 am
by texpert
Well, actually not, because include can access query string directly.