On Sun, Apr 03, 2005 at 07:35:23AM +1200, zcat wrote: > <?php > header("Content-type: image/jpg"); > $ip = $_SERVER['REMOTE_ADDR']; > $img = $_SERVER['REQUEST_URI']; > passthru("wrjpgcom -comment \"downloaded from > http://zcat.wired.net.nz/ by $ip on `date`\" `basename $img`"); Gah. Don't use `date` and `basename`; use PHP functions (basename() and date(), for instance); that's what they're there for. The method you're using results in *three* fork/exec's, which will kill performance (or at least injure it). --n -- <huey> dd of=/dev/fd0 if=/dev/flippy bs=1024 <huey> ^^^ Making Flippy Floppy --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx