Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
9answers
5k views

How to check if directory contents has changed with PHP?

I'm writing a photo gallery script in PHP and have a single directory where the user will store their pictures. I'm attempting to set up page caching and have the cache refresh only if the contents ...
3
votes
1answer
348 views

filemtime() [function.filemtime]: stat failed for filenames with umlauts

I use the PHP function filemtime to get the last modification time with PHP 5.3. This functions works very well but it seems to have some problems when the filenames have special characters (for ...
3
votes
2answers
351 views

Cache Busting images inside CSS

My situation I am currently using Cache Busting when I include CSS files like this: echo "<link href='stylesheet.css?" . filemtime('stylesheet.css') . "' />" My goal Now I would like to do ...
2
votes
1answer
32 views

Order this array by date modified?

I have a php file that is creating a array of everything in my users directory, the array is then being sent back to a iPhone. The array that my php is creating is ordering them alphabetically, i ...
2
votes
4answers
57 views

How to get the content of a file when it changes in PHP

I am fairly new to php. I have a text file on my computer which changes the content frequently. I want to get the content of the file as soon as it is changed and insert it to an html form. I wanted ...
2
votes
2answers
122 views

Cost of file modification time checks

For a file containing few bytes under Linux, I need only to process when it was changed since the last time it was processed. I check whether the file was changed by calling PHP clearstatcache(); ...
2
votes
1answer
435 views

PHP file modification time in milliseconds

I there, I am currently writing a unit test which asserts that a file did not get modified. The test code execution takes less than one second and therefore I would like to know if it is possible to ...
1
vote
1answer
59 views

Detect mtime resolution of filesystem

How do I find out what the mtime resolution of a system is from Node.js? Why I'm asking In Node.js, fs.watch will sometimes emit duplicate change events. In order to avoid taking redundant actions, ...
1
vote
2answers
314 views

PHP - filemtime function error

Hi i get this error when a cache script is included in my site.. Warning: filemtime() [function.filemtime]: stat failed for index.php in C:\xampp\htdocs\Content\content\cache.php on line 6 Here is ...
1
vote
2answers
318 views

Known problems with filemtime() on Windows - files getting touched arbitrarily?

Is there a known issue leading to file modification times of cache files on Windows XP SP 3 getting arbitrarily updated, but without any actual change? Is there some service on a standard Windows XP ...
1
vote
1answer
108 views

How-to watch mtime changes in course of php script?

I'm trying to watch for a file being modified in a long running php script. The basic algorithm is this: ... $mtime = filemtime($filename); sleep($delay); if($mtime < filemtime($filename)) ...
1
vote
1answer
1k views

filemtime() not working in Windows PHP-CLI

I just got PHP-CLI working on my Windows machine so I could create scripts using PHP. However, I'm trying to write a script to cleanup my Firefox downloads folder of files older than X number of ...
0
votes
2answers
52 views

PHP Warning: filemtime() [<a href='function.filemtime'>function.filemtime</a>]

I've noticed that the directory on which one of the PHP script is installed have very large error_log file almost of 1GB size, mostly the errors are generated by coding on line 478 and 479.. example ...
0
votes
2answers
55 views

How do you get last modified dates of all files within a folder and compare it to a certain date? php

Does anyone know a way to grab the last modified dates of all files within a folder and compare it to a certain date? So far I have this. <?php $lastmoddate = (date("Ymd", filemtime($file))); ...
0
votes
1answer
87 views

Find files modified within one hour in HP-UX

I'm searching through the manual page for find I can't see a way to run a command which will find all files modified within an hour. I can see only a way to do it for days. Thanks.
0
votes
1answer
106 views

PHP Recursively File Folder Scan Sorted by Modification Date

I'm using this script to see all subfolders and files of subfolders function readfolder($dir) { global $tfile,$tdir;$i=0;$j=0;$myfiles; $myfiles[][] = array(); if ...
0
votes
1answer
78 views

Get filemtime for most recently updated file in folder

I have a folder with 4 files in it and I'd like to pull the last modified time of the most recent one (which may not always be the same one). Is there a good way to do that?
0
votes
2answers
133 views

Controlling cache on a cookie free domain

My situation I am following the advice of Yahoo's YSlow and I would like to store my static content on a subdomain. However, I would like to use the function filemtime() to control the cache of the ...
0
votes
3answers
261 views

Filemtime/cachetime where am I going wrong?

What I am trying to do is check the age of an image, if its older than 60 minutes then run another php page to fetch images otherwise do nothing if less than 60 minutes old.... The script isn't ...
0
votes
1answer
174 views

CSS Parser - Insert mtimes

What command line tool can I use to automatically insert mtimes into urls in my css files for the purposes of breaking the cache? /* before */ .example { background: url(example.jpg); } /* after */ ...
0
votes
3answers
227 views

Accuracy of stat mtime in Windows

Have an example piece of (Python) code to check if a directory has changed: import os def watch(path, fdict): """Checks a directory and children for changes""" changed = [] for root, ...
-5
votes
1answer
59 views

php static countdown with filemtime [closed]

A file updates every 60 minutes. I would like to have a countdown for the next update from comparing filemtime with time. I'm getting a brain fart dealing with time