in reply to Re^2: Experimenting Ajax - problem installing Apache2::Ajax
in thread Experimenting Ajax - problem installing Apache2::Ajax
The configuration dialogue I was referring to was the part when it asked
Please provide a full path to 'httpd' executable: [] /etc/init.d/apache2Depending on your PATH environment variable, this might be the result of running which apache2. To check, examine the /etc/init.d/apache2 script and look for a line that points to the httpd binary; on my system, it looks like
which indicates the full path to the binary is /usr/local/httpd/bin/httpd. Similarly, the apxs script (which might be called apxs2) may be the result of running which apxs, or it might be under the same directory as httpd.# the path to your httpd binary, including options if necessary HTTPD='/usr/local/httpd/bin/httpd' #
If you have multiple apache installations, you have to make sure that the httpd that you specify is the mod_perl-enabled one.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Experimenting Ajax - problem installing Apache2::Ajax
by Anonymous Monk on Oct 03, 2007 at 07:10 UTC | |
by randyk (Parson) on Oct 04, 2007 at 07:05 UTC | |
|
Re^4: Experimenting Ajax - problem installing Apache2::Ajax
by emotiv (Novice) on Oct 04, 2007 at 09:05 UTC | |
by randyk (Parson) on Oct 04, 2007 at 19:53 UTC | |
by emotiv (Novice) on Oct 05, 2007 at 06:45 UTC |