PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Bug Reports (http://www.photopost.com/forum/photopost-pro-bug-reports/)
-   -   Images with special characters in filename won’t display (http://www.photopost.com/forum/photopost-pro-bug-reports/130811-images-special-characters-filename-won-t-display.html)

SpankMe March 6th, 2007 11:46 PM

Images with special characters in filename won’t display
 
Well not in Explorer or Opera, but they do in Firefox.

As you can see here.

http://www.kiwibiker.co.nz/photopost...php/photo/3826

The medium image displays because I put "$bigimage = rawurlencode($bigimage);" in the showpost.php file on line 1521, but the thumbnail and full image won't display.

Chuck S March 7th, 2007 08:58 AM

Try in pp-inc.php placing this line in bold to see if it makes thumbnails show across the board. it think your using some naming convention that messes with those browsers

Code:

Content visible to verified customers only.

SpankMe March 8th, 2007 02:05 AM

It now gets the nothumb.gif instead of missing image. Also all thumbs with a special character in the filename now display nothumb.gif.

Chuck S March 8th, 2007 06:25 AM

Yeah your using some different filename convention no one uses.

My first response would be to say do not use that. All your photos show for me though

SpankMe March 8th, 2007 02:31 PM

The filename uses Korean characters. PhotoPost should be able to handle different languages. I will continue to work on it myself to see if I can fix it. Will have to sort out this problem first thou.

Chuck S March 8th, 2007 04:09 PM

Photopost does not have korean language and to my knowledge noone has every tried uploading files named with special characters. Thats asking for trouble with the browsers out there cause each of those browsers would need to have the appropriate stuff installed to translate those characters otherwise things will not display.

SpankMe March 9th, 2007 09:20 PM

Even files with names like "cold%20kiwi%20013~0.jpg" wont display. So i have done the following and all images now display ok.

showphoto.php
add on line 548:
Code:

Content visible to verified customers only.
pp-inc.php
changed
Code:

Content visible to verified customers only.
to
Code:

Content visible to verified customers only.
showfull.php
add on line 85
Code:

Content visible to verified customers only.
on course this is only tested on my setup with only image filetypes.


All times are GMT -5. The time now is 04:29 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97