Apache :: Last Modified Or ETAG Headers On Website Hosted Via 2.4

Dec 18, 2014

I have compiled apache with below configuration

./configure --prefix=/app/apache2_4 --with-apr=/app/apache2_4/apr --with-apr-util=/app/apache2_4/apr-util --with-pcre=/app/apache2_4/pcre/ --enable-ssl --with-ssl=/usr/bin/openssl --enable-modules=all --enable-mods-shared=all --enable-proxy --enable-mime-magic --enable-rewrite --enable-speling--enable-mpms-shared

But after compilation I have added expiry,deflate headers but I am not able to see either ETAG and LAst-modified header...

View 1 Replies


ADVERTISEMENT

Apache :: Gmail SMTP Contact Form On Lamp Hosted Website

Jan 8, 2015

I have a LAMP server at home and in my website I added a php form using gmail smtp but Im not receiving any emails from the form. Do I need to add something to my server? Im using the free contact form from this website [URL]....

View 9 Replies View Related

Apache :: Modified Excel File In Docroot Not Showing If Its Accessed

Aug 7, 2014

We have few application which serve static information to the users like excel sheet.

We used to place the .xls file in the docroot and it will be accessed using URL

for example, I'll place a file named test.xls and access it through [URL]

Problem here is if i modified the file content and accesed it through [URL] , it is showing the old content. New content is not displaying.

But the same if i did with .txt file , it showing the updated content for .txt file

Dont know why only xls files are not reflecting.

View 2 Replies View Related

Apache :: Modified Excel Sheet In Docroot Is Taking Time To Reflect It

Jul 7, 2014

We have many webservers in our environment, Few webservers serves static contents. In one application, we often change the excel file. Every day or 2 days once we will modified the excel sheet content. File name will be the same, only the content will be changed. We will modify the content of the sheet and upload through FTP to the docroot. After we done this if we access the application URL, its displaying the old content. Its takes time to reflect. sometime with in 3 hours sometimes after a day only reflecting. We are not sure what is the issue. we cleared the cache in browser and tried then also its showing the old content. We are using DNS,network load balancer, proxy between the browser and the webserver.

I tired accessing through FQDN, it showed old content, then i accessed through the LB IP it showed the modifed file. For testing i changed the content again and then accessed. This time even for IP it showed old content. Same i tried with the instance 1 IP and Instance 2 IP. On first time it showing properly but after i cahnged the file content and accessed it showing the old file I tried accesing from a different PC where we havent accessed before, there also it showed old content, SO i feel browser cache is not an issue.

We using Source subnet mask IP persistence in load balancer. I am not sure where the old file is cached actually. Will it be cached in Load balancer or proxy or somewhere in webserver. Just we are placing the file in docroot and accessing it in the URL

View 1 Replies View Related

How To Find Out Where A Website Is Hosted

Jul 15, 2007

I just saw that my website has been COPIED

I need to report this site to the thiefs hosting provider. However I cannot seem to find out where this website is hosted at!

The website that copied my site is www.hithosters.com . I need to find out where this website is hosted at..

View 7 Replies View Related

Visit Locally Hosted Website

Sep 26, 2007

My website is hosted locally on my network, so I'm unable to view the .com address for it (i can only access through the local IP address). This makes it really hard to test throughly.

Is there any way to view this website from how it would be outside the network? I know i can do it from another location but I need a solution that is right here. I do not have a off site computer i can remote desktop to either.

View 1 Replies View Related

Website Redundancy (Hosted In Multiple Datacentres?)

Aug 24, 2008

Not sure where this belonged so put it in web hosting as it could cover dedicated, colo or shared.

In a couple of months I am going to be launching a new e-commerce website for the company I work for, so it is absolutely vital that the website never goes offline, otherwise I will be in deep ****.

It will be hosted on a server that has been built to be very redundant; 2x Hotswappable Redundant PSU, 4x Hotswappable HDDs (RAID 6), Redundant NIC.

Sods law though to achieve this redundancy it will need to be on a colocated server, so if there is a major problem like the motherboard dying, then I will have to get down to the DC (3 hours away) and replace the entire server. Which wouldn't be practical as we would need a replacement server, all setup and ready to go, to do that.

Also, if there is a problem with the data centre itself, then we would be stuck until it is resolved. I have hosted sites with data centres in the past that experienced power or network problems which sent the sites down and it was totally out of our control to either prevent the downtime or restore the sites.

So to increase redundancy, and minimise downtime, I was thinking of load balancing between two servers. But then I assume they would both have to be hosted in the same data centre.

I was also thinking of having the site hosted on the server, but having some shared hosting (or a cheap dedi) ready to go just to fall back on if the server goes down. That way I can forward requests to the shared hosting as a temporary measure whilst the main server is restored. But the problem with that is I would probably need to get another SSL certificate. I would need to get the payment gateway provider (protx) to change the settings for the IP of the shared hosting, which knowing them will take 72 hours to process.

Budget really isn't an issue here if it can be justified, just looking for some ideas at this stage. There is no way this site can be down for a second longer than it needs to be.

View 4 Replies View Related

Joomla Website Hosted On Windows A Safe Option

Apr 21, 2008

Is a joomla website hosted on windows a safe option.

View 2 Replies View Related

Apache :: End Of Script Output Before Headers - Server

Jun 13, 2013

I get this error sometimes in the apache log for my site (and then my server gets slower and slower until it goes offline):

Code:

[Thu Jun 13 11:58:48.675867 2013] [core:error] [pid 1368:tid 2344] [client 111.222.333.444:38360] End of script output before headers: index.php

I am using a Windows Server 2012 64 bit server, but I had the error on a Windows Server 2008 64 bit server too.

The new server only has 1 site on it - and it is a Joomla 2.5 site. The server is dedicated and has 8 CPU cores and 24 GB ram and so on.

I have googled the error enough to understand that my Apache server (downloaded from this site) is misconfigured somewhere.

View 2 Replies View Related

Apache :: How To Remove Connection And Keep Alive From Response Headers

Aug 17, 2012

How can i remove "Connection and keep-alive" from response headers ? I am using Apache http server to load balance two tomcat nodes

Apache Server- Apache/2.4.2
mod_jk - 1.2.27
Apache tomcat - Apache Tomcat/7.0.23
JDK - 1.6

I have also enabled SSL in the apache http server using mod_ssl. The load balancing works fine, but in all the response headers these connection attributes are added "Connection: keep-alive keep-alive: timeout=5"

Is there a way to remove these headers? I do not want these headers to be added in the response. I have also tried mod_header to unset these headers, but no use. HTTP/1.1 protocol is being used, so eventhough the connection is not present in the header, the connection would should be considered as persistent. Why is apache sending these attributes explicitly in each response. I just want to get rid of these attribute...

View 7 Replies View Related

Plesk 12.x / Linux :: Passing Headers To Apache Through Nginx

Jul 23, 2014

I want to pass the X-SENDFILE header to apache through nginx.

Is this possible or do i have to disable the reverse proxy?

View 1 Replies View Related

Apache :: Setup Dynamic Content Configuration - Correct Headers

Aug 28, 2014

I am trying to setup dynamic content configuration in apache 2.2 httpd conf. Here is the configuration and couple test cases:

CONF:
<FilesMatch ".(js|css|gif|jpg|jpeg|png)$">
Header set Cache-Control "no-cache, no-store, max-age=0, must-revalidate"
</FilesMatch>

TEST 1:
Without <FilesMatch> directive, the headers are set to all requested content as it should. This includes content served from apache server and content from a separate application server.

TEST 2:
If I use the above configuration example, I can see that static content comes with correct headers only

View 1 Replies View Related

Apache :: 2.2.15 - Rewrite Rules For Non-hosted Domain

Jul 1, 2015

CentOS 6. Apache 2.2.15

I am trying to redirect a request from a non-hosted domain, using a rewrite rule in our configuration file in conf.d. Our registrar has a pointer from this non-hosted domain to our domain.

Currently

*.domain1.com.vn -> http://www.domain1.com
domain1.com.vn -> http://domain1.com

I want to redirect a request like so in the web.conf file in conf.d

domain1.com.vn/terms => domain2.com/vn/terms

View 3 Replies View Related

Files Modified On A Day

Dec 8, 2008

how would i search for any files modified between such and such date using SSH
some one seems to have downloaded some malicious codes on to some on one of my sites and the files are infected

however i have 1000's of files and some are infected wheras some hasnt so iw ant to check what files have been modified between a date range or on a particular day

using Linux with apache

View 2 Replies View Related

Not Modified Reponses (304) Slower Than (200 OK)

Apr 23, 2008

if Web servers might prioritize servicing Regular GET or a Conditional GET.

I have seen busy servers take 9 seconds to respond with a (304 Not modified). On fast networks (LANs), the file size is no issue and, it seems that a (200 OK) with the object is downloaded faster than the (304 Not modified) response alone.

Wiseowl. Not so wise on this one.

View 0 Replies View Related

Time Auto Modified At RHEL Server

Mar 17, 2008

I have a problem with time at one RHEL 4 server, it is a plain box, and from time to time the time (hours) seems to be auto modified, no one is touching the box and then from once it got modified to a few hours less than what we specified, to change time and date we always use:

Code:
date --set "2007-10-24 13:35"
hwclock --set --date="2007-10-24 13:35"

The only thing that I noted is that ntpd daemon was running, while in the rest of our plain box it is not running, maybe this is the reason the system is auto chaning the time?

View 4 Replies View Related

Plesk 12.x / Linux :: Firewall Module Modified Iptables - FTP Not Working Now

Feb 13, 2015

I temporarily enabled and activated Plesk firewall module (which I wish I didn't the first time) and for some reason it seems to have overwritten the default iptables configuration that was set, leaving my ftp unable to be logged into. I tried to disable the firewall module and reboot the server. It didn't work.

I also noticed that it somehow seem to have changed my hostname to my previous server hostname as well

Is there any way to completely revert back to original iptables settings before enabling the Firewall module?

View 4 Replies View Related

Apache :: Running Website On VPS

May 9, 2013

I've installed apache on my windows 2008 vps . It's run and when I browse localhost , it's works fine . But when I enter the vps ip address , it says Chrome could not connect to ... , I'm sure that httpd is running on port 80 (I checked it via netstat -ao and task manage ) ....

View 1 Replies View Related

Apache :: Can't Access Website Using Other IP On Same LAN

Dec 20, 2013

I m newbie to apache server. I have created a web site using apache server with theURL... tutorial. I m able to access my web site on my ip address bt unable to access it using other ip of linux system. I m CentOS user. I can ping that ip with my ip. I have edited files as described in the tutorial.

View 1 Replies View Related

Apache :: Accessing Website From Different Computer

Mar 2, 2014

I have 3 computers on the same network. One running apache2 on Ubuntu 12.04 and the others with Windows7. I want to access the website I set up from a Windows machine. When I type in the URL, domain.com, I get a 404 error. When I type in 127.0.1.1/domain.com I get the directory listing for the website. I have to actually type 127.0.1.1/domain.com/public_html/ before the website can actually be seen. I would like to get rid of the public_html part. I am brand new to all this.

View 1 Replies View Related

Apache :: Add Multiple Web Pages To Website?

Jan 23, 2014

How do I add multiple web pages to my server?

View 6 Replies View Related

Apache :: Open Proxy On Website

May 23, 2015

I'm trying to fix a problem with open proxy on my website. It's running ubuntu & apache2. I also run pfsense for a firewall with snort. I have a SSL for the website, so I have regular port 80 redirect to https.

At first I did notice right away when I checked & saw this happen that proxy was turned on. So I got that turned off.

My firewall is still allowing these bad IPs to port 80. I would like to figure out what I could turn on the firewall or snort to stop those connections in addition to what needs fixing in apache. I've read the solution is to make the redirects go to a 403 error page.

I also tried adding a mod_security rule but ended up blocking all people from website, though I may have accidentally turned some other rules on too.

There are a few different problems it looks like.

First - It looks like they're trying to connect to my HTTPS then redirect to an ad through my domain name?
Second - It looks like they're still trying to use my website for open proxy but directly accessing ib.adnxs.com through my port 80. My logs indicate I'm redirecting to a 301 page.

View 2 Replies View Related

Apache :: Website Inbuilt Cache Not Enough

Feb 4, 2013

We have a Joomla based website and we are using the inbuilt cache to make the website fast enough for our users... but it really isn't working well... i would say.

The Joomla Cache is very limited and we were thinking if we can enable a server side cache for apache/php or something like that... which would work above Joomla and make all the contents cacheble.

View 14 Replies View Related

Apache :: How To Open Website Using Its Dedicated IP Address

Feb 12, 2015

I have a VPS and run few websites. I am not good in Apache and Linux. I just got a dedicated IP address for one of my domains. I like that the website opens just by typing the IP address in the address bar of the browser. How can I activate that?

View 5 Replies View Related

Apache :: Connecting To Website Gives White Screen

Mar 14, 2015

So, let me start off by saying I am completely new to website and FTP server hosting. I've hosted game servers in the past so I know about port forwarding and the like but this is obviously a step-up. I've managed to get a fully-functioning FTP server that works great on the domain I'm using but the website using Apache just gives people a blank white screen (as stated in the description). I'm using port 55567 for the website as I don't know want to use 80 because of security risks and what not. The domain being used is delawaretexasrepository.t28.net. Below are the error.log, httpd.conf and httpd-vhosts.conf.

httpd-vhosts.conf: [URL] ....

httpd.conf: [URL] ....

error.log: [URL] ....

View 8 Replies View Related

Apache :: Infinite Loop In LAMP Website

Jul 18, 2013

We are getting infinite loops due to the user requesting the same page continuously , even if apache sends a 200. It is happening randomly once every two or three weeks for different users.This issue is not confined to one browser it is happening with firefox 21, firefox 5, ie 8, etc. It is not happening to the same user again.

It is a PHP based website with custom CMS.We are never able to replicate this issue.Is this something related to a plugin installed on a browser ?

PHP Version 5.3.8
Mysql
Apache 2.0
SUSE

View 1 Replies View Related

Apache :: HTAccess Error While Login At Website

Jun 19, 2014

I encountered htaccess error while login at my website. I never change my username and password. How to solve it?

View 1 Replies View Related

Apache :: How To Create Proxy Tunnel For A Website

Mar 11, 2013

Some of websites like youtube and facebook are blocked in my country and we can't access them .in addition most of tunneling protocols like PPTP are blocked too . I want to create a website that tunnels between our network and this website like proxy or other ways. Scripts like phpProxy are not secure and many websites don't permit the visitors who come with this scripts. A very good sample for my idea is walww.com . This websites is like alternate for blocked addresses like facebook, but it's premium and require charging cash .

How can I create website like walww.com . I have my own VPS and Host for this issue. Is that possible to serve this blocked websites trough proxy by configuring apache settings?

View 1 Replies View Related

Apache :: Configuration To Setup Password For Website

Jul 8, 2013

I want to setup a password for a website running on Ubuntu server, and find Apache can be used. It is implemented by config httpd.conf file and .htaccess file.

So I want to ask:

1. In this case, the password is setup for a path on the server configured in httpd.conf file. Like in the following example:

Code: <Directory "/var/www/html/MySite">

The password is setup for the path to Mysite,right?

2. If my content of website is not stored under /var/www folder, I cannot use this way to setup a password for website, right? May use PHP instead?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved