Login     Sign up
Website Offline
DeFender (@defender)
Join date: Oct 1st 2010
Community posts: 167
View Profile
Send Message

not working

174 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

it does, the pro version anyway.

two things you have to keep in mind. The offline message shows up only if you log in and it doesn't appear if you are logged in as administrator.

174 months ago
DeFender (@defender)
Join date: Oct 1st 2010
Community posts: 167
View Profile
Send Message

maybe you are right, but quests are allow to see the content.

174 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

only the frontpage, nothing else

174 months ago
DeFender (@defender)
Join date: Oct 1st 2010
Community posts: 167
View Profile
Send Message

this site now is offline

[url]http://www.digi-sky.net[/url]

174 months ago
emjhie Bahrink (@emjhie)
Join date: Sep 27th 2010
Community posts: 91
View Profile
Send Message

same problem.. ofline not work. I use jcow 4.1 update from 3.3. i think only my site have this problem...

174 months ago
DeFender (@defender)
Join date: Oct 1st 2010
Community posts: 167
View Profile
Send Message

no , it is fresh install

174 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

ok, in free version it is not working, just did the test on my computer

174 months ago
AL (@switch48)
Join date: Sep 1st 2010
Community posts: 450
View Profile
Send Message

[quote=falcone]ok, in free version it is not working, just did the test on my computer [/quote]

Yea it seems free version is going backwards in some areas.. :(

174 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

well, it is the free version, so no problem to copy and paste some code from 3.3 to 4.1

174 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

[code]
if (!allow_access(3) && $parr[0] != 'member' && $parr[0] != 'jcow' && !eregi("google",$_SERVER['HTTP_USER_AGENT']) ) {
if (get_gvar('offline')) {
$config['hide_ad'] = 1;
clear_as();
c('<h1>'.t('Website Offline').'</h1>');
c(get_gvar('offline_reason'));
stop_here();
exit;
}

if (strlen(get_gvar('blacklist')) ) {
    $myips = explode('.',$client['ip']);
    $blacklists = explode("\r\n",get_gvar('blacklist'));
    foreach ($blacklists as $item) {
        $items = explode('.', $item);
        if (
            ($items[0] == '*' or $items[0] == $myips[0]) &&
            ($items[1] == '*' or $items[1] == $myips[1]) &&
            ($items[2] == '*' or $items[2] == $myips[2]) &&
            ($items[3] == '*' or $items[3] == $myips[3])
            ) {
            die('*');
        }
    }
}

}
[/code]

this is code from jcow 3.3 free, in boot_inc.php before the last 2 lines
$nav[] = ....
require_once

174 months ago
emjhie Bahrink (@emjhie)
Join date: Sep 27th 2010
Community posts: 91
View Profile
Send Message

very nice. offline work..

174 months ago
1 2 Next