Skip to main content

Problem Module squidguard - webmin

In my office all accessing to internet through proxy server squid which installed Opensuse 10.3.
Because accessing our internet is only limited at outside office hours, hence at our proxy squid is using Helping programs that is squidguard. This matter is done to facilitate arrangement access time.
Moment determine time access this through our Webmin meet mistake message like this:

Error - Perl Execution failed
Undefined Subroutine & main::chown called at / usr/libexec/webmin/squidguard/save_weekly.cgi lino 63

I check file save_weekly.cgi at line 63 and change &chown($config{conf}) by & sgchown($config{conf}).
Error above disappearing.

This is simple tips from me hopefully good for reader.

Comments

  1. or in ubuntu change &chown($config{'conf'}); to
    &sgchown($config{'conf'});

    many thanks for that tip man.
    oddly enough when it did work after making the change you highlighted, i could see all my previous attempts that had caused the error.

    ReplyDelete
  2. if every message board made posting a constructive comment to an existing post as easy as this blog does, the internet would be a better place for all. thankyou!

    ReplyDelete

Post a Comment

Popular posts from this blog

Repair Centos Metadata Corruption

To repair disk error on Centos 7. Use a Gparted disk that can be uploded in .... 1. Boot through gparted. 2. Go to the terminal 3. Check disk mapper by typing> fdisk -l For fdisk results 4. typed> sudo xfs_repair -L / dev / mapper / centos-home 5. Restart Centos 7 Hope can help readers of this blog

Ubuntu 10.10 Can not Select Framework on Netbeans 6.9.1

When we create new Project and want to select Framework like ' Java Server Faces ' or other there is a check box that can not be check :(. This Problem because Java Platform (java-6-open-jdk) is not Compatible with Ubuntu 10.10 . The solution is try using 'java-6-sun' on Synaptic known as 'sun-java6-jdk' Edit netbeans.conf and change netbeans_jdkhome="/usr/lib/jvm/java-6-sun"

Access Pidgin from Squid Proxy

In my Office some person like using Pidgin as Chatting tools to connect to Yahoo messager. Because my office using Squid as Proxy server, some modification of squid.conf is adding. This line below (red bold) you must add on squid.conf. acl SSL_ports port 443 acl SSL_ports port 5050 acl Safe_ports port 80 acl Safe_ports port 21 acl Safe_ports port 443 acl Safe_ports port 70 acl Safe_ports port 210 acl Safe_ports port 1025-65535 acl Safe_ports port 280 acl Safe_ports port 488 acl Safe_ports port 591 acl Safe_ports port 777 acl CONNECT method CONNECT acl shoutcast rep_header X-HTTP09-First-Line ^ICY\s[0-9] acl apache rep_header Server ^Apache Restart Squid : #service squid restart Try connect from pidgin. If any problem don't be ashame to put comment in this post. Thank's .