checking characters in file name for uploads

6 posts by 3 authors in: Forums > CMS Builder
Last Post: September 19, 2009   (RSS)

By Deborah - September 17, 2009

I have a client who uploaded photos with the ampersand character in the file name. This causes the web page the photos are posted on to not validate.

CMS Builder already replaces spaces in file names with dashes or underscores. It would be nice to replace unacceptable characters with another character during upload... (maybe a request for future software releases?)

Deborah

Re: [gkornbluth] checking characters in file name for uploads

By Deborah - September 17, 2009

Jerry,

Thanks very much for the code snippet and link! I remember seeing something about this in other posts, but never got the full explanation.

Although this method would work for replacing characters in a user input field, I'm not sure that preg_replace would be the answer in the situatiion of image uploads. Using preg_replace in the CMS Builder viewer code may replace the ampersand with a dash in code on the web page, but the url to that image would then no longer match the actual image path that contains the ampersand. The filename of the image would need to be rewritten at the time it is uploaded to the server.

Or am I missing something? (Entirely possible... fairly new at PHP.)

Deborah

Re: [Deborah] checking characters in file name for uploads

By gkornbluth - September 17, 2009

Deborah,

You're probably not missing anything. It's unfortunate that there's no "disallow characters" filter in the upload criteria like there is in the text field criteria. (Or maybe I'm missing something).

As hard as we try, getting clients to follow simple rules is sometime just out of reach...

Chris, Dave or another staff member usually checks the forum and might have an idea.

Best,

Jerry
The first CMS Builder reference book is now available on-line!







Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php

Re: [Deborah] checking characters in file name for uploads

By Chris - September 19, 2009

Hi Deborah,

You probably just need to add a call to htmlspecialchars().

For example,

INPUT: <img src="<?php echo $upload['thumbUrlPath']; ?>" />
OUTPUT: <img src="/cmsAdmin/uploads/thumb/ampersand&test.png" />


INPUT: <img src="<?php echo htmlspecialchars($upload['thumbUrlPath']); ?>" />
OUTPUT: <img src="/cmsAdmin/uploads/thumb/ampersand&amp;test.png" />


Then again, it might be simpler if CMS Builder automatically converted any potentially tricky characters like you originally suggested. I'll add it to my wishlist. :)
All the best,
Chris

Re: [chris] checking characters in file name for uploads

By Deborah - September 19, 2009

Chris,

The solution you provided will work for my needs right now. Thanks!

I agree an automatic solution would be best, ultimately.

Thanks again.
Deborah