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

  • Home
  • SEARCH
  • 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 709943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:33:35+00:00 2026-05-14T04:33:35+00:00

I have a pretty complicated index.php now, and I would like to only run

  • 0

I have a pretty complicated index.php now, and I would like to only run it once every hour. What is the best way to achieve this? Some ideas I’ve had

  • Put it in APC with apc_store($page, 60*60*) – I feel this isn’t what APC is for and will probably be doing something bad to the other parts of my site
  • Save the output to a filesystem somewhere – Then apache needs write access somewhere which might be a pain
  • Somehow setup apache to do the caching for me – Is this possible?
  • 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-14T04:33:36+00:00Added an answer on May 14, 2026 at 4:33 am

    I went with a slight variation on Rowlf’s and jamietelin’s
    answer.

    Create 3 files:

    index.html

    <meta http-equiv="refresh" content="0;url=/index_update.php" />
    

    index.php

    <?php // do all your normal stuff ?>
    

    index_update.php

    <?php
    
    $file = "index.html";
    $time = 60 * 10 - (time() - filemtime($file));
    
    # this is on the first install 
    if (filemtime($file) != filectime($file))
        $time = 0;
    
    if ($time > 0) {
        die("Data was already updated in the 10 minutes. Please wait another " . ($time) . " seconds.");
    }
    
    ob_start();
    require "index.php";
    $data = ob_get_contents();
    
    $fp = fopen($file, "w");
    fwrite($fp, $data);
    fclose($fp);
    
    header("Location: /");
    

    And then a cronjob:

    */15 * * * * curl http://example.com/index_update.php
    

    So, if someone stumbles on the page after a production push, they will just transparently create a new index.html for you, otherwise, your cronjob will make it every 15 minutes.

    Just make sure index.html is writable by your apache server. If that sounds scary, then just make your cronjob run php index_update.php as another user with write priviledges to index.html. You won’t have access to all the apache environment though.

    Hope this helps, comments are welcome.

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

Sidebar

Related Questions

I would like to have pretty URLs for my tagging system along with all
I have pretty complicated listview component organized as table. On every tr line I
OK. I have a very long and pretty complicated function. It looks almost like
I have a pretty complicated Linq query that I can't seem to get into
i have a pretty complicated form. as you can see below: alt text http://img9.imageshack.us/img9/2465/test2xk.jpg
I have pretty good skills in PHP , Mysql and Javascript for a junior
I'm back with another (possibly) silly question. sorry. I have a pretty complicated query
I have a pretty complicated python program. Internally it has a logging system that
Within JSP files, I have some pretty complicated Javascript. On a production machine, we're
I have a situation that is pretty simple, and I'd like to know the

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.