Hi.
I have an Apache server, which main rootwebdir is '/usr/www/users/foo/' and
'foo.com' points there. However, I have some subdomains pointing within
their directories:
subdomain1.foo.com --->
/usr/www/users/foo/subdomain1subdomain2.foo.com --->
/usr/www/users/foo/subdomain2
This causes me a p
I fixed it. I modified "httpd.conf", replacing "AllowOverride None" with
"AllowOverride All" within the "".
On Tue, Jun 28, 2016 at 7:03 PM, thomas Armstrong
wrote:
> Hi.
>
> Using Apache/2.2.31, I created the following rule on my '.htacces
Hi.
Using Apache/2.2.31, I created the following rule on my '.htaccess' file:
--
RewriteEngine on
RewriteRule ^([^/]+)/$ /do.php?label=$1 [L]
--
However, when accessing 'http://foo.com/whatever/', I get a 404 error
message. I've checked my error log and:
---
[Mon Jun 27 11
Hi.
On my Apache Server, I have this structure to host a website under '/' and
a WordPress blog under '/myblog' directory:
--- root_directory/.htaccess
--- root_directory/php_stuff
--- root_directory/myblog/.htaccess
--- root_directory/myblog/php_wp_stuff
Within 'root_directory/.htaccess' file I
> Sure, make a copy of the httpd.conf file, remove everything that refers
> PHP (the LoadModule basically), then run a secondary Apache using that
> config file. You'll have to use a different port of course and redirect
> images and the like to the secondary apache.
>
> But... why?
Thank you
Hi.
I've got Apache 2.2 with PHP running on my Linux box to serve dynamic pages.
I was told that Apache 2.2 allows to create a secondary process which
doesn't use PHP to serve images or static files without installing a
secondary Apcache webserver or lighttpd.
Is it possible? How can I configure
Hi.
I want to cache multimedia files by using "mod_expires" and created
this rule within my ".htaccess" file:
---
ExpiresActive On
ExpiresDefault A29030400
However, this ".htaccess" file is shared by five VirtualHosts, and I
would like to determine which VirtualHost must cache mult
> You can use the apachectl script which internally does the same or
> issue the following command from the command prompt ulimit -S -n `ulimit -H
> -n` and then start the Apache, hopefully it will resolve the issue :)
Thank you very much for you answer. I inserted this line on my
"/etc/rc.d/rc.loc
Allow from all
AllowOverride all
DirectoryIndex index.php
--
On Thu, Mar 27, 2008 at 12:21 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> Hi.
>
> Using Apache/2.2 + PHP/5.2, I'm suffering an odd issue when accessing
> an image gene
Hi.
Using Apache/2.2 + PHP/5.2, I'm suffering an odd issue when accessing
an image generated with PHP.
When I access:
http://www.foo.com/apc.php?IMG=1&1206615989
I get *SOMETIMES* this error message
---
Forbidden
You don't have permission to access /apc.php on this server.
--
But most o
Hi.
Using Apache 2.2 with Plesk, I found out these error messages on my
'error_log' file:
[Wed Mar 26 18:45:50 2008] [error] [client 127.0.0.1] Directory index
forbidden by Options directive: /var/www/html/
[Wed Mar 26 18:49:57 2008] [error] [client 127.0.0.1] Directory index
forbidden by
you see, my Host provider gave me a VPS server with Swap=0.
?
On Thu, Mar 27, 2008 at 10:08 AM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> Hi.
>
> Using Apache version 2.2.3 on 'Linux CentOS', my webpages are very
> slow and I get this error mes
Hi.
Using Apache version 2.2.3 on 'Linux CentOS', my webpages are very
slow and I get this error messages on my 'error_log' file:
---
[Wed Mar 26 13:05:39 2008] [warn-phpd] mmap cache can't open
/var/www/classes/Threads.php - Too many open files (pid 17650)
[Wed Mar 26 13:05:42 2008] [warn-php
I think that this has to do with these lines inserted at the top of
the VirtualHost configuration:
AddHandler fcgid-script .php .php5
SuexecUserGroup myuser psacln
DocumentRoot "/var/www/httpdocs/web"
ErrorLog /etc/httpd/logs/dev_error_log
Options Ex
> This seems to be a problem with your FastCGI configuration. (FastCGI
> is also probably at fault for returning a 403 without logging
> something interesting.)
>
> You haven't said which FastCGI module you are using, and I don't know
> much about FastCGI in the first place, so I can't help fu
> There's an entry for that error message on the wiki. Have you read it?
I was reading:
http://wiki.apache.org/httpd/CommonHTTPStatusCodes
But no more explicit info about "403 Forbidden" messages.
-
The official User-To-User s
I also chmoded all the files to 777 and didn't work.
On Fri, Feb 22, 2008 at 8:37 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> > Look again in the apache error logs. There really should be something
> > there. Most likely it is this:
> > http://wiki.apache
> Look again in the apache error logs. There really should be something
> there. Most likely it is this:
> http://wiki.apache.org/httpd/13PermissionDenied
I checked error logs again and didn't found any message.
If I add "ExecCGI" I get a "500 Internal Error" message, with this
line on the err
Hi.
Using Apache2 on Linux, I get a "403 Forbidden" error only when I
access PHP files:
http://www.domain.com/foo/hello.php
but it works fine with HTML files
http://www.domain.com/foo/hello.html
In addition, PHP scripts work fine on root directory (outside Alias
directories):
http://www.domain.co
O_O You are right.
Thank you very much, Joshua. Some lines below I inserted a "Options
ExecCGI" line.
Enjoy your weekend
On Fri, Feb 22, 2008 at 7:23 PM, Joshua Slive <[EMAIL PROTECTED]> wrote:
>
> On Fri, Feb 22, 2008 at 1:11 PM, thomas Armstrong <[EMAIL PROTEC
> What does the apache error log say?
[Fri Feb 22 10:03:38 2008] [error] [client 103.160.51.28] Options
FollowSymLinks or SymLinksIfOwnerMatch is off
which implies that RewriteRule directive is forbidden:
/var/www/httpdocs/phpinfo.php
-
Hi.
I'm experiencing one problem with Apache2 on Linux. If
I insert a "RewriteEngine On" line in ".htaccess", webpages
return a "403 Forbidden Error".
I inserted these lines in 'httpd.conf':
Options Indexes FollowSymLinks
AllowOverride All
FCGIWrapper /var/www/httpdocs/bin/php
Hi.
Using Apache 2, I want to create a RewriteRule within the '.htaccess'
file which redirects from:
http://foo.com/directory
to
http://foo.com/directory/
This last "directory" is a RewriteRule:
--
RewriteRule ^([^/]+)/$ /directory.php?label=$1 [L]
-
I tried adding this line
On Dec 12, 2007 1:31 PM, Eric Covener <[EMAIL PROTECTED]> wrote:
> On Dec 12, 2007 7:18 AM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> > Hi.
> >
> > I created this .htaccess:
> > -
> > RewriteRule ^([^/]+)/$ /page.php?id=$1 [L]
> &g
Hi.
I created this .htaccess:
-
RewriteRule ^([^/]+)/$ /page.php?id=$1 [L]
---
And it works fine with:
http://domain.com/foo/ (it shows a webpage)
But it shows a 404 error page with:
http://domain.com/foo
I tried adding this line to .htaccess:
RewriteRule ^([^/]+)$ /page.php?id=$1
Hi.
Using Apache 2 on Linux, I suffer frequently this error message:
---
An error occurred while processing your request.
Reference #67.c7ec0f50.1295581330.24f1cb25
--
This is a blank page with the message.
Any similar experience?
Does it someting to do with Akamai service? (My cus
Hi.
Using Apache 2.0.52, I'd like to analyze the performance and know how
resources (memory, threads) are used during a period of time.
Do you know any tool to carry it out? Thank you very much.
-
The official User-To-User suppo
ssue much more quickly
>
>
> [1] Look here to find it if you dont know where it is -->
> http://wiki.apache.org/httpd/DistrosDefaultLayout
>
>
> Tony
>
>
>
>
>
>
> thomas Armstrong wrote:
> > Hi.
> >
> > Using Apache 2.0
Hi.
Using Apache 2.0 on Linux (with 'mod_alias' loaded), I want to set an alias:
/foo1/foo2/ --> /usr/www/example/foo2/
This is part of my 'httpd.conf':
---
DocumentRoot /usr/www/example/web
ServerName example.com
Alias /foo1/foo2/ /usr/www/example/foo2/
Options Indexes FollowSymLinks
How can I change the Content-Type of CGI scripts?
Hi.
Working with Apache 2.0 (on a customer's server and on my own server),
I've got a '500 Internal Server Error' with a CGI application. When
accessing 'http://customer_machine/test.cgi', Firefox tries to
download the error webpage.
But when acc
Thank you very much. it's fixed
On Nov 12, 2007 10:44 AM, Vincent Bray <[EMAIL PROTECTED]> wrote:
> On 12/11/2007, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> > If I access http://210.15.21.186/foo/uploader/hello.cgi, Apache downloads
> > it.
> >
> >
Hi.
Using Apache 2.0 on Linux, I'm trying to create a directory to execute
CGI scripts:
-
...
DocumentRoot "/home/project/web/"
...
Alias /foo/ /home/project/foo/web/
Options Indexes FollowSymLinks
Order Allow,Deny
Allow from all
AllowOverr
Hi.
Using Apache 2.0 on Linux (with 'mod_alias' loaded), I want to set an Alias:
/events/ --> /usr/www/myproject/newweb/modules/events/web/
This is part of my 'httpd.conf':
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /usr/www/myproject/
Hi.
I want to make http://mysite.com/post/004.htm -->
http://mysite.com/post.php?id=004
but not redirecting but masking the URL (the first URL must be shown
and not the second one).
My .httaccess:
--
RewriteEngine On
RewriteBase /
DirectoryIndex index.php index.html
Rewri
Thank you everybody.
However I'm still gettint the same odd effect. I tried:
RewriteRule ^faq index.php?page_id=119 [R,L] ---> it doesn't mask the URL
RewriteRule ^faq index.php?page_id=119 [R,TP] --> Internal server error
RewriteRule ^faq index.php?page_id=119 --> it's caught by index.php, I sup
How exactly isn't is working?
Instead of 'http://myblog.com/faq' URL I see
'http://myblog.com/index.php?page_id=379'. The information is OK, but
I think it's an ugly URL.
Do you see a loop?
Nope
What does the error log tell you?
There's no error
Are you able to edit the main server config
Hi.
I'm trying to create an additional Rewrite Rule appart from those
created by default by my application (in this case, Wordpress). The
extra line (within '.htaccess') is:
---
RewriteRule ^faq index.php?page_id=119 [R,L]
---
However, I want users see 'http://myblog.com/faq' and not
'ht
Yep, I agree it's better using RewriteRules within httpd.conf but...
I'm not allowed with this server :(
Is it possible to use RewriteLog within '.htaccess'?
Thank you very much for your answer.
On 5/26/07, Joshua Slive <[EMAIL PROTECTED]> wrote:
On 5/25/07, thomas A
I'm trying to make my website works with http://www.domain.com/2007/05/25/foo
to server http://www.domain.com/redirect.php
With Apache 2.2, my .htaccess:
RewriteEngine On
RewriteRule ^([0-9]+)/([0-9]+)/([0-9]+)/(.*) /redirect.php [QSA,L]
RewriteRule ^([0-9]+)/([0-9]+)
I fixed it by restarting Apache, but I'd like to know the reason of this error.
On 4/24/07, thomas Armstrong <[EMAIL PROTECTED]> wrote:
Hi.
Using Apache 2.0.52 + PHP 4.3.10 on Linux (Fedora Core 2), I get this
error message when accesing my PHP page:
---
Service Unavail
Hi.
Using Apache 2.0.52 + PHP 4.3.10 on Linux (Fedora Core 2), I get this
error message when accesing my PHP page:
---
Service Unavailable - Zero size object
The server is temporarily unable to service your request. Please try
again later.
Reference #15.21eaaad4.1173400585.294a7ed8
--
Hi,
Using Apache 2.0.59 on Linux, I try to install a ScriptAlias.
My DocumentRoot is '/home/project/web', and the ScriptAlias directive
within httpd.conf is:
-
ScriptAlias /videos/ /home/project/modules/videos/web/
AddHandler application/x-httpd-php .php
AddHandler text/css css
Sorry, it works ok. I failed to include the line in the
right place :(
Regards.
On 3/7/07, thomas Armstrong <[EMAIL PROTECTED]> wrote:
Hi,
Using Apache 2.0.59 on Linux, I try to install a ScriptAlias.
My DocumentRoot is '/home/project/web', and the ScriptAlias directive
with
Hi,
Using Apache 2.0.59 on Linux, I try to install a ScriptAlias.
My DocumentRoot is '/home/project/web', and the ScriptAlias directive
within httpd.conf is:
-
ScriptAlias /videos/ /home/project/modules/videos/web/
AddHandler application/x-httpd-php .php
AddHandler text/css
Hi.
Using Apache 2.0.59, I want to create a new RewriteRule outside the
DocumentRoot and modified my 'httpd.conf':
--
DocumentRoot /home/project/web
ServerName mydomain
ScriptAlias /foo/ /home/project/modules/foo/web
AddHandler application/x-
Easier (within httpd.conf):
AddHandler application/x-httpd-php .php
---
Thank you very much anyway!
On 2/22/07, Eric Covener <[EMAIL PROTECTED]> wrote:
On 2/22/07, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> 51a8:1409:18d7:afbf:20df:9300
Hi.
One colleague claims that if we set "AllowOverride All" within our
httpd.conf, the performance of Apache (we use 2.0.59) is damaged.
Is this true? Any suggestion is welcome.
-
The official User-To-User support forum of the
Hi,
Using Apache 2.0.59 on Linux, I try to install a ScriptAlias.
My DocumentRoot is '/home/project/web', and the ScriptAlias directive
within httpd.conf is:
-
ScriptAlias /videos/ /home/project/modules/videos/web/
-
But when accessing with my web-browser to
'http://foo/videos/test.php'
Hi.
Using Apache 2.0.51, I've got a VirtualHost 'mydomain.com' mounted on:
'/var/www/mydomain/'
Within this directory, I've got another directory ('test'), and within it
one symbolic link:
/var/www/mydomain/test/images -> /var/www/mydomain/dir/common_images/
--
If I make 'images' owner be '
Fixed.
I changed /var/www/mydomain/dir/common_images/ owner to 'apache.apache' and
it works now.
Thank you very much, anyway :)
On 2/2/07, thomas Armstrong <[EMAIL PROTECTED]> wrote:
Hi.
Using Apache 2.0.51, I've got a VirtualHost 'mydomain.com' mounted on:
Hi.
I want to use UTF-8 on Apache 2.0.59, and I configured 'httpd.conf' to use:
-
AddDefaultCharset utf-8
-
I don't know if it's correct, since I'm still suffering some
special-chars problems (perhaps due to other issues).
Thank you very much.
--
Ooops... it's on the F* Manual :)
http://httpd.apache.org/docs/2.0/mod/mod_access.html
On 1/15/07, thomas Armstrong <[EMAIL PROTECTED]> wrote:
Hi.
Using Apache 2, I'm trying not to allow accesses from fodomain.com, but this
domain changes its IP address each day.
Can
Hi.
Using Apache 2, I'm trying not to allow accesses from fodomain.com, but this
domain changes its IP address each day.
Can I use:
Deny from foodomain.com
?
I changed my httpd.conf but I don't wether it's working or not :(
Regards,
--T
Yep, Sander, it works!
./configure --with-apxs=/usr/local/httpd/bin/apxs
--with-apr=/usr/local/apr-httpd/bin/apr-config
--with-apr-util=/usr/local/apr-util-httpd/bin/apu-config
On 12/21/06, Sander Temme <[EMAIL PROTECTED]> wrote:
On Dec 21, 2006, at 4:57 AM, thomas Armstrong wrote
Hi Stefan. It works!
Thank you very much!
On 12/21/06, Stefan Schneider <[EMAIL PROTECTED]> wrote:
Hi Thomas,
> Using Apache 2.0.59 on Linux FC6, I'd like not to generate error_log
"ErrorLog /dev/null"
Does the trick here :)
Cheers,
Stefan
--
Hi.
I compiled from sources Apache 2.0.59 with APR 0.9.13
./configure --prefix=/usr/local/httpd --enable-so --enable-modules=all
--with-apr=/usr/local/apr-httpd/bin/apr-config
--with-apr-util=/usr/local/apr-util-httpd/bin/apu-config
It works ok aparently, but I'm now trying to compile subversion
Hi.
Using Apache 2.0.59 on Linux FC6, I'd like not to generate error_log
file (it contains
lots of PHP warnings).
*) Within 'httpd.conf', I remove all references to ErrorLog
*) Within 'php.ini' I set: log_errors = Off
*) I restarted 'httpd'
But my webserver is still generating a *big-size* erro
[]# yum info mod_dav_svn
Name : mod_dav_svn
Arch : i386
Version: 1.4.2
Release: 2.fc6
Size : 135 k
Repo : installed
-
On 12/20/06, thomas Armstrong <[EMAIL PROTECTED]> wrote:
where can I find the mod_dav_svn.so for FC6?
On 12/20/06, Richard de
where can I find the mod_dav_svn.so for FC6?
On 12/20/06, Richard de Vries <[EMAIL PROTECTED]> wrote:
Or perhaps this .so got pulled from a different OS?
It's been a while, but I think I got a similiar error
when I accidentely tried using a .so compiled for
linux on a solaris box. (Don't ask how
Mmm.. I don't know, Joshua. I installed it by using Yum:
[]# yum install mod_dav_svn
I suppose I could get the right version if I build it from sources, right?
Thank you very much,
--Thomas
On 12/20/06, Joshua Slive <[EMAIL PROTECTED]> wrote:
On 12/20/06, thomas Armstrong <[E
Hi.
Using Apache 2.0.59 on Linux FC6, I want to install 'mod_dav_svn'. I've got:
/usr/lib/httpd/modules/mod_dav_svn.so
So I inserted within 'httpd.conf':
LoadModule dav_svn_module /usr/lib/httpd/modules/mod_dav_svn.so
But I get this error message when restarting Apache:
-
Hi.
Working with Apache 2 on Linux, I'm trying to make server accept also
'mydomain.com'
petitions (www.mydomain.com works fine).
Within my httdp.conf, I've got:
-
ServerName mydomain.com:80
ServerAlias www.mydomain.com
UseCanonicalName Off
DocumentRoot /v
Thanks.
2 min and 2 seconds! O_O
On 11/28/06, Boyle Owen <[EMAIL PROTECTED]> wrote:
> -Original Message-
> From: thomas Armstrong [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 28, 2006 1:51 PM
> To: users@httpd.apache.org
> Subject: [EMAIL PROTECTED] Where
Hi.
Using Apache 2.0 on Linux, it doesn't start, and I'd like to find the
start|stop logs.
I want to browse start logs, not access logs. Apache is installed at
'/usr/local/httpd'
Thank you very much.
-
The official User-To-Use
Hi Nick. Thank you very much for your answer.
So what's the way to implement ESI-Akanai on my webserver? By using
PHP headers? I've got no idea :(
Regards,
--T
On 11/7/06, Nick Kew <[EMAIL PROTECTED]> wrote:
On Tue, 7 Nov 2006 18:25:34 +0100
"thomas Armstrong" <[E
Hi.
Using Apache 2, I'm trying to work with Edge Side Includes (ESI) in order to
Akamai my webpages:
http://www.akamai.com/html/support/esi.html
Does anybody know any module for Apache to execute this ESI markup
language?
Thank you very much,
--T
---
Hi
Working with Apache 2.0.52 on Linux, I created this logrotate
configuration file:
---
/usr/local/httpd/logs/*log {
missingok
notifempty
sharedscripts
postrotate
/bin/kill -USR1 `cat /usr/local/httpd/logs/httpd.pid
2>/dev/null` 2> /dev/null || true
endscript
}
Hi.
Just found this:
http://www.securitytracker.com/alerts/2005/Oct/1015093.html
A vulnerability was reported in the Apache httpd server (version 2.x).
A remote user may be
able to deny service. In certain situations after an aborted
connection, a remote user can
trigger a memory leak in some Mul
ddition:
[EMAIL PROTECTED] ~]# crontab -l -u john
MAILTO=""
00 2 * * * /home/john/backup/script_server_backup.sh
This shell script backups all DBs and WWW files.
I'm to investigate deeply...
2005/10/11, Herb Stein <[EMAIL PROTECTED]>:
>
> > -Original Message-
> &
Hi.
Using Apache/2.0.52 (Fedora), it crashes suddenly and I must restart
it.
I've found this error message on '/var/log/httpd/error_log':
[Sat Oct 08 02:01:57 2005] [notice] Graceful restart requested, doing
restart
[Sat Oct 08 02:02:00 2005] [notice] Digest: generating secret for
di
70 matches
Mail list logo