Umm.. i have this problemo..
here's my function:
PHP Code:
function list_dir($dir){
if(is_dir($dir)){
if($handle = opendir($dir)){
echo "<form action='' method='post'>";
echo "<table width='100%' border='0' align='center'>";
while(($file = readdir($handle)) !== false){
$filesize = filesize($file);
$lastchanged = date("F d Y - H:i:s",filemtime($file));
$filetype = filetype($file);
if($filetype == "file"){
$filetype = "File";
}elseif($filetype == "dir"){
$filetype = "Directory";
}
if(is_dir($file)){
$url = "?act=show&folder=".$file;
}elseif(!is_dir($file)){
$url = "?act=show&file=".$file;
}
if($file != "." && $file != ".." && $file != "Thumbs.db" && is_dir($file)){
echo "<tr>";
echo "<td width='25%' bgcolor='#cedee4'><input type='checkbox' name='".$file."'> <a href='".$url."'><font id='base-text' style='color:black'>".$file."</font></a></td>";
echo "<td width='25%' bgcolor='#cedee4'><font id='base-text' style='color:black'>".filesize_r($file)." bytes</font></td>";
echo "<td width='25%' bgcolor='#cedee4'><font id='base-text' style='color:black'>".$filetype."</font></td>";
echo "<td width='25%' bgcolor='#cedee4'><font id='base-text' style='color:black'>".$lastchanged."</font></td>";
echo "</tr>";
}
}
closedir($handle);
}
}
}
and here's now i'll display my directories:
PHP Code:
$rootdir = $_SERVER["APPL_PHYSICAL_PATH"];
$subdir = $_SERVER['PHP_SELF'];
$subdir = explode("/", $subdir);
$subdir = $subdir['0'];
$folder = $_GET['folder'];
$pathUrl = $rootdir."\\".$subdir;
$pathSplit = explode("\\", $pathUrl);
$pathSize = sizeof($pathSplit);
$pathReal = $pathSize-2;
$path = $pathSplit[$pathReal];
list_dir($rootdir);
:/ but i will get these errors..:
Quote:
Warning: filesize() [function.filesize]: stat failed for calc.php in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for calc.php in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for calc.php in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for cmd in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for cmd in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for cmd in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for downloadcounter in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for downloadcounter in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for downloadcounter in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for ext-2.0 in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for ext-2.0 in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for ext-2.0 in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for fm in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for fm in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for fm in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for fmp in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for fmp in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for fmp in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for forum in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for forum in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for forum in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for fw in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for fw in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for fw in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for gd in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for gd in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for gd in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for mime.php in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for mime.php in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for mime.php in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for phpadmin in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for phpadmin in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for phpadmin in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for phpbb in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for phpbb in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for phpbb in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for test in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for test in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for test in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
Warning: filesize() [function.filesize]: stat failed for tree in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 43
Warning: filemtime() [function.filemtime]: stat failed for tree in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 44
Warning: filetype() [function.filetype]: Lstat failed for tree in D:\Program Files\Abyss Web Server\htdocs\fmp\index.php on line 45
|
:/ maybe someone can help me and tell me what's wrong