Quote:
Originally Posted by KOM
But on the other hand, I run 2 websites and the one website does not have VB so where would I get the http or php code so the staff can upload from the website to the ftp
|
Hi Kom,
i do not have the time to develop this at the moment. If you are familiar with PHP you can do this on your own. :nervous:
Here is the link how HTTP Uploads work:
http://www.devarticles.com/c/a/PHP/C...ript-in-PHP/2/
Check out page2,3 and 4. :bandit:
If you want only specific usergroups to be able to upload via this then just input on the top of your php page:
PHP Code:
if ( $bbuserinfo[groupid] == '6' || $bbuserinfo[groupid] == '5' || $bbuserinfo[groupid] == '7' )
{
your upload code
}
else
{
action for non authorized people
}
Group 6 = admins
Group 5 = Supermods
Group 7 = Mods
This should help you to proceed.
Cheers,