Present in all V9 including 9.0.4.
Images in sub-folders of your site folder whose filenames contain a hash "#" character are not being parsed properly by Actinic at upload page generation time. Previewing also fails.
Demo of problem: Use standard demo site. Make sub-folder Images. Copy x-book1.jpg into Images. Rename to be x-book#1.jpg. Use this image for a product image. Preview or Update and note that no image displays.
Explanation of problem: A filename like Images/x-book#1.jpg is being detected as a file and is being uploaded into the acatalog directory. So far so good. However Actinic isn't stripping the images/ part from the filename when building the page's HTML. We end up with something like <img src="Images/x-book#1.jpg" /> and the file certainly isn't there on the server.
Simple fix is to not use "#" characters in filenames for the moment.
Images in sub-folders of your site folder whose filenames contain a hash "#" character are not being parsed properly by Actinic at upload page generation time. Previewing also fails.
Demo of problem: Use standard demo site. Make sub-folder Images. Copy x-book1.jpg into Images. Rename to be x-book#1.jpg. Use this image for a product image. Preview or Update and note that no image displays.
Explanation of problem: A filename like Images/x-book#1.jpg is being detected as a file and is being uploaded into the acatalog directory. So far so good. However Actinic isn't stripping the images/ part from the filename when building the page's HTML. We end up with something like <img src="Images/x-book#1.jpg" /> and the file certainly isn't there on the server.
Simple fix is to not use "#" characters in filenames for the moment.
Comment