0
votes
0answers
47 views

conditional proxypass ajp rules using ip whitelist

I've successfully created a ProxyPass ajp rule which works fine, but now i want to restrict the access of certain urls using an ip-whitelist. In other words, when someone comes from an ip that is not ...
0
votes
1answer
20 views

Programming Apache VirtualHosts to make site accessible from two ports

I have my server side at http://example.co.uk, which is accessible in a web browser (or via a normal http request) to http://example.co.uk. However, for my app to be able to access the server side, ...
0
votes
0answers
45 views

PHPMyAdmin Configuration Errors

I've the following errors when I open localhost/phpmyadmin. The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click ...
0
votes
0answers
55 views

Ho do I change DocumentRoot in Apache config file

First off, I'm pretty new to this. So, I found my httpd.config file and changed DocumentRoot from "/Applications/XAMPP/xamppfiles/htdocs" to "/Applications/XAMPP/xamppfiles/htdocs/gormanalysis" (And ...
0
votes
0answers
245 views

Virtual host showing apache test page and everything else in doc root is forbidden

I am using a new CentOS 6.3 minimal install with fresh httpd installed When I go to my virtual host it is showing me the apache test page, and then if I go to mydomain.co.uk/index.html (That I have ...
0
votes
1answer
146 views

Apache virtual hosts - server ip directing to virtual host instead of /var/www/html

I have set up a linux box mainly for testing and I have got to a stage were apache, mysql and php are running. I followed tutorials on how to set up virtual hosts so I can point domains to it but ...
0
votes
0answers
91 views

Apache - add header only if missing

Apache is setup to server some static content and to proxy some requests. Is there a way to set it up to add a header only if that header is missing? So if the proxied application sets a given ...
2
votes
3answers
89 views

Saving ~1kk chars text to MySQL

On a remote server I'm saving text (967 537 characters) from textarea to MySQL database, column with type of TEXT. Only around 63 748 characters are saved. Also, in phpMyAdmin I'm getting the ...
0
votes
1answer
144 views

htaccess file works on server, doesn't work locally

I've been searching around and trying all sorts of different approaches, but I can't seem to figure out what's wrong. I have the following piece of .htaccess code: Options +FollowSymLinks ...
0
votes
0answers
42 views

php edits specific apache config

I would like to write a php function which would parse a specific apache conf file and would add to server alias new domains, than on user event would restart my apache server. Is it possible to do ...
0
votes
4answers
668 views

Use sed to uncomment a line in httpd.conf

I'm trying to write a little shell script to go through the steps needed to enable apache and php on a new install of Mountain Lion. The step I'm stuck on is going into /etc/apache2/httpd.conf and ...
0
votes
0answers
85 views

Apache Redirect Rule - retain original www subdomain when redirecting to another server

www.domain-name.com is on one server (Linux) and sub1.domain-name.com is another server (Windows). When I create redirects on the apache config of the main site (linux) to go to this other server ...
1
vote
0answers
94 views

ANT build config with dependency on core files

Currently working on a PHP/HTML/JS project that is made up of a 'core' directory and multiple individual 'product' directories. Dir structure as follows... Core JS PHP Product1 JS ...
1
vote
2answers
326 views

Perl apache httpd.conf

I have inherited an apache sever instance that runs a perl application. I found this directive in the httpd.conf. <perl> use lib qw( /relative path1 /relative path2 ); </perl> ...
0
votes
0answers
100 views

How to configure apache using mod_rewrite to get content of a file

I need some help. I need to install on windows and configure Apache (using mod_rewrite I guess), for example,by the link 127.0.0.1/server/api/config I should get content of config file which I will ...
0
votes
1answer
95 views

Prevent specific css and js file from being cached htacesss

How can i use the htacess from caching my main.css and main.js file. However i use multiple js files and css files like so css --- main.css dafault.css new.css js --- main.js acc.jss ...
0
votes
0answers
370 views

Extremly High Mysql/http load on CentOS Running PHPBB3 forum

I've recently setup an nginx reverse proxy to my apache server due to high loads on mysql and http. I run a phpbb forum with ~12k visits per day. My load right now is around 40. I've followed ...
0
votes
1answer
298 views

Specific Apache config setting to show images via php?

I want to display an image using this php script on my server. $file = fopen('/Volumes/PROMISE/products/jpeg/89239-282.jpg', 'rb'); header('Content-Type: image/jpeg'); fpassthru($file); But i get ...
0
votes
1answer
36 views

Config Apache 2.2

I have installed Apache. When I go to localhost, that I see IIS7 page. Maybe this appear because I have installed SQLServer before. How can I config again to run apache, please tell me. thanks :)
0
votes
2answers
236 views

Why you can put php.ini variables into .htaccess? [closed]

As in the topic - why you can put them in .htaccess. I always thought that it should be in php.ini not in .htaccess. .htaccess php_value max_execution_time 240 php_value max_input_time 111 ...
0
votes
1answer
355 views

Apache 404's on index.html

I'm inheriting a project and have to run an Apache web server (2.2.22) on my Windows 7 machine. I downloaded the 32-bit No SSL MSI and ran the installer, using the default/typical/recommended ...
1
vote
1answer
1k views

How do I set the correct Content-Type header for the different browsers?

I'm running an Apache server to host my websites. They are all written in XHTML5 so I WANT to serve them as application/xhtml+xml. The default on Apache is to serve pages as text/html. Is there a ...
0
votes
1answer
1k views

XSendfile not working - PHP, Apache, Cpanel

I have been strongly recommended to use XSendfile since we are serving quite large files from our server. The server is running Cpanel. Previously we were using a straight force-download script, which ...
1
vote
1answer
1k views

How to prevent another login dialog with downloading Word,Excel document over Apache server with Basic Auth?

I have a front-end apache server running in a windows server. The system is setup with NTLM or BASIC Auth (same problem with both). A download from a MS Word or Excel documents works fine in all ...
1
vote
1answer
156 views

Test Apache config file from Python

How would I go about testing the apache config file from python? I've trying using the "os.popen" with "text = stdout_handle.read() to get the result, but nothing happens. Any help would be great :) ...
0
votes
1answer
784 views

Variable/Dynamic/REGEX Virtualhost in Apache?

Just an off the wall question today. Is it posible to vary DocumentRoot of a virtualhost based on the subdomain requested like so? <VirtualHost *> ServerName ^VARIABLE$.example.com ...
0
votes
2answers
2k views

Parent: Received shutdown signal — Shutting down the server

Using wampserver and receiving this error: Parent: Received shutdown signal -- Shutting down the server. Google doesn't seem to have any solutions that work. Any ideas? [Mon Jul 25 19:07:02 ...
1
vote
1answer
947 views

apache proxying subdir to rails app

I would like to run a rails application (redmine, actually) in a subdirectory off my domain. SOmething like http://foobar.com/redmine. Redmine is running as a stand-alone passenger instance that I ...
4
votes
2answers
836 views

Add new virtualhosts on Apache without restarting server?

I've got Apache working properly, virtual hosts work as expected. My operating system is Windows 7. However, I've got one problem, which I'm trying to find the answer to, and Google didn't yield much ...
3
votes
1answer
604 views

Apache virtualhost include

Connect the apache config files with the command: include / usr / local / apache / conf / sites / *. conf Create a file with two virtualhost. <VirtualHost *> ServerAdmin webmaster@as.com ...
1
vote
2answers
1k views

Custom PHP.ini not loading [closed]

When I print out the phpinfo(), it shows my Configuration File (php.ini) Path as /usr/local/php/lib Which is correct, and where the custom ini file is located. But my Loaded Configuration File is ...
0
votes
0answers
161 views

Configuration of apache2 and apache2install problem

My problem appeared while I was trying to change apache user from www-data to webservd. Everything was ok, except one problem, here's the log: [ Nov 15 12:59:32 Executing start method ...
1
vote
2answers
134 views

Create Addon Domains from PHP

I have a VPS (CentOS) with CPanel and Suphp enabled. Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.5 As a ...
1
vote
1answer
4k views

How do I configure Apache2 to allow multiple simultaneous connections from same IP address?

By default, Apache2 seems to allow only 1 connection per IP address. How do I configure Apache2 to allow multiple simultaneous connections from the same IP address? Here is my situation: a web app ...
0
votes
1answer
640 views

Redirect subdomain to /folder

I want to redirect the sub-domain webmail to /roundcube for that domain. This have to work for all virtual hosts in apache. Example: webmail.example.com must point to [www.]example.com/roundcube ...
1
vote
1answer
1k views

suPHP upgrade causing 500 internal server error

I have my server perform a yum update every night. Last night, it updated suPHP to the newest version: Oct 16 01:25:43 Updated: mod_suphp-0.7.1-1.el5.art.x86_64 This update has caused my website to ...
0
votes
5answers
7k views

Apache/php guru needed! htaccess files, php, includes directories, and windows XAMPP configuration nightmare!

XAMPP makes configuring a local LAMP stack for windows a breeze. So it's quite disappointing that enabling htaccess files is such a nightmare. My problem: I've got a PHP application that requires ...