The Apache HTTP Server is an Open Source Web server, which originated from a series of patches to the NCSA HTTPd. Apache is the world's most popular Web server, which is run on 54.90% of all Web servers according to the Netcraft survey conducted July 2010.

learn more… | top users | synonyms

2
votes
3answers
554 views

Why is a # sign added to the end of URLS?

Note: I'm asking this from the perspective of the site developers (trying to help someone there). not as a user. Please don't forward this to superuser.com. It's a server admin question. Have a look ...
6
votes
6answers
140 views

access to site owner not working

I made a website it works for everyone except for the site owner, who cannot access the site. He gets a server could not be found error. I went to his house and the issue occurs for all of his devices ...
0
votes
2answers
265 views

help redirecting IP address

Google has indexed the IP address of my site rather than the domain, so now I'm trying to set up a 301 redirect that will redirect the IP address and all subsequent pages to the domain. I currently ...
17
votes
7answers
22k views

What is the best Apache logs Analyzer?

What real-time log analyzer can you suggest for Apache access and error logs? There is a list of web analytics software on wikipedia, but it would be great to hear opinions from people with ...
0
votes
1answer
115 views

My website directories downloads instead of actually opening up from browser [closed]

I added some screencast to show what I am having issues with http://screencast.com/t/212t3ANINqk http://screencast.com/t/bR44U1wkvNZl http://screencast.com/t/iDS7APYYsa but the page downloads my ...
2
votes
1answer
119 views

http request terminating early

I noticed that on some of my sites, images were occasionally not getting downloaded fully. After a bit of investigation it appears that it is not restricted to images - .css, .js etc were also ...
2
votes
1answer
380 views

Apache Server-Side Includes Refuse to Work (Tried everything in the docs but still no joy) [closed]

Trying to get apache server-side includes to work. Really simple - just want to include a footer on each page. Apache 2.2: # ./httpd -v Server version: Apache/2.2.21 (Unix) Server built: Dec 4 ...
0
votes
1answer
423 views

How to use different php.ini files for different VirtualHosts?

I have my site and it's staging subdomain running on the same CentOS machine running apache. The subdomain is created using a VirtualHost, and I use it to find any bugs before I push to production. I ...
1
vote
1answer
135 views

Getting fingerprint from Apache certificate (combined with key)

I have just created a certificate for my Apache SSL host using: make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/ssl/private/myhost.crt Now what is the correct way to get the fingerprint out of ...
1
vote
1answer
328 views

Subdomains on WampServer

I'm working on WampServer for development, I've set up the domain tuniguide.local and it works fine with this configuration: DocumentRoot "D:\www\tuniguide" ServerName tuniguide.local But when I ...
0
votes
1answer
512 views

How to serve WAMP website over internet? [duplicate]

Possible Duplicate: Is it feasible to run a public-facing website from my home network? I have just installed a portable WAMP (EasyPHP) in order to test a website. I can access the site ...
0
votes
0answers
56 views

How can I benchmark my servers network speed? [closed]

I´ve rented a server online and i wonder how to check the bandwidth possibilities of my rented server. My problem is that I only own a 16.000 kbit/s internet connection and i want to know if it is ...
1
vote
3answers
325 views

Interpretation of empty User-agent

How should I interpret a empty User-agent? I have some custom analytics code and that code has to analyze only human traffic. I have got a working list of User-agents denoting human traffic, and bot ...
3
votes
1answer
171 views

URL rewriting via forward proxy

I have an app that runs inside my firewall and talks out to multiple end points via HTTP/HTTPS on a non-standard port e.g. http://endpoint1.domain.com:7171, http://endpoint2.domain.com:7171 What I ...
1
vote
2answers
35 views

Blocking path scanning

I'm seeing in my access log a number of request very suspicious: /i /im /imaa /imag /image /images /images/d /images/di /images/dis They part from a known resource (in the above example ...
0
votes
0answers
111 views

multiple godaddy domains to home router then reverse proxy to multiple internal servers [closed]

I need someone to steer me correctly... advising on all required components. I have multiple domains with godaddy, say site1.com , site2.com, site3.net I have multiple home LAMP servers... one on ...
5
votes
3answers
9k views

How to remove trailing slashes from URL with .htaccess?

The situation Across the entire domain, we'd like the URLs to hide file extensions and remove trailing slashes, independent of the domain name itself (as in, works on any domain). Sample of our ...
1
vote
2answers
3k views

how can I change cpanel default page to index.php / index.html

I have created a new domain and uploaded index.html to public directory. but it isnt displaying and cpanel default page is displaying instead. how can I change the same??
3
votes
1answer
126 views

Subdomain In Addon Domain Is Not Working

I added a new addon domain to my cPanel hosting. With the new added addon domain, I try to make some subdomain of it. But, the subdomain is not working like subfolder does. This is my situation: ...
1
vote
2answers
600 views

How to identify the client is a search robot?

I have built my entire site using AJAX (indeed it's GWT). I have also implemented AJAX crawling proposed by Google. However, after the implementation, I found that neither Yahoo , Bing, nor Baidu ...
2
votes
1answer
88 views

Stop Apache serving filetypes

Preferably using .htaccess files, though .conf files are an option, is there any way to stop Apache serving certain filetypes? For example, .db shouldn't be served for obvious reason (privacy and ...
0
votes
3answers
310 views

Make Apache treat ASPX as html

I've swapped from ASP.NET to .PHP for cost reasons. As such, I want the people to be redirected from .ASPX to its equivalent .PHP. If I create the .aspx with HTML, the file is simply displayed in ...
2
votes
1answer
172 views

Apache2 Unwantingly Allowing Proxy Requests

I'm not sure if this is the right location, but this is fairly urgent. I have completely removed all traces of mod_proxy and the other mod_proxy mods, although the Apache server continues to allow ...
0
votes
0answers
106 views

apache virtual host concept and dns [closed]

I want to have around 60 repositories of projects and I want to serve them from a dedicated remote server(ubuntu) with the help of mercurial server so that all my developers will be able to update ...
3
votes
1answer
129 views

The concept of virtual host and DNS

I have a dedicated server and a mydomain.com (bought from a hosting company). I want to host a website from my dedicated server with the domain mydomain.com i.e. when I enter mydomain.com from browser ...
1
vote
1answer
113 views

Apache URL Rewrite

I'm trying and failing to get a URL rewrite working, firstly I'm doing it in the vhost declaration, is that right? What I'm trying to do is take any URL which has; view.php?id=[a 1 or multidigit ...
0
votes
0answers
114 views

Subdomain redirect to WWW

I have the domain example.com and the test.example.com running on apache server. For some reason when I try to visit test.example it is redirected to www.test.example and by consequence a Server not ...
6
votes
3answers
2k views

Where do I create the file .htaccess, in order to serve my HTML5 cache manifest file correctly?

From a post on http://diveintohtml5.org/offline.html (Wayback Machine Copy) Your cache manifest file can be located anywhere on your web server, but it must be served with the content type ...
1
vote
1answer
85 views

Deploy Static web Content : Apache Server

What are some of the ways to deploy static web content in Apache server directly from an IDE say Netbeans?
0
votes
0answers
10 views

Purchasing web hosting for PHP + PostgreSQL + Apache [duplicate]

Possible Duplicate: How to find web hosting that meets my requirements? thought of posting here since I know folks here are much experience in this. I spent my overnight finding some web ...
0
votes
2answers
5k views

MacOSX VirtualHost: “You don't have permission to access / on this server” error [closed]

The Apache installation of MacOSX is running OK. I have tried to create a VirtualHost called test.local, but as soon as I uncomment from /private/etc/apache2/httpd.conf the line Include ...
2
votes
1answer
334 views

Virtual Host under MacOSX not working

I have setup a virtualhost for MacOSX Apache installation. These are my steps: edit /private/etc/apache2/httpd.conf removing comment from: Include /private/etc/apache2/extra/httpd-vhosts.conf ...
0
votes
0answers
15 views

Using an Apache server to host the site to the world [duplicate]

Possible Duplicate: What things required to host a website at home Instead of getting a domain name (ex. www.google.com), I want to host my site on my mac using Xampp control and have the ...
0
votes
2answers
163 views

How can I make a site with 1.300.000 pages?

Yeah I know, it's not a joke.....I really need some advice on how I could create a web site which could handle 1.300.000 ref. or more Currently I'm running a dedicated server with 2mo ram and 1.6 ...
4
votes
1answer
117 views

Apache create index for directories without one specified.

Currently, I use a PHP script to list the contents of a directory that does not have an index file, but I don't want to have to copy it to every directory without an index. Can Apache do it ...
3
votes
1answer
67 views

Transferring local site to shared hosting

I'm looking to setup a simple online text processing tool similar to the Clang demo. The processing program itself is a C++ program which I can modify to provide the desired output I need. Since I use ...
2
votes
1answer
418 views

Help with 301 redirect from subdomain to root domain

I need to forward existing subdomain links to the root domain as the subdomain no longer exists. I have tried so many different lines of code in my .htaccess file and can not get the redirect to work. ...
7
votes
5answers
218 views

Tracking down memory issues affecting a website

I've got a website (Wordpress based) that became unresponsive. I SSH'd into the server and saw that we were out of memory. Errors in my apache log files indicated the same... things failing to be ...
0
votes
0answers
64 views

Configuring PHP Scripts To Accept any User and Group Permissions [closed]

A client I'm doing some PHP work for has a virtual private server set up to host his website. The server admin has made every folder starting from root be non-group-writable and owned by ...
5
votes
4answers
122 views

WebHosting solutions allowing self-made Apache modules [duplicate]

Possible Duplicate: How to find web hosting that meets my requirements? I am searching for a web hosting solution that would allow me to use my own Apache modules written in C. Have you ...
2
votes
1answer
80 views

Should I upgrade from Apache 1.3.x to 2.x?

We are in the middle of setting up a new container to migrate our ever growing web app onto. Primarily to satisfy a security audit, but also to catch up and implement missing/outdated security. The ...
0
votes
0answers
127 views

Downloading from Apache with Android handsets

I've an Apache server running on Windows, and seem to be unable to download any files from it to my Android phones. From a very basic default directory listing from apache, saving a link always ...
3
votes
2answers
2k views

Enable gzip compression on Bluehost?

My website is loading large (~3mb) SVG file with jQuery. It takes quite a while therefore I decided to enable gzip compression. I have a hosting account with Bluehost which supports custom .htaccess ...
0
votes
2answers
1k views

Amazon EC2: How do I create a subdomain on an instance?

I have apache2 and tomcat installed on Amazon ec2 instance running Ubuntu. tomcat is serving the application and I want to create subdomains for example.com and abc.example.com to serve to different ...
3
votes
1answer
151 views

Difficulty enabling caching on inherited site

I have been asked to work on a corporate website a previous employee had created. The site is on shared GoDaddy hosting. One of the first things I noticed (after the 140KB JPEG on the front page, ...
0
votes
1answer
94 views

Do Apache virtual hosts perform better when listening to different ports?

I plan to use mod_proxy to route requests to Apache virtual hosts based on the URL. example.com/foo/x is routed to foo.example.com/x, example.com/bar/x is routed to bar.example.com/x, etc. Are there ...
0
votes
1answer
129 views

How to silently auto-load from a subdirectory, but allow internal paths to think the file is located at site root?

I have files in my site root, and also files in its "Iternet_IE" directory. I need to: 1.) be able to call/include other files (e.g. headers or footers) from within files at either of those ...
0
votes
1answer
217 views

Apache: how to create subdomain on name-based virtualhost?

i have name-based hosting, lets name it my.address.com - my friend have 'white' ip -address.com and gave me virtual machine than i can access via ssh, also, he made some magic with ports and now after ...
1
vote
1answer
206 views

conditional DirectoryIndex based on IP address, using .htaccess

I've got this in httpd.conf: <VirtualHost xx.xxx.xx.xxx> Options All +ExecCGI ServerAdmin hostmaster@thehost.com DocumentRoot /var/www/html/domain.com ServerName dl.domain.org ...
0
votes
1answer
138 views

Using modproxy to get around China's Great Firewall

I'm using WIX service and I like it very much. However, one big problem is that some of my colleagues are in China but their IP is blocked. I'm wondering if modproxy can help me. I would like to ...

1 3 4 5 6 7 10