The Apache HTTP Server, commonly referred to as Apache, is an open-source HTTP server for modern operating systems including UNIX, its variants and Windows. Apache is a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
0
votes
1answer
4 views
Apache - Find the number of requests for a file
So here's the problem: I want to find out how many times a certain file(or files) has been viewed(or downloaded).
Can I get this kind of info from the apache logs, and if yes how?
0
votes
1answer
10 views
How to stop running tomcat using batch file?
I have installed tomcat 6 using tomcat6.exe file.
From the location, am able to run tomcat by double clicking on Tomcat6.exe
C:\Program Files\Apache Software Foundation\Tomcat 6.0\bin
I just ...
0
votes
0answers
12 views
Calculate download quota usage for a folder
I have a folder in my web server, on this folder I have many files.
I want limit access to this folder, so I use "HTTP authentication with PHP" and mysql, now I want track download quota and store ...
0
votes
0answers
6 views
Creating directories for log and cgi files on virtual host
I have to create directories for log and cgi files within the each site I'm hosting. When I run XAMPP's Apache server with below provided code of httpd-vhosts.conf file I get message:
1:23:14 PM ...
0
votes
1answer
5 views
URL rewriting using .htaccess - 404 error
I've set up a LAMP stack on my Raspberry Pi as a development environment for my website.
I am trying to implement URL rewriting to make my URLs prettier, but it doesn't seem to be working.
I have ...
0
votes
0answers
5 views
CodeIgniter NGINX Rewrite
I used the nginx configuration for vhosts. Please take a look at the pastebin
http://pastebin.com/PNh8iMbu
and in .htaccess:
http://pastebin.com/6TkViV2Y
Most of things are working fine but the ...
0
votes
1answer
12 views
Python CGI script - 500 error
I have python CGI script that runs perfect on my local Apache 2.2.22 server. It outputs correct result and so on. But when I try to execute it on virtual hosting, there is error 500.
I really have no ...
1
vote
1answer
22 views
.htaccess difficulties with directory
I want to following url :
nl/provincies/Limburg/plaats/#CITY#
for example :
nl/provincies/Limburg/plaats/Amsterdam
To be rewriten to section.php?sid=plaatsen$plaats=#CITY#
Ofcourse this is not so ...
0
votes
1answer
11 views
When run JSF demo page the server page shows 404 error
I am new to JSF and trying to run a demo project. Its just a simple hello world in <head> and <body> contains the <h:outputlabel value="My first JSF page">. When I try to run it the ...
2
votes
0answers
16 views
DSO breaks my php code
I just requested from my hosting company that APC be installed, after which they told me they'd have to switch the PHP handler from suPHP to DSO + modruid2 or FastCGI, I opted for DSO.
But now my ...
2
votes
0answers
14 views
Authentication plack/PSGI app on the reverse proxy
Have a scenario:
So,
requests via enctypted HTTPS going to Apache like: https://server1/MyPerlApp
If the user is not logged in, get a redirect to some login page (in the server1), so the Apache ...
1
vote
1answer
13 views
running Apache + Bottle + Python
Ok so i'm trying to run Python with Bottle.py, thru Apache and mod_wsgi, and it doesn't work so far...
I'm running it on windows, using a xampp. python v2.7
the code i added to httpd(Apache config):
...
2
votes
1answer
22 views
URL Rewrite not working for shared hosting
I have a very simple site to test url rewrite on my online host, because my original application worked fine on my local WampServer but didn't work with my online host.
here is my code:
index.php:
...
1
vote
1answer
2k views
Apache: how to hide server version and operation system from users?
I've read on one site that I need to add two lines to httpd.conf file:
ServerSignature Off
ServerTokens Prod
But when I've added them nothing changed. As previously I can see in my browser
...
5
votes
4answers
2k views
How to use C++ for apache server
We can integrate php, perl, python with apache and build sites in them.
Is it also possible to use C/C++ with apache and build web sites in it?