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
1answer
6 views
htaccess not working on godaddy
I recently moved to godaddy and the .htaccess doesn't seem to work. Are there any settings which need to be done for godaddy because the .htaccess was working on previous hosting. I have tried to use ...
0
votes
0answers
2 views
Apache's mod_rewrite taking over everything
I tried looking through Apache's documentation to get the answer to this question, but I have to admit my ignorance with regard to a lot of the little intricacies going on with mod_rewrite.
...
0
votes
0answers
5 views
How can enable https with fb_ca_chain_bundle.crt for a facebook app in Apache 2 server?
How can enable https with fb_ca_chain_bundle.crt for a facebook app in Apache 2 server ?
Basically I have this file, how can I set up my apache 2 to use this cert?
0
votes
1answer
8 views
mod_rewrite does not encode special characters even if NE flag is not supplied?
So obviously from apache documentation I see the following description for NE flag:
https://httpd.apache.org/docs/2.2/rewrite/flags.html#flag_ne
By default, special characters, such as & and ...
0
votes
1answer
25 views
PHP exec() functioning strangely
I am trying to execute /path/to/script.pl in PHP; the script, among other things, sends an email when it's done executing. When I try
exec( "/path/to/script.pl" );
Nothing happens. Some other ...
0
votes
0answers
25 views
mod_rewrite redirect to a sub dictionary dependent of php parameter
I want to redirect from a link like
index.php?site=recipes&id=2451
to
recipes/2451
and in fact in works pretty good beside one thing.
First my whole htaccess
RewriteEngine on
RewriteBase /
...
0
votes
0answers
7 views
Hadoop MapReduce Scheduler Job Sprit Logic
According to Hadoop Cluster architecture, If I have 5 Map Node 5 physical machine but for each machine the processing power is not equal how Hadoop Scheduler know how many size of job size scheduler ...
1
vote
0answers
4 views
conflicting perl blocks in separate virtual hosts
I am hosting a test site through a VirtualHost on my local machine. I sometimes have the need to test changes I made against a version of site before changes, just to see the differences in behaviour. ...
-3
votes
1answer
17 views
Installing apache osx mountain lion dont interpret php [closed]
Looked in many places and done many times all processes described. I managed to configure apache however he does not interpret the files in php. It displays the
Php installed, rename the php.ini, I ...
0
votes
0answers
3 views
Portal reverse proxy change ports APACHE PROXY LINUX
We have a portal. the portal is used to reach some resources available internal, like http://www.resource.com/agent.
Via the portal(on internet) www.portal.com, we can reach the internal resource ...
0
votes
0answers
5 views
CPanel Apache alias to different directory 403 forbiden
I have followed the tutorial here to attempt to create an apache alias on my cpanel server http://boxofco.de/apache-virtual-host-alias-cpanel/. My file with the alias in it looks like this: alias ...
0
votes
0answers
5 views
Server respondig with 0 at start of documnet
I have a password protected folder by htacces in my server on Hostgator, but sometimes when I acces the files inside the server responds with a 0 at the start of the document even before the header so ...
0
votes
2answers
18 views
jquery cycle plugin doesn't rotate images
I'm trying to use jquery cycle plugin. I directly copied the page source at http://jquery.malsup.com/cycle/basic.html and saved it to a file on my server at ...
2
votes
1answer
31 views
Possible to write an Apache file handler in Php?
I wonder if and how it is possible to write a custom "file handler" (parsing a file and rendering it with bonuses) for Apache 2 in PHP? Files are text files, and they could be large, so I'm not ...
1
vote
0answers
8 views
Apache httpd.conf User/Group Setting
I have an httpd.conf file that contains the following:
<IfModule unixd_module>
<If "env('OS') == 'Darwin'">
User daemon
Group admin
</If>
<Else>
User www
Group ...