Quote:
Originally posted by Gutspiller
yes, baby steps would be good for my noobie a$$. 
|
Ok, here goes:
In the line below that reads:
PHP Code:
function randomString($length=15){
CHANGE that to
PHP Code:
function randomString12345($length=15){
Then find the line that reads:
PHP Code:
$ran_file_name = "ri_" . randomString();
and CHANGE that to
PHP Code:
$ran_file_name = "ri_" . randomString12345();
And then let me know what happens.