Welcome, Guest. Please login or register.
Did you miss your activation email?
+  pfSense Forum
|-+  pfSense English Support» Packages» is the squidguard package stable at the moment.....
Username:
Password:
 
 

Pages: 1 [2] 3   Go Down
  Print  
Author Topic: is the squidguard package stable at the moment.....  (Read 8690 times)
0 Members and 1 Guest are viewing this topic.
aaron
Newbie
*
Offline Offline

Posts: 18


View Profile
« Reply #15 on: February 18, 2008, 12:20:32 pm »

I occasionally get the implode type of error when I've deleted a destination group or blacklist group and haven't gone through all the ACLs to update them.  Perhaps it's a similar problem?

Also, heiko, I am using squidGuard in a production environment and am happy with the results.
Logged
ColdFusion
Full Member
***
Offline Offline

Posts: 168


View Profile
« Reply #16 on: February 18, 2008, 12:43:26 pm »

This happens on fresh install with no destination groups deleted. It happens after uploading Blacklist or hitting apply changes. Then error goes away and no content is blocked.
Logged
dvserg
Global Moderator
Hero Member
*****
Offline Offline

Posts: 4297



View Profile WWW
« Reply #17 on: February 18, 2008, 12:55:09 pm »

Thanks for previous bug-report's.
I fix it (may be  Angry ) and update sources.
If possible check this bugs now.

Also i remake ACL-ordering code for more stable.
Logged

SquidGuardDoc EN  RU Tutorial
SQStat
ColdFusion
Full Member
***
Offline Offline

Posts: 168


View Profile
« Reply #18 on: February 18, 2008, 02:39:33 pm »

Seems to be working now. Since the last few changes, I can no longer access the blocked log report tab....I get block_log report disabled. The other thing I'm trying to figure out is how to whitelist certain sites that are in the blacklist...
Logged
dvserg
Global Moderator
Hero Member
*****
Offline Offline

Posts: 4297



View Profile WWW
« Reply #19 on: February 18, 2008, 03:02:38 pm »

Code:
I can no longer access the blocked log report tab....I get block_log report disabled.
I disable this function. After short time i return to renew this code with more quick algorithm (i houpe).
If you need this now - you can modify squidGuard.php:
- comment with '#' line 710
Code:
#                                $slog .= 'block_log report disabled'; 

- delete '/*' and '*/' symbols in  711 and 747 lines.

ps this actual on today time; in next time code can changed.
Logged

SquidGuardDoc EN  RU Tutorial
SQStat
heiko
Hero Member
*****
Offline Offline

Posts: 663


Get a load of that!


View Profile
« Reply #20 on: February 18, 2008, 05:45:14 pm »

Sorry dvserg, i wouldn´t set off an avalanche with my question.
Greetings
Heiko
Logged
ColdFusion
Full Member
***
Offline Offline

Posts: 168


View Profile
« Reply #21 on: February 18, 2008, 06:36:54 pm »

I finally figured out how to whitelist a url that's blacklisted. In destination tab I created a whitelist and blacklist. When I put a url that I want to add to the blacklist it worked. However when I put a url that I want to whitelist it still didn't work. I looked in the squidgaurd config and found this:
dest whitelist {
domainlist whitelist/domains
urllist whitelist/urls
log block.log
}

dest Blacklist {
domainlist Blacklist/domains
urllist Blacklist/urls
redirect http://192.168.0.1/sgerror.php?url=http://www.yahoo.com&a=%a&n=%n&i=%i&s=%s&t=%t&u=%u
log block.log
}

acl {
default {
pass !blk_BL_adv !blk_BL_aggressive !blk_BL_chat !blk_BL_drugs !blk_BL_gamble !blk_BL_hacking !blk_BL_porn !blk_BL_redirector !blk_BL_spyware !blk_BL_tracker !blk_BL_warez whitelist !Blacklist all
redirect http://192.168.0.1/sgerror.php?url=http://www.yahoo.com&a=%a&n=%n&i=%i&s=%s&t=%t&u=%u
}
}

However the my whitelist and blacklist were added to the back of the config. I edited my xml config and replaced it with this:
dest whitelist {
domainlist whitelist/domains
urllist whitelist/urls
log block.log
}

dest Blacklist {
domainlist Blacklist/domains
urllist Blacklist/urls
redirect http://192.168.0.1/sgerror.php?url=http://www.yahoo.com&a=%a&n=%n&i=%i&s=%s&t=%t&u=%u
log block.log
}

acl {
default {
pass whitelist !Blacklist !blk_BL_adv !blk_BL_aggressive !blk_BL_chat !blk_BL_drugs !blk_BL_gamble !blk_BL_hacking !blk_BL_porn !blk_BL_redirector !blk_BL_spyware !blk_BL_tracker !blk_BL_warez all
redirect http://192.168.0.1/sgerror.php?url=http://www.yahoo.com&a=%a&n=%n&i=%i&s=%s&t=%t&u=%u
}
}

I put my whitelist and blacklist in front of the file.....it now works.
Logged
dvserg
Global Moderator
Hero Member
*****
Offline Offline

Posts: 4297



View Profile WWW
« Reply #22 on: February 19, 2008, 01:34:40 am »

I put my whitelist and blacklist in front of the file.....it now works.

You wanted say, what SG dest order has important meaning?
I not found information in manuals about this
If you can - please help find it fo me - this is really important.
Thanks.
Logged

SquidGuardDoc EN  RU Tutorial
SQStat
ColdFusion
Full Member
***
Offline Offline

Posts: 168


View Profile
« Reply #23 on: February 19, 2008, 06:24:05 am »

Maybe I should clarify. The order seems important. If you look at the example above I just moved the whitelist to the front. The additional blacklist created doesn’t matter the order. I found the info at http://squidguard.shalla.de/Doc/configure.html

1.   Whitelisting

Sometimes there is a demand to allow specific URLs and domains although they are part of the blocklists for a good reason. In this case you want to whitelist these domains and URLs.
Defining a whitelist
dest white {
   domainlist   white/domains
   urllist      white/urls
}

acl {
        default {
                pass    white !adv !porn !warez all
                redirect http://localhost/block.html
                }

 }

Basically the whitelist works before the blacklist.

Logged
ColdFusion
Full Member
***
Offline Offline

Posts: 168


View Profile
« Reply #24 on: February 19, 2008, 06:34:51 am »

I guess one would get the same result if you named your whitelist something like AA....first order seems to be ads.....Example AA ads aggressive......

acl {
default {
pass AA !blk_adv !blk_BL_aggressive !blk_BL_chat !blk_BL_drugs !blk_BL_gamble !blk_BL_hacking !blk_BL_porn !blk_BL_redirector !blk_BL_spyware !

didn't try this though but should work.

John
Logged
dvserg
Global Moderator
Hero Member
*****
Offline Offline

Posts: 4297



View Profile WWW
« Reply #25 on: February 19, 2008, 06:57:15 am »

Thanks!!!
English causes some difficulties for me, and nuances sometimes disappear  Undecided

A chnange config generator AS:
pass <allow_rules> <block_rules> all|none
Logged

SquidGuardDoc EN  RU Tutorial
SQStat
acidrop
Jr. Member
**
Offline Offline

Posts: 50


View Profile
« Reply #26 on: February 20, 2008, 05:54:28 pm »

After a de-install and reinstallation of SG i get the following error each time i press apply in the general settings tab:

Warning: implode(): Bad arguments. in /usr/local/pkg/squidguard_configurator.inc on line 312 Warning: Cannot modify header information - headers already sent by (output started at /usr/local/pkg/squidguard_configurator.inc:312) in /usr/local/www/pkg_edit.php on line 35

..and nothing is blocked anymore Sad

pls help!
Logged
ColdFusion
Full Member
***
Offline Offline

Posts: 168


View Profile
« Reply #27 on: February 20, 2008, 10:08:02 pm »

After a de-install and reinstallation of SG i get the following error each time i press apply in the general settings tab:

Warning: implode(): Bad arguments. in /usr/local/pkg/squidguard_configurator.inc on line 312 Warning: Cannot modify header information - headers already sent by (output started at /usr/local/pkg/squidguard_configurator.inc:312) in /usr/local/www/pkg_edit.php on line 35

..and nothing is blocked anymore Sad

pls help!

I had the same problem. I had to reinstall the package xml...then that cleared up the error and everything is working fine.
Logged
ColdFusion
Full Member
***
Offline Offline

Posts: 168


View Profile
« Reply #28 on: February 20, 2008, 11:25:46 pm »

Well, I spoke to soon....There were changes to SquidGuard today, so  I downloaded it again on a test box to see if I get the error....and I am.......Warning: implode(): Bad arguments. in /usr/local/pkg/squidguard_configurator.inc on line 312 Warning: Cannot modify header information - headers already sent by (output started at /usr/local/pkg/squidguard_configurator.inc:312) in /usr/local/www/pkg_edit.php on line 35

Logged
dvserg
Global Moderator
Hero Member
*****
Offline Offline

Posts: 4297



View Profile WWW
« Reply #29 on: February 21, 2008, 02:24:20 am »

Fixed Please update package.  Embarrassed
Logged

SquidGuardDoc EN  RU Tutorial
SQStat
Pages: 1 [2] 3   Go Up
  Print  
 
Jump to:  

 

Page created in 0.031 seconds with 20 queries.