Posts

Showing posts with the label Python

Installing CGI BIN in Apache - Ubuntu -Common Gateway Interface

Image
Let me introduce you to CG I   at First .. The Common Gateway Interface ( CGI ) is a standard method for web server software to delegate the generation of web content to executable files. Such files are known as CGI scripts ; they are programs, often stand-alone applications, usually written in a scripting language .  ---- by WikiPedia  Now.. 1:- There are mainly 3 modules  I   CGI II  CGID III userdir Now type the following command in the terminal\ $ sudo a2enmod module #NB: You should execute the command 3 times with each module names on "module"  o the command above  2:- Now Restart the Apache:  $ sudo /etc/init.d/apache2  restart 3:-  Make  public_html inside your home folder and place cbi-bin in it $ cd ~                           ...