Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3848794
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T16:45:19+00:00 2026-05-19T16:45:19+00:00

I’m using a PHP script to serve images (stored outside of webroot) to visitors

  • 0

I’m using a PHP script to serve images (stored outside of webroot) to visitors who have provided credentials allowing them access.

I’m sending the following headers: ‘Content-Type’, ‘Last-Modified’, ‘Content-Length’, ‘Content-Disposition’ (to set filename).

I incorporated code to check $_SERVER['HTTP_IF_MODIFIED_SINCE'] and if appropriate, send a ‘HTTP/1.1 304 Not Modified’ and quit. But in Firebug I notice that the response headers for the request include this:

Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache

and the image does appear to be downloading anew every time I view the page. This is unnecessary; it makes sense for the images to be cached by the client. But I don’t know what extra headers I should send to make this happen. What headers do I need to send?

Edit: These are the header commands I ended up putting in the script:

header('Cache-Control: private, max-age=0, must-revalidate');
header('Expires: Sat, 1 Jan 2000 12:00:00 GMT');
header('Pragma:');
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T16:45:20+00:00Added an answer on May 19, 2026 at 4:45 pm

    You can send the Expires, Cache-Control and Pragma headers yourself:

    Expires uses RFC 1123 date, format, eg: Expires: Thu, 03 Feb 2011 15:16:16 GMT

    For Cache-Control you can do: Cache-Control: public, max-age: 3600. The max-age is in seconds.

    As for Pragma, you can disable the web server’s default response of no-cache with:

    header('Pragma: ');
    

    PS. Many webservers also include a way for you to tell the webserver handle serving the file.

    In lighttpd you can use the x-sendfile header. In Apache you can use mod_xsendfile if you have it installed to do the same. In nginx you can use the X-Accel-Redirect header. Serving static files is really the webserver’s job, and these are very handy features that you can take advantage of, while still hiding your files from public docroot area. For other webservers you can fallback to handling sending the headers for caching yourself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I have thousands of HTML files to process using Groovy/Java and I need to
I have a bunch of posts stored in text files formatted in yaml/textile (from
I want to count how many characters a certain string has in PHP, but
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.