George Clarke - 2009-05-10 13:32:15 -
In reply to message 1 from Zehp
Normally, the abrowser is installed in the highest directory or folder that will be browsed. It will normally browse all the subdirectories of that folder. So abrowser will not let you go up in the directory tree. If you do not want to browse any subdirectories then you can find this code in the abrowser.php file:
print "<table border='1' width='100%'>\n";
print "<tr valign='top'>";
print "<td valign='top'>\n";
print "Directories<br>";
$dr->showDirs(TRUE);
print "<br>\n";
if($edit<>""){
and comment out three lines like this:
print "<table border='1' width='100%'>\n";
print "<tr valign='top'>";
//print "<td valign='top'>\n";
//print "Directories<br>";
//$dr->showDirs(TRUE);
print "<br>\n";
if($edit<>""){
Assuming abrowser is installed in the folder you want to look at, it will not display the subdirectory link list and will not be able to go into those folders.
I hope this works for you.
George Clarke