apache

ImportError: No module named django.core.handlers.wsgi in install django mod_wsgi config on apache

Hi, I tried to install django on my apache on mod_wsgi , I have this error : ImportError: No module named django.core.handlers.wsgi, I v read, may be it's some user problem... On console ssh, with root access no problem to access django.core.handlers.wsgi , but when apache ask to access it doesn't work... i need help Thx My django....

need to escape # (hash/pound) character in .htaccess rewrite rule

The question is fairly simple but I was not able to find an answer for hours now. What I need to do is: RewriteRule ([^#])#(.*) $1\%23$2 Which basically means I want to url escape the freaking hash sign which comes to me from an external codepiece. backslash (\) does not work to escape this sign... and please don't suggest using %23...

javascript running locally but not on apache

I'm using JSValidate to validate a form, the form gets validated correctly when I access it via File-> Open File, but not when I type localhost/formname on my address bar. When ran from localhost/formname the form behaves as if the Javascript weren't there. This doesn't happen in my apache server at home, yet it does happen at work. Wh...

Why would $_FILES be empty when uploading files to PHP?

I have WampServer 2 installed on my Windows 7 computer. I'm using Apache 2.2.11 and PHP 5.2.11. When I attempt to upload any file from a form, it seems to upload, but in PHP, the $_FILES array is empty. There is no file in the c:\wamp\tmp folder. I have configured PHP.INI to allow file uploads and such. The tmp folder has read/write...

Which technology should be used for serving large number of static files?

My main aim is to serve large number of XML files ( > 1bn each <1kb) via web server. Files can be considered as staic as those will be modified by external code, in relatively very low frequency (about 50k updates per day). Files will be requested in high frequency (>30 req/sec). Current suggestion from my team is to create a dedicated ...

Using TortoiseSVN adding 3Gb of file to Subversion and got error 413 Request Entity too large

Hi, Does anyone have a solution for the following error? We can not add a large file to Subversion. We are using Apache 2.2.16 and svnclient-win32-1.6.6 for Windows. Any information is greatly appreciated. ...

How to hide everything, but the site name?

For example: html://www.mysite.com/subdom/index.php?abc=1&def=2&ghi=3 to appear as: html://wwww.mysite.com/subdom/index.php or possibly: html://wwww.mysite.com/subdom/ ...

Could not open the requested SVN filesystem

I just follow instruction from http://serk01.wordpress.com/2008/09/21/how-to-create-your-own-home-svn-repository-with-xamppapache/ about creating svn repo with xampp/apache. Everything runs well except when I access http://localhost/svn it show error message. When I view source, this is the error: <?xml version="1.0" encoding="utf-8"?>...

Mac apache problem

I run apache on a mac. My document root folder is /Library/WebServer/Documents. When I create new subfolder under Documents folder I can't load images from that subfolder. My html file under /Library/WebServer/Documents/test is: <html> <body> <h1>Test</h1> <img src="http://localhost/test/angry.gif"/&gt; </body> </html> The angry.gif ...

Very basic rewrite-rule question

I have this url: http://www.mydomain.com/index.html And want a rule to rewrite the above into this: http://www.mydomain.com In other words, remove the index.html part of the code... Something like this maybe: RewriteRule ^$ index.html [NC] Thanks UPDATE: When you type www.domain.com into the browser, offcourse index.html ...

How to backup a Solr database to a file?

I have very little information about this, and there isn't much on the web. Does any experienced know how to dump the solr database (index) to a file. I have a Virtual Private Server, where all files are backed up automatically by the provider of the VPS at midnight every day. So, I need to export the Solr index to a file. And IF some...

C++ Apache API: How to programmatically update apache settings?

This is a nice article about setting up Apache virtual hosts on Debian. Now, I would like to be able to do so programmatically, from within my C++ application. What do I need to know to do so? Sub questions: What tool can I use to parse, read and write the apache config grammar? Is there an API or header I could use to that ...

Load random CSS on page refresh

I was wondering whats the best way to call a random css file on page refresh with Javascript? Many thanks ...

Conditional SSI Based on URI

I am redoing the navigation bar that is included several dozen of my site's pages. One of the changes that I want to make is to vary the content that is included, based on the page that the user is on. Thus my plan is basically to have the file that is currently included everywhere act as a selector to decide which actual file(s) to incl...

Premature end of script headers: php5 Symfony produces internal server error 500

Hello Stack Overflowers, I am running into an issue that is leaving me in a dead end so in turn, I turn to you! Recently a Symfony app has been going down rendering an internal apache error -500. After deleting the Symfony cache the site comes back up. Upon some further investigating I have found the error of "Premature end of script...

DNS and apache relation

when I hit the URL say wget yahoo.com. What all steps take place from the time I hit ENTER till I get the webpage. This is with Solaris machine having Apache webserver and DNS configured . I want to know how does the DNS and apache interact to display the webpage. ...

Can't import PyObjC CoreData module when using mod_wsgi with Apache

Just ported a webapp from TurboGears to Django and going through the process of getting a proper server running (i.e. not runserver). Tried going the recommended Apache + mod_wsgi route that the Django docs talk about, but for some reason the thread stalls out with no error message or anything as soon as you try to import CoreData anywh...

How to edit remote files on an Apache server with Android application.

I need my app to be able to go to a specified URL and access a file, then insert text at a specific line of said file. Is this at all possible? I greatly appreciate your help and responses, Thanks. ...

Using Apache Server-side Flow Control in PHP?

As discussed a bit in this question, I am using Apache mod_include with conditional flow control statements to alter the behavior of included shtml files depending on the URL of the parent page. The problem I'm having is that some of the pages on the site are PHP pages, which seems to mean that the mod_include directives are ignored (and...

Logging in DBCP

I'm using Apache Commons DBCP. There is a task to track the inner behavior of the DBCP - number of active and idle connections. I found out that DBCP lacks any such logging at all. Yes, tt is possible to write the code that outputs the status of the BasicDataSource when connection is borrowed from the pool. However there is no way to t...