We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

FTP password bug | Forum

dave Leader
dave Oct 2 '16
There is a ftp password bug that if your password starts with a $ or has a $ in the pw (other than the last character) the ftp will not connect. 


The reason for this is because the script originally stores the password entered as "password" (double quotes) rather than 'password' (single quotes).  The single quotes in php mean that the value is taken as is.  With using the double quotes the system treats the password as a variable for example $value unless the $ is at the end of the pw.  


So for example a password of  $12345 the system sees and empty variable named $12345


a password of 123$45 the system sees 123 and a empty variable named $45


hope that makes sense. 


Thanks.. 

ross Team
ross Oct 3 '16
Thanks for the report. We'll pass it to our devs.