PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
if a DocumentIndex catches the request, then yes. However, if there is none, and the DirectoryOptions are set to actually show a directory list, the it's possible. But the directory list is the LAST thing the server will look at comparitively..
evilmonkey wrote:The content I want to find is not linked anywhere. It's a lone file sitting somewhere within a directory, not linked to anything, not linked by anything, and I want to find it. For that, I need to open the directory that It's in, get it's listing, then if there are directories in there, get thir listing, and so fourth, until I find that file.
If files are not linked presumably it's because they are not intended for public viewing. Why do you want to do this?
I'm trying to make a file management system between two of my servers. It's for admins only, to see what files are on what server. Mostly to prevent people from logging in and out of FTP. But I guess that's what'll have to happen if I can't do this. I deem it unsafe to have an FTP connection made by a PHP script, especially to a remote server.