• Apache 2.4.25 on windows: no variable cgi.script_uri

    From mcardini@decofinder.com@21:1/5 to All on Thu Sep 28 06:02:57 2017
    Hi all,
    It seems that cgi.script_uri variable is not exists ...
    RewriteEngine is ON

    Some hint?

    thank you
    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From hauwa909@gmail.com@21:1/5 to All on Tue Jul 31 03:16:13 2018
    Hey, okay my apache doesn't work on my xampp control panel, whenever I start it stops by itself saying port 80 in use and I should change to another port so please how do I do that.
    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Kees Nuyt@21:1/5 to hauwa909@gmail.com on Tue Jul 31 13:21:15 2018
    On Tue, 31 Jul 2018 03:16:13 -0700 (PDT), hauwa909@gmail.com wrote:

    Hey, okay my apache doesn't work on my xampp control panel,
    whenever I start it stops by itself saying port 80 in use
    and I should change to another port so please how do I do that.

    Another process is listenig on port 80.
    You can get the name of the program
    in a command window (cmd.exe, run as Administrator)
    with:

    netstat -a -n -b -p tcp | more

    Look for lines with 0.0.0.0:80 .

    Either another instance of Apache httpd is active, or you have Microsoft
    IIS installed and active.

    80 is the default port for httpd, so the best thing to do is make sure
    Apache httpd is only started once, and disable the IIS service in the
    Windows management console.

    If you really want to use another port, you can change the Listen
    directive in your httpd.conf or one of its include files.

    http://httpd.apache.org/docs/2.4/bind.html

    --
    Regards,
    Kees Nuyt
    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)