This is a discussion on Basic web page with links that start/stop processes using Apache(newbie) within the Linux Web Servers forums, part of the Web Server and Related Forums category; I need to develop a very basic web site for Apache with the list of links (may be represented by ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I need to develop a very basic web site for Apache with the list of
links (may be represented by the buttons). Each one of those links execute a script on the host machine (linux 2.4.20 running apache 1.3). I had never done any apache/web related work. Can anybody give me hints/code snippets etc? Thank you very much!!! I need this web page to control shoutcast servers sitting on my machine. I have two available ports and many radio stations that I want to relay. I figured I can setup many server instances relaying different stations but sitting on the same port. This web server sitting on the second available port can act as a control switch to turn on *ONE* shoutcast instance at the time. It will allow me to start the instance of the server configured to listen to the radio station of my choice and relay it to specified port. |
|
|||
|
On 4 Jan 2005, evolutionx1945@yahoo.com <evolutionx1945@yahoo.com> wrote:
> I need to develop a very basic web site for Apache with the list of > links (may be represented by the buttons). Each one of those links > execute a script on the host machine (linux 2.4.20 running apache 1.3). > I had never done any apache/web related work. Can anybody give me > hints/code snippets etc? Thank you very much!!! > > I need this web page to control shoutcast servers sitting on my > machine. I have two available ports and many radio stations that I > want to relay. I figured I can setup many server instances relaying > different stations but sitting on the same port. This web server > sitting on the second available port can act as a control switch to > turn on *ONE* shoutcast instance at the time. It will allow me to > start the instance of the server configured to listen to the radio > station of my choice and relay it to specified port. See 'perldoc perlipc' for examples of how to fork and "daemonize" a script (ie, fork from the CGI and disassociate child from parent), and how to communicate between processes using anything from ports to fifos (a filehandle that can be read or written to like a regular file). |
| Thread Tools | |
| Display Modes | |
|
|