Tagged Questions
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
0answers
4 views
Backend in python for iOS game
I'm learning python and mongodb and trying to build a backend for my online turn-based iOS game.
I've build backends with php before, and my question is where to begin with python?
Any good ...
0
votes
0answers
13 views
Cross Server image access [on hold]
i cannot access image from my site.
the source image is here http://www.pecintakomik.com/manga/mangas/Be%20Born%20Again/08/0015.jpg
and here is the results http://manggaku.com/test.php
i think the ...
0
votes
0answers
4 views
Combining Rewrite Rules - http to https AND all links to one file while maintaining clean URL
Over the past few days, I have read quite a few forums and StackOverflow answers on rewriting URLs in apache.conf and converting http to https using rewrites. Thanks to StackOverflow, I have figured ...
0
votes
2answers
18 views
Rewrite Engine with get perameters
Ok, I have a problem with my RewriteRule. Wenn I use an .htaccess like this:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteBase /YiiBund/app/
RewriteRule ^(.*)$ ...
0
votes
2answers
23 views
127.0.0.1 is working but localhost not working
I am using wamp for few years and i upgraded to windows 8 few months before, my wamp working smoothly up to yesterday. But now it can't be accessed using localhost. but when i trying 127.0.0.1 instead ...
0
votes
0answers
18 views
MVC3 on Mono/Apache serves only a blank page
My OS is Ubuntu 12.04.
With mono and all of its dependencies installed, at best I have only been able to get Apache2 to serve my project files as files, OR serve only a blank page.
I'm starting to ...
0
votes
1answer
12 views
how to delete access_log's content periodically & how to code “if (array=nothing) then…” in bash script
First, I want to delete access_log's content periodically every 5min (/var/log/httpd/access_log). Please tell me how to do that??
Second, in bash script, I define a array:
array=$(awk '{print $4}' ...
0
votes
1answer
13 views
ServletContextListner still executing on removal from deploymnet descriptor and project directory
I made a servletContextListener which was reading values from database and added it in the deployment descriptor.After testing i removed the servletContextListener file from projcet directory as well ...
0
votes
0answers
10 views
How to determine the size of a http response header?
I want to determine the size of the response header. I assume I could do so by subtracting the size of the response body from the combined size derived using Chrome DevTools.
From Chrome DevTools:
...
0
votes
1answer
15 views
.htaccess not working - Values Not Assigned Correctly?
I have recently started using apache, rather than nginx but my .htaccess will not work. Here is one example of my .htaccess:
RewriteRule ^activate2/(.*)/(.*)/(.*)$ ...
-1
votes
0answers
4 views
wordpress-heroku, how to set up local environment in Ubuntu?
I want to use wordpress on heroku, so I followed the instructions at https://github.com/mhoofman/wordpress-heroku.
I need to set up a local environment so that I can push updates to heroku (I'm ...
0
votes
1answer
12 views
node.js and apache on diffrent servers
I have node.js and socket.io on server A and lamp on server B. Server B is the website that runs everything that my sites need except I want server A to take care of the chat feature I have on server ...
0
votes
2answers
11 views
redirect url with query string to path, and url without query string must be internally rewritten
I've been trying and trying.
If one goes to:
www.domain.nl/vereniging
internally a page is requested from:
www.domain.nl/?p=vereniging
For that I use this:
RewriteCond %{QUERY_STRING} !(p=.*)$
...
0
votes
1answer
7 views
How to extend a simple RewriteRule
We are using the following rules to rewrite this:
http://ourdomain/dev/client/photolibrary-europe-paris
to this:
http://ourdomain/dev/client/photolibrary.php?katid=paris
and this:
...
0
votes
1answer
14 views
endless rewrite to subfolder apache
I'm trying to get my /website/ folder to rewrite to /website/public/ folder
I tried several ways and right now I'm using
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} ...