Author Topic: Help on lightsquid.  (Read 3577 times)

philzen

  • Zen Apprentice
  • *
  • Posts: 32
  • Karma: +0/-0
    • View Profile
Help on lightsquid.
« on: May 01, 2011, 12:04:22 pm »
I have followed the lightsquid tutorial post by arun..i make it work after trial and error i think i was playing the index.cgi . Now i reformat again the disk and reinstall zentyal this time i am not sucessful displaying report of lightsquid, the problem is that when i type http://localhost/lightsquid it will display content of index.cgi   I went to find the log and i found the logs of site i have visited.  Thanks in advance.

philzen

  • Zen Apprentice
  • *
  • Posts: 32
  • Karma: +0/-0
    • View Profile
Solved Re: Help on lightsquid.
« Reply #1 on: May 02, 2011, 05:28:34 am »
This is solved by following this instructions...
   
Quote
Re: Enabling CGI on webserver?
« Reply #1 on: April 09, 2011, 05:58:54 am »
   
.cgi files must execute as CGI scrip, and for this you may need edit Apache configuration file.
You can find Apache conf. file at following location

/etc/apache2/apache2.conf

at the end of the configuration file add the following code (where  "/var/www/html/lightsquid" is the location where CGI is located which you like to execute ..)

<Directory "/var/www/html/lightsquid">
   Options +ExecCGI
   AddHandler cgi-script .cgi
   AllowOverride All
</Directory>

Arun

Thanks Arun
« Last Edit: May 02, 2011, 05:31:40 am by philzen »