|
Try commenting out these lines at the top of index.php and see what you get
if ( is_numeric($argv[0]) ) {
header("Location: {$Globals['maindir']}/showphoto.php?photo={$argv[0]}");
exit;
}
would be thus
//if ( is_numeric($argv[0]) ) {
// header("Location: {$Globals['maindir']}/showphoto.php?photo={$argv[0]}");
// exit;
//}
|