close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Problem with funny file names

Thread began 5/26/2012 10:50 pm by neo314 | Last modified 5/29/2012 12:23 pm by neo314 | 2302 views | 2 replies |

neo314

Problem with funny file names

It seems that files with funny, windows valid, names don't get handled well by resizer.

The file name "joe's & Test1's.1600x1200.jpg" seems to break resizer.

Along with handling that, it would be nice if file names could be specified with the upload behavior. If the client could upload the file joe's & Test1's.1600x1200.jpg and I could rename it, upon upload, to PostImage_[RecordId].jpg, I could avoid this problem entirely.

Sign in to reply to this post

Jason ByrnesWebAssist

although apostrophes and ampersands are valid in file names on Windows systems, they are not valid file names on the web and should be avoided.


you can strip those characters on file upload using the following code on your upload page:

php:
<?php

if(isset($_FILES)) {
    foreach(
$_FILES as $k => $v) {
        
$_FILES[$k]["name"] = str_replace(array("&","\\","'"),"",$_FILES[$k]["name"]);
    }
}
?>
Sign in to reply to this post

neo314

Thanks Jason,

I wanted to point this out because I think the extension should handle this for you.

One might want to add quotes, ampersands, ?,<,>,*,etc to the list to be safe as well as the pipe character. Some of those are not allowed on windows either, but it doesn't hurt to be safe.

Accented chars should also be replaced with equivalents.

It would also be nice to optionally replace spaces with dashes. and the suggestion above about having an option to rename the file by a formula like PostImage_[RecordId].jpg

The file I've attached will also strip the accents and other special characters. I use it for generating seo links, but by allowing periods, it will work for this purpose as well. It is from several functions which can be googled and updated a bit for my purposes.

The code to use it would be:

<?php
require_once("generateSafeLink.php");
if(isset($_FILES)) {
foreach($_FILES as $k => $v) {
$_FILES[$k]["name"] = generateSafeLink($_FILES[$k]["name"],array(),false,true);
}
}
?>
Attached Files
generateSafeLink.zip
Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...