Quote Originally Posted by dw08gm View Post
Hi ladybugmom

Thanks for a great contribution, which I am currently perusing.

In the ReadMeFirst, Point 9 states:
"You can specify which files you do not want uploaded."

Searching through the files for how to do this, I found many references to $up_ignore, and am wondering if this is what Point 9 refers to?

However, while the list of possible exclusions greatly exceeds the 5 provisions for up_ignore, this function also seems limited to whole filenames, eg index.php.

Instead what I want to do is limit the uploads to files with .jpg, .png, .gif, .pdf and .txt extensions only, which is contrary to the up_ignore function.

Could you please enlighten.
Code:
$up_ignore1 = "";
$up_ignore2 = "";
$up_ignore3 = "";
$up_ignore4 = "";
$up_ignore5 = "";
Files to ignore(not list) in the upload directory. ".htaccess" is ignored by default.
The above is listed on the site, I guess I read it as file extensions to ignore. Sorry about that, I have emailed the fella from UPLOAD-POINT to see if he has an answer or if it is even possible to designate extensions. I had planned on a little blurb by the upload button stating which extensions we would except.
I will post his reply as soon as I get it.

Maybe someone here knows more about php code and would know what to put where to designate which files to accept.