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.

learn more… | top users | synonyms (1)

0
votes
0answers
11 views

Add slash to 301

Here's my htaccess RewriteEngine On RewriteCond %{HTTP_HOST} ^example.co.uk$ RewriteRule (.*) http://www.example.co.uk$1 [R=301] When I try and get it working it's giving my urls with no slash. For ...
0
votes
0answers
11 views

404 Error handling/htaccess for subdomains

I would like to have a 404 error page. This will be in the root direction. The problem I have is that in my .htaccess I have set the following relative path: ErrorDocument 404 /404.php This ...
0
votes
2answers
9 views

Order of rules in .htaccess file

I have an .htaccess file like this: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^foo.*$ /cgi/foo.cgi [L] RewriteRule ^.*$ /cgi/fallback.cgi ...
0
votes
1answer
9 views

environment variables in virtualenv's postactivate using mod_wsgi

Hope you're well. I've added a couple of environment variables to my virtualenv postactivate file, for example: export DATABASE_USER="root" export DATABASE_PASSWORD="12345678" I then assign those ...
-1
votes
0answers
13 views

Removing index.php with mod_rewrite on an HTTPS server

Is there a specific way to remove index.php from the requested URI with mod_rewrite on a domain that uses HTTPS connection? Or is the typical way to go about it the same as with an HTTP based domain?
-1
votes
0answers
10 views

Nullpointerexception and 500 ststus code incurred while running simple servlet connecting database

I want to create a servlet that connects to database and check the corresponding u/name and password and return a response.However, when i run the project in server(apache) it throws me with the ...
0
votes
0answers
9 views

Apache ProxyPass exclude domain from virtual host

I am performing some reverse proxies on my apache server, but I'm running into some problems. I have a it proxying pages from another server which works fine with the following example: ProxyPass ...
3
votes
2answers
34 views

What happens if you edit a php script while an instance of it is running?

When you overwrite a php file on a server (say, via SFTP) while it is being processed somewhere (perhaps it's a script that takes several seconds to compelete) does it cancel the currently running ...
0
votes
0answers
13 views

CakePHP and Apache Load Balancer losing session

I have an app running CakePHP 2.1 in a load balanced environment. It seems to lose the session when the server changes between requests. Does anyone know cake config settings or apache config settings ...
0
votes
0answers
8 views

Why is ServerName not having any effect?

I have several sites configured as VirtualHost. All of them are running on the same system, same IP address. I want apache to redirect requests to one or another VirtualHost based on the DNS. That is ...
0
votes
0answers
7 views

apache + tomcat using mod_proxy ajp randomly stops working

I am using apache and mod_proxy (via ajp) to send traffic to my tomcat instance. Everything works fine and then it randomly breaks. I see a 408 in the tomcat logs and apache is returning a 503. Has ...
0
votes
0answers
7 views

apache solr csv file same values

We have identified Apache Solr as a possible solution to our problem. Please bear with me, I'm new to Apache Solr. We are planning to upload several large CVS files and use Solrs REST like feature to ...
0
votes
1answer
14 views

How to map three Websites under one domain to their folders with mod_rewrite only?

I have a project that has a splash page that points to two separate sites. The sites are hosted on the same server and they should be in separate folders for better maintenance. The folder structure ...
1
vote
2answers
30 views

Handle big data with MySQL and Redis

I need help from database gurus. I have a big database with more than 1.5 gb when exported as SQL file in MySQL. Problem I'm facing is now that the query on tables like stats that hold millions of ...
0
votes
0answers
17 views

PHP code not executing on AWS web server?

I have an AWS EC2 instance that I'm running my website on. I have set up and installed PHP and PostGreSQL on the instance via PuTTY and loaded my website files onto it. However, the PHP code is not ...
1
vote
0answers
16 views

Logging Apache instance name in Django logger

We use the Django logging module for our Django app, which runs on a couple of Apache instances on a server; each instance is a different setup, like production/staging/development/testing. How do I ...
0
votes
0answers
7 views

Apache load: possible SYN flooding on port 443. Sending cookies

I was in HTTPS load test for apache 2.4 As when try test for higher request rates many of connections are getting reset. Note: the test is successful on lower server version (like apache 2.2) also ...
-1
votes
1answer
13 views

Missing row from mysqli $query

I have a problem with MySqli not outputting the result of my query. $cxn=mysqli_connect($host,$user,$pw,$dbname) or die("Error connecting to server"); ...
1
vote
1answer
39 views

How do I Connect an android application to a running MySQL Database, on an external hosted server

Basicly, i've been doing a lot of searching around and still haven't found anything that solves the issue. I am trying to connect my application to a database that is ran and hosted by a company, on ...
0
votes
1answer
18 views

httaccess URL rewriting

RewriteEngine On Options +FollowSymlinks RewriteCond %{HTTP_HOST} ^example.com$ RewriteRule ^$ http://example.com/index.php?flash=1 [L,R=301] I have a page where I want to rewrite my base url, but ...
1
vote
2answers
18 views

cURL raw data via php://input wrapper? Throws an error

I am experimenting with this wrapper, in particular pulling raw data from HTTP requests. I have so far got file_get_contents, fopen, and readfile to work. I am now trying to get cURL to work as this ...
0
votes
1answer
10 views

Diagnosing tcp communication along a route

From my home DSL network I can no longer access a specific website (say www.example.com). Using wireshark and other tools, I observe the following properties: when a request is sent to the site's ...
0
votes
0answers
10 views

not able to set path in catalina.sh file in tomcat6 ubuntu

I am trying to add the following lines in catalina.sh file export ACTUAL_LOGPATH=/webhost/sites/application/1.0 org.apache.catalina.startup.Bootstrap "$@" start 2>&1 /home/ubuntu/cronolog ...
0
votes
0answers
40 views

how to set “ShibRequireSession” on or off for a URL in htaccess

I want some thing like this, when a user visits a url www.example.com no rules is applied on it but, when user visits www.example.com/something else rules should be like, ...
0
votes
0answers
24 views

What is the best secure, complete process for setting up CentOS server for WHM/cPanel?

Intro I know very little about Mac Terminal, and my knowledge of command line is limited to tinkering around in DOS when I was a kid. Really an amateur here. Main Issue I am setting up a VPS on ...
0
votes
1answer
11 views

Apache mod_proxy - Pass through from localhost to another domain?

I'm not at all experienced when using proxies but hopefully this is possible. I have apache running on my development machine which hosts a website (www.testdomain.com). I need to look at ...
0
votes
0answers
7 views

nginx as reserve proxy of apache, error page issue

i typed following in my nginx vhost: server { ... error_page 403 /403.php; location ~ \.(php)${ proxy_pass ...; } } then when i try to browse a directory which should ...
0
votes
1answer
19 views

Wamp Apache - Allow localhost

There are other questions similar to this but don't answer my problem. This is the default httpd.conf: <Directory "C:/wamp/www/"> Options Indexes FollowSymLinks AllowOverride all # ...
1
vote
1answer
16 views

Use htaccess to redirect list of tor exit node IPs to a page

Edit: Cron was fine, I had forgotten to turn RewriteEngine On, leaving this here in case anyone else wants to do the same as I couldn't find a guide anywhere. It's been a while since I've used Apache ...
0
votes
1answer
14 views

apache solr match “convrgys” with “convergys”

[i am apache solr newbie] Hello i'm trying to match "convrgys" with "convergys", options are use synonyms.txt and add convrgys => convergys something like that or implement auto suggestions using solr ...
-2
votes
0answers
15 views

URL rewrite for different folder with same url [closed]

i have same file names on different folder. Like "small", "basic", "advance". domain name something.com . want to show file from folder depending on condition. like this ...
0
votes
0answers
7 views

PHP and RAW SOCKETS on linux

is it enough to do a sudo setcap cap_net_raw=eip /usr/bin/php5 to be able to use RAW SOCKETS in php (not cli) in linux ? if yes , well it is not working (but started to work in cli but not over ...
0
votes
0answers
17 views

how to get the userinfo using mod_auth_cas from session?

I use mod_auth_cas as the cas client,and here is my conf file in http.conf of apache: CASDebug On CASValidateServer Off CASCookiePath /var/cache/apache2/mod_auth_cas/ CASLoginURL ...
-2
votes
0answers
9 views

how to install apache solr in php [closed]

I want to install Solr into the PHP but not getting the steps how to integrate it. I have gone through this link http://www.php.net/manual/en/solr.installation.php
0
votes
0answers
15 views

Apache setting for driving PHP with CGI

I use Apache2.2.22+PHP5.3.14 on CentOS5.5 I’ve tried to set httpd.conf for driving PHP with CGI. After setting httpd.conf I restarted httpd and access to PHP file by http://mydomain/env/phpinfo.php ...
0
votes
0answers
15 views

PHP- Can apache make more than one response per request to 'stream' data?

Aim: to send a stream of data to the server, and that data to be streamed back in realtime as the transfer is happening using PHP (with only one webserver request) Objectives complete So far: I have ...
0
votes
0answers
5 views

enable xdebug on bluehost shared server

I want to setup phpunit on a demo site on a bluehost shared server. I want to check if the php codes work on the environment after I made modifications and added more components. With this, I need to ...
1
vote
1answer
21 views

Error 500 and other website's content

I have some small django projects working on the same server with apache and mod_wsgi. I installed another one project with virtualenvironment and set settings for it in Apache conf file: ...
0
votes
0answers
14 views

How to remove .php file extension using mod_rewrite in httpd.conf, NOT in .htaccess?

I know that to remove .php file extensions in .htaccess we use the following code: RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php But I what ...
-1
votes
0answers
10 views

Apache (httpd) server how to force redirect to a non-www domain under while under https [closed]

On a default installation of CentOS (on AWS), I have the following configuration in my conf.d directory. So, besides for this configuration, I just have the default conf/httpd.conf file. What I am ...
0
votes
1answer
7 views

How to run a pl script of apache tuner on debian?

What I need to do to run this script to tune the apache on debian x64? https://github.com/gusmaskowitz/apachebuddy.pl
0
votes
0answers
13 views

Apache- when a connection is made (without headers/data), what does apache do?

For example, I have apache running on localhost. If I use netcat like: nc localhost 8082 Netcat appears connected, but no data is received back. Does apache hold the connection, and wait for ...
0
votes
1answer
15 views

Eclipse Tomcat Configuration Documentation/example page 404

Now I've installed Tomcat successfully in my Windows 7. In cmd, I can start the server and get to the Tomcat homepage. Also, I can successfully access the doc, example pages etc. But for Eclipse, I ...
0
votes
0answers
9 views

How to use mod_rewrite in httpd.conf file to remove .php extensions?

I know that there are countless examples online of how to use mod_rewrite in a .htaccess file to remove .php extensions. I found this: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond ...
1
vote
0answers
15 views

Weird PHP not displaying over local ip address

I have the following setup below: Amazon EC2 instance. IPs: 192.168.1.200 = eth0 = x.x.x.x public ip address 192.168.2.200 = eth1 Apps: Apache vhosts: -domain.tld PHP The strange part is ...
3
votes
1answer
31 views

HTML form PUT method by tunneling, something I don't understaand

HTML can't be used to submit a PUT request via a form. You can only do it via javascript as an ajax request. Ok. On another post someone said (with +40 on the answer): Browsers only support POST ...
3
votes
2answers
27 views

Apache mod rewrite for dynamic pages

I'm having a problem with my mod rewrite rule that I wrote for my website, nothing seems to change as my pages URL are loading the same as before, if anyone could have a look at it and let me know if ...
1
vote
0answers
26 views

Apache - How to configure (via php.ini or .htaccess) apache to pass POST data to a php file

So when you POST data to a file the content length is say 8mb and may take a few minutes to upload. How do you change apache configuration (for that file) to pass data as it is received?
0
votes
1answer
17 views

WordPress won't stay logged in

I moved my WordPress install from a development server to a freshly installed CentOS Apache 2.2 PHP 5.3 server. Initially, everything was working well. Logging in wasn't a problem, but then I ...
0
votes
0answers
6 views

configuration permission folder apache

I'm configuration my apache server and i'm give permissions the folder /var/www/web. chown -R www-data:root web chmod -R 570 web chmod -R 444 $(find web -type f) is correct this configuration??

1 2 3 4 5 518