hi!
i checked out bblocked today and it seems nice, but i had some issues with it.
1) accessing ftp url
script returned an error after loading for some minuts stating the following that in ftp.php line 71 was erroneous:
foreach(ftp_nlist($ftp_id, '-dF .') as $path)
i found a solution somewhere in the net. when grabbing a directory listing with ftp_nlist, some servers only do this in passive mode. therefore, do
ftp_pasv($ftp_id, true);
after
@ftp_login($ftp_id, ...
and before you quit the function function get_ftp_dir() do
ftp_pasv($ftp_id, false);
2) a problem i found no solution to whilst somebody in this forum mentioned it already, having not received any helping hands.
for reference, see this poster's thread: "Header frame duplicating when doing google search" somehow he managed to work around with iframes, see his page.
i'm having the same problem with firefox 2.0.0.6.
after installing a fresh 5.6.3 and visiting google, once you hit the search button a second url header frame loads. once you hit again, a third one opens. and again and again. its on many sites that offer some forms like searches. the same is with browsing ftp sites. every single click, a new url header frame loads, so in the end you have like 5,6,7,8,9... url headers on top.
so, do something against it because thus far i like the tool! :)