Tagged Questions
0
votes
1answer
151 views
HTTP Get not using Port
I am trying to call a page in PHP with a http_get :
$url = "http://mysite.fr:9090/neolane-webservice/campagnesclient/Coclico=1135446";
http_get($url, $appelOptions, $appelInfos);
My problem is that ...
0
votes
0answers
13 views
RewriteRule To Load Subdir as Subdomain
Is there a way to load a subdirectory as a subdomain via .htaccess or httpd.conf? I have a hard-coded EXE program that talks to our web server in a subdir. Now we want to migrate this to a cloud ...
0
votes
1answer
29 views
Apache domainname instead of IP
I'm not sure this is even a question to be asked here, but I'll give it a shot anyway.
So I have an ubuntu server, and I recently purchased a domainname.
Now I have forwarded the domain to my IP, ...
2
votes
1answer
45 views
Crawler adds parameter from url to links
I tried two different web crawler (Sistrix and http://ssitemap.com). Both crawlers report errors about duplicated content for URLs like / and /?katID=12.
It turns out that if the crawler calls the ...
0
votes
0answers
29 views
Forbidden response in large url
I need to generate a large url like this:
/backend.php/Inscription/export/1577,1578,1579,..., 1580 etc....
But when the URL has more than 400 IDs, I obtain the following error:
You don't have ...
0
votes
0answers
41 views
ImproperlyConfigured: Requested setting MIDDLEWARE_CLASSES, but settings are not configured
i am confuring the apache mod_wsgi to django project
and here is my djangotest.wsgi file
import os
import sys
sys.path = ['/home/pavan/djangoproject'] + sys.path
os.environ['DJANGO_SETTINS_MODULE'] ...
1
vote
0answers
120 views
Django Response always Chunked with text/html cannot set Content-Length
In my Django Application's views.py , I return an HttpResponse object after attempting to set the following HTTP Header fields:
# Create a Response Object with the content to return
response = ...
0
votes
1answer
54 views
How to PUT and POST image files to Apache2 using vhosts? (without PHP)
I want to simply POST and PUT image files to a server test.com, using apache2. This should result in storing the image file at the desired location. Lets say /srv/web/images/
What would be a working ...
0
votes
2answers
26 views
How to add an indication in order to distinguish between productive and development version to every page of an apache server?
I usually get confused when either the productive version or the development version of a web page is opened. For instance, I'm fooled when I edit the development code, being surprised that there are ...
0
votes
0answers
26 views
Can't download a file on a different device, using apache2 http server and ubuntu 12.10
I want to be able to download a file from my apache2 server, on another device, (my router). Currently, I'm able to download the file from a browser on my computer (locally), but I am unable to get it ...
0
votes
0answers
49 views
Still getting 304 with expires header
I'm using this .htaccess
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType image/x-icon "access plus 2692000 seconds"
ExpiresByType ...
-1
votes
2answers
49 views
Apache2 Setup Ubuntu
I'm having problems with setting up my apache2 server in Ubuntu.
I did a sudo apt-get install and it installed normally. I was able to see that the site was working when accessing localhost.
Then ...
0
votes
0answers
9 views
Apache http server and WS-standards
Can the apache http server support WS standards? Are there modules that I need to include in Apache for this? The reason I am asking is because I have a proprietary module in apache and now I need ...
1
vote
2answers
119 views
Redirect from secure https to http for only one page
I have a page, page.php that I need to be redirected to http if it is accessed through https because otherwise my google ads won't show up.
To be precise, I would like the following to happen:
...
3
votes
3answers
1k views
Why does apache not process multiple requests from the same browser simultaneously
I'm not quite sure how to phrase this question correctly, so I'll start with the scenario I encountered.
I have a bit of processing in my web app that takes longer than I'd like the user to wait to ...