Yeah, OK. I missed that the server had PHP. I was answering at about the same time that you posted that. Let's first make sure the PHP is working/active/turned on. Save this file as test.php and put it on the server and navigate to it:
PHP Code:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<pre>
<?php
$dir = './';
$files1 = scandir($dir);
print_r($files1);
?>
</pre>
</body>
</html>
It should show something like so:
Array
(
[0] => .
[1] => ..
[2] => 12345.htm
[3] => 14
[4] => AHH44Mckye6.swf
[5] => ASongOfSpring_1.swf
[6] => CompPlansShow.htm
[7] => CompPlansShow2.htm
[8] => MSG-3_first_image_large.jpg
[9] => YT-NoAds
[10] => addimage-but.htm
[11] => addimage-but.htm.php
[12] => ajfmrf
[13] => alphaimag . . .
listing out the files and folders in the folder where it is located.
Bookmarks