Hey guys,
In case anyone else has the full sized images not showing up CHMOD 600 issue ...
In functions_sr_classifieds_upload.php there is a line saying:
Code:
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
change that to
Code:
if (copy($_FILES['userfile']['tmp_name'], $uploadfile)) {
And files will upload with proper CHMODDING, and show up in the listings.
Apparently this is a result of the version of PHP and the variables set in your PHP.ini. Makes sense because none of the scripts similar to this i've run use the move_file command, all used the copy. Hence my WTF hair pulling yesterday. I didnt even want to begin messing with my server wide or site wide settings, but this worked, so Im good.
Hopefully anyone else experiencing this down the road can use this.