Hello,
after downloading and installing mywebftp03rc1.zip I had to solve 2
little bugs bevor MyWebFTP getting to work:
# index.php, line 23:
WRONG: if ($found=0) $_SESSION['lang']="en";
Right: if ($found===0) $_SESSION['lang']="en";
# index.php, line 349:
WRONG: if ($a==0) $_SESSION['dossier']=$racinedusite;
Right: if ($a===0) $_SESSION['dossier']=$racinedusite;
Done to Save-Mode restrictions, additionally I had to change file
permissions:
# Documentation: Will not run in safe mode, unless you can do a
successfully
chmod --recursive <webserverUID>.<webserverGUI>
<configRoot>
where <configRoot> is specified by $racinedusite.
Example:
Assume, you have the following directories on your webserver:
<WebserverRoot>/webftp/mwftp/ # here lives all package files
where <WebserverRoot>/webftp/ is configured as root (the
default "..").
Assume further, your webserver does run under UID "wwwrun"
and GUI "wwwgroup".
Then you must execute after unpacking the package:
# cd <WebserverRoot>
# chmod --recursive wwwrun.wwwgroup webftp
It would be very nice if You could include the hint above in the
documentation, e.g. in file README.txt and fix the 2 bugs.
Thanks in advance!
Logged In: YES
user_id=887049
I'll have a look at it ...
thank you for your feed-back about directories permissions
ps: I have been offline for two month, sorry for the late answer