Tagged Questions

The Apache Software Foundation was formed in 1999 in order to promote & support the activities of the Apache community of open-source software projects. Apache itself was formed in 1994 by eight developers working on the (now legendary) Apache http daemon. Offering a free fully interoperable http server running on cheap Linux boxes - the Apache httpd project is linked with the phenomenal growth of the World Wide Web in the late 1990s.

learn more… | top users | synonyms

90
votes
15answers
48k views

Apache vs nginx vs lighttpd? Which is simpler to configure and administer?

Apache vs nginx vs lighttpd? Which is simpler to configure and administer? A bit more context, in case this question is too general: the uses I have in mind are running Django and serving static ...
56
votes
9answers
6k views

UTF-8 all the way through

I'm setting up a new server, and want to support UTF-8 fully in my web application. I have tried in the past on existing servers and always seem to end up having to fall back to ISO-8859-1. Where ...
48
votes
6answers
5k views

Hidden features of mod_rewrite

There seem to be a decent number of mod_rewrite threads floating around lately with a bit of confusion over how certain aspects of it work. As a result I've compiled a few notes on common ...
48
votes
4answers
12k views

How Python web frameworks, WSGI and CGI fit together

I have a Bluehost account where I can run Python scripts as CGI. I guess it's the simplest CGI, because to run I have to define the following in .htaccess: Options +ExecCGI AddType text/html py ...
46
votes
14answers
53k views

Debug message “Resource interpreted as other but transferred with MIME type application/javascript”

OK, I understand what the messages means, but I'm really not sure what's causing it. I'm using Safari and the Web Inspector on Mac OS X, by the way. I've got the following in my document head: ...
42
votes
12answers
48k views

Generic htaccess redirect www to non-www

I would like to redirect www.example.com to example.com. The following htaccess code makes this happen: RewriteCond %{HTTP_HOST} ^www\.example\.com [NC] RewriteRule ^(.*)$ http://example.com/$1 ...
41
votes
4answers
2k views

So eclipse and xdebug walk into a bar, and then my apache server dies

I am using windows xp x86, wamp, apache2, php 5.3 x86, eclipse php, and xdebug, running on localhost as both a virtualhost and an https virtualhost eclipse version info Eclipse for PHP Developers ...
41
votes
4answers
17k views

HTTP_HOST vs. SERVER_NAME

When would you consider using one over the other and why?
41
votes
11answers
33k views

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost. The idea is that as I develop multiple sites, I can just add vhosts to Apache called ...
39
votes
35answers
2k views

How can I detect and survive being “Slashdotted”?

What's a good way to survive abnormally high traffic spikes? My thought is that at some trigger, my website should temporarily switch into a "low bandwidth" mode: switch to basic HTML pages, minimal ...
32
votes
8answers
25k views

Does PHP have threading?

I found this PECL package called threads, but there is not a release yet. And nothing is coming up on the PHP website.
31
votes
10answers
856 views

Storing PHP(/PHP-FPM/Apache)'s temporary-from-upload files in RAM rather than the filesystem (or encrypted only)?

Thread overview I can unfortunately only accept one answer - but to anyone reading this, the entire thread is extremely valuable and contains the collective insights of many people. Depending on what ...
27
votes
4answers
12k views

In production, Apache + mod_wsgi or Nginx + mod_wsgi?

What to use for a medium to large python WSGI application, Apache + mod_wsgi or Nginx + mod_wsgi? Which combination will need more memory and CPU time? Which one is faster? Which is known for being ...
26
votes
11answers
10k views

Adding REST to Django — Poll

I've got a Django application that works nicely. I'm adding REST services. I'm looking for some additional input on my REST strategy. Here are some examples of things I'm wringing my hands over. ...
25
votes
5answers
841 views

“How the sausage is made” tour of apache/php/mysql interaction

I am having trouble understanding how apache/php/mysql stack works on a low level (including interaction with the browser). Is there a good description somewhere (a book, a website, etc) that will ...
25
votes
8answers
29k views

Make XAMPP/Apache serve file outside of htdocs

Is it possible to configure xampp to serve up a file outside of the htdocs directory? For instance, say I have a file: C:\projects\transitCalculator\trunk\TransitCalculator.php and my xampp files ...
24
votes
16answers
29k views

XAMPP and WAMP in the LAMP, whats the best?

We have got loads of options for php + MySQL + Apache combo... Which is the best pack among these ? Lets confine our ideas to WAMP vs XAMPP, is there a better option to go for ? I created an online ...
23
votes
4answers
9k views

Mercurial push, abort: authorization failed

I'm having problems with pushing to mercurial repository: $ hg push pushing to https://user:***@hg.domain.com/X_repo searching for changes abort: authorization failed The same URL (with the same ...
22
votes
2answers
213 views

separate different version of a website

I want to make sure I want to optimize and make my site very easy to maintain for different version of my site. I have few version of my site: iphone/ipod/android etc... ipad/tablets etc... other ...
22
votes
13answers
2k views

Easiest way to simulate no free disk space situation?

I need to test my web app in a scenario where there’s no disk space remaining, i.e. I cannot write any more files. But I don’t want to fill my hard drive with junk just to make sure there’s really no ...
22
votes
1answer
2k views

.NET XMPP libraries under Apache, MIT or MS-PL licenses?

I am looking for a liberally licensed (MIT, X11, Apache, etc) version of the XMPP protocol for .NET and Mono. There are a handful of libraries under the GPL, LGPL and LGPL v2 for .NET and Mono, but ...
21
votes
7answers
216 views

Slow cronjobs on Cent OS 5

I have 1 cronjob that runs every 60 minutes but for some reason, recently, it is running slow. Env: centos5 + apache2 + mysql5.5 + php 5.3.3 / raid 10/10k HDD / 16gig ram / 4 xeon processor Here's ...
21
votes
4answers
26k views

SVN - Permission Denied

I have set up a Linux Server and installed Apache and SVN and dav_svn on it. Now, when I try to upload to https://x.x.x.x:x/svn/repo with Tortoise SVN I get Can't open file ...
20
votes
4answers
15k views

apache to tomcat: mod_jk vs mod_proxy

What are the advantages and disadvantages of using *mod_jk* and *mod_proxy* for fronting a tomcat instance with apache? I've been using mod_jk in production for years but I've heard that it's "the ...
20
votes
7answers
9k views

Why use deflate instead of gzip for text files served by Apache?

What advantages do either method offer for html, css and javascript files served by a LAMP server. Are there better alternatives? The server provides information to a map application using Json, so a ...
20
votes
13answers
109k views

ssl_error_rx_record_too_long and Apache SSL

I've got a customer trying to access one of my sites, and they keep getting this error > ssl_error_rx_record_too_long They're getting this error on all browsers, all platforms. I can't reproduce the ...
19
votes
2answers
428 views

How do I host multiple MVC3 sites on a single virtual host running Apache2?

I'm trying to configure mod_mono with Apache2 on OSX. I would like to run multiple MVC3 projects on the same virtual host, but for some reason only the first one listed is working. Any help on this ...
19
votes
5answers
12k views

Finding out what user Apache is running as?

I want to secure a file upload directory on my server as described beautifully here, but I have one problem before I can follow these instructions. I don't know what user Apache is running as. I've ...
19
votes
1answer
4k views

Is there a way to make git remember the password for WebDAV remotes?

I'm working with Git pushing changes to a repository shared over HTTP / WebDAV, and Git prompts for a password for every operation that accesses the HTTP remote. Is there any way to make Git cache the ...
19
votes
5answers
9k views

How to prevent browser page caching in Rails

Ubuntu -> Apache -> Phusion Passenger -> Rails 2.3 The main part of my site reacts to your clicks. So, if you click on a link, it will send you on to the destination, and instantly regenerate your ...
19
votes
8answers
8k views

Deny access to .svn folders on Apache

We have a rails application in subversion that we deploy with Capistrano but have noticed that we can access the files in '/.svn', which presents a security concern. I wanted to know what the best ...
18
votes
5answers
5k views

How can I pre-compress files with mod_deflate in Apache 2.x?

I am serving all content through apache with Content-Encoding: zip but that compresses on the fly. A good amount of my content is static files on the disk. I want to gzip the files beforehand rather ...
18
votes
8answers
13k views

Best way to rotate Apache log files

I've got an Apache server that has one access log file that is topping 600MB. This makes it really hard to search the file or parse it. What software or modules for Apache are available that will ...
18
votes
12answers
5k views

Cleanest & Fastest server setup for Django

I'm about to deploy a mediumsized site powered by Django. I have a dedicated Ubuntu Server. I'm really confused over which serversoftware to use. So i thought to myself: why not ask stackoverflow. ...
17
votes
4answers
7k views

Can someone explain the ivy.xml dependency's conf attribute?

I can't find any thorough explanation of the ivy dependency tag's conf attribute: <dependency org="hibernate" name="hibernate" rev="3.1.3" conf="runtime, standalone -> runtime(*)"/> See ...
16
votes
4answers
3k views

Can I Replace Apache with Node.js?

I have a website running on CentOS using the usual suspects (Apache, MySQL, and PHP). Since the time this website was originally launched, it has evolved quite a bit and now I'd like to do fancier ...
16
votes
4answers
2k views

In a PHP / Apache / Linux context, why exactly is chmod 777 dangerous?

Inspired by the discussion in this question, a maybe stupid question. We have all been taught that leaving directories or files on Linux-based web hosting with the permission level of 777 is a bad ...
16
votes
9answers
11k views

Tux, Varnish or Squid?

We need a web content accelerator for static images to sit in front of our Apache web front end servers Our previous hosting partner used Tux with great success and I like the fact it's part of Red ...
15
votes
0answers
228 views

PyQT open a web page with JS alert pop up will get SegFault. How to fix that?

I am learning PyQT programing, and when I try a simple test, I get Segmentation fault, here is my code pop.py: #! /usr/bin/python import sys from PyQt4.QtGui import QApplication from PyQt4.QtCore ...
15
votes
2answers
1k views

Java XPath (Apache JAXP implementation) performance

NOTE: If you experience this issue as well, please upvote it on Apache JIRA: https://issues.apache.org/jira/browse/XALANJ-2540 I have come to an astonishing conclusion that this: Element e ...
15
votes
2answers
4k views

How to correct this error: “'Adminsite' object has no attribute 'root'”

The full error message is: AttributeError on running Django app on apache as localhost -- 'Adminsite' object has no attribute 'root' Environment: Request Method: GET Request URL: ...
15
votes
4answers
2k views

Capistrano to deploy rails application - how to handle long migrations?

So I am using Capistrano to deploy a rails application to my production server (apache+passenger) and at the moment deployment usually goes along the lines: $cap deploy $cap deploy:migrations It ...
15
votes
3answers
2k views

How do I throttle my site's API users?

The legitimate users of my site occasionally hammer the server with API requests that cause undesirable results. I want to institute a limit of no more than say one API call every 5 seconds or n calls ...
15
votes
7answers
11k views

What is apache's maximum url length?

What is the maximum length of a URL in apache? Where is it documented, and is it configurable? I'm implementing an openid identity provider, and would like to know the limitations I'm up against. I ...
15
votes
4answers
7k views

Django Apache/mod_python Admin CSS not appearing with admin tables

I have Windows XP/Django/apache/mod_python working on localhost. All parts are working with the exception of the admin CSS not rendering. The admin works, but no html formatting. I've made ...
15
votes
7answers
4k views

Running Django with FastCGI or with mod_python

which would you recommend? which is faster, reliable? apache mod_python or nginx/lighttpd FastCGI?
14
votes
2answers
228 views

Parse Apache log in PHP using preg_match

I need to save data in a table (for reporting, stats etc...) so a user can search by time, user agent etc. I have a script that runs every day that reads the Apache Log and then insert it in the ...
14
votes
6answers
5k views

What web server to use for Lua web development

What web server (and why) should I use for Lua web development?
14
votes
4answers
2k views

How do you Require Login for Media Files in Django

I'm serving "sensitive" information in downloadable PDF's and Spreadsheets within a user registration section of a site. Is there a way to allow the django authentication to secure this media without ...
14
votes
3answers
6k views

LGPL, MIT, or Apache - differences?

If I've got some code that I'd like to share and make open source. I'm not a lawyer. What are the big differences between these choices? LGPL - GNU Lesser General Public License MIT License ...

1 2 3 4 5 262