You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Joshua Slive <jo...@slive.ca> on 2002/03/31 21:09:39 UTC

Re: advertisment pop up windows in apache

On Sun, 31 Mar 2002, Charles Williams wrote:

> Hey all,
>
> I have a slight situation that I was asked to look into by my boss.  It
> seems that he wants to be able to offer our customers a chance to get thier
> sites a bit cheaper by allowing us to pop up an extra window with a banner
> for our services.

Ewww ;-)

>
> I was thinking that with the amount of users that we have that it would be
> easier if I could somehow do this in the httpd.conf config.  Has anyone ever
> done this and if so what was your solution?

I haven't done it personally, but obviously this will involve shoving some
additional code into all the html pages sent by the server.
See:
http://httpd.apache.org/docs/misc/FAQ.html#footer
(You'll want stuff in the header, rather than footer, but it is the same
technique.)

I've heard relatively good things about mod_layout:
http://software.tangent.org/faqs/mod_layout.html

Joshua.




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Error log customization

Posted by Soheil Shaghaghi <so...@jhanna.com>.
Hello everyone,
I have a few programs that keep generating errors. The errors are useless to
me, and since I constantly monitor the error log files to fix problems, I
want to eliminate these errors to get written to the files.
Can anyone please tell me how to do this?
For example, one of the errors I want to eliminate looks like this:

File does not exist: /home/site/web/register/applet/a/aBeanInfo.class

Thanks so much,
Soheil


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


OPTIONS request to Apache : question

Posted by Olivier Le Cam <ol...@ac-versailles.fr>.
Hi folks,

When I send an OPTIONS request to Apache I always receive this :

HTTP/1.1 200 OK
Date: Wed, 27 Mar 2002 12:06:12 GMT
Server: Apache
Content-Length: 0
Allow: GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, PATCH,
PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK, TRACE
Connection: close

What can I do to only display that only GET, HEAD and OPTIONS methods are 
allowed ? I tried to write the following setting in my httpd.conf but I 
still receive the same :

<Directory "/home/apache/htdocs">
     Options Indexes FollowSymLinks MultiViews
     AllowOverride AuthConfig Limit
     <Limit GET POST OPTIONS>
         Order allow,deny
         Allow from all
     </Limit>
     <LimitExcept GET POST OPTIONS>
         Order deny,allow
         Deny from all
     </LimitExcept>
</Directory>

Any idea ?

Thanks,
-- 
Olivier Le Cam
clg de Domont, 95
France


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org