I'd just like to thank you for making this piece of software. The site I am a developer on is prone to hacking attempts (for files, specifically), but we still needed a way for our project teams to easily share files from a web based interface. I thought of using PHP and MySQL to hold the files, but I was very glad when I found this software instead. It saved me many hours of coding. Thanks again. I know programmers don't hear that often enough. ;)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Actually, it seems there's a few quirks we've been having. The admin of the website I'm working on posted a bug report yesterday or today. Do you think you could take a look at it? Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hmm....yeah, register_globals is on, but we have PHP 4.1.2. I've read the other forum, so I know we need a later version. Is there any hacks I could make to the code to get it to work on 4.1.2?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'd just like to thank you for making this piece of software. The site I am a developer on is prone to hacking attempts (for files, specifically), but we still needed a way for our project teams to easily share files from a web based interface. I thought of using PHP and MySQL to hold the files, but I was very glad when I found this software instead. It saved me many hours of coding. Thanks again. I know programmers don't hear that often enough. ;)
Much appreciated, not many bother to give thanks.
Let me know if you have any trouble with it.
Actually, it seems there's a few quirks we've been having. The admin of the website I'm working on posted a bug report yesterday or today. Do you think you could take a look at it? Thanks.
What version of php are you running?
Do you have register_globals on/off?
Hmm....yeah, register_globals is on, but we have PHP 4.1.2. I've read the other forum, so I know we need a later version. Is there any hacks I could make to the code to get it to work on 4.1.2?
There is no way to get it to work with earlier versions of PHP, or with register_globals on.
This system using variables and some functions specific to the versions outlined in the requirements.
FYI, register_globals can be turned on/off on a per site basis if you are using apache. This can done done using the directive:
'php_value register_globals 0'
in an htaccess file or within a virtualhost directive.