I have an external PHP file that runs an image resizing script. The script works perfectly well outside of actinic but as soon as I try to incorperate it within Actinic it doesnt seem to execute.
The original line within the wqorking test html is -
Putting it into actinic I have changed it to -
Then when uploaded it produces -
Which is right other than the slashes being the wrong way, it hasnt been converted into a web path.
Anybody know what the problem is.
I have had a look at the image resizing method in KB but he results arent as sharp and it produces extra files.
The original line within the wqorking test html is -
Code:
<img src="thumb.php?src=/image/1151.jpg&w=103&h=200&zc=0" alt="" />
Code:
<img src="thumb.php?src=<actinic:variable name="ProductImageFileName" />&w=103&h=200&zc=0" alt="<actinic:variable name="ProductName" />" />
Code:
<img src="thumb.php?src=images\products\1850.jpg&w=103&h=200&zc=0" alt="B-Gluco Balance x 90 Caps" />
Anybody know what the problem is.
I have had a look at the image resizing method in KB but he results arent as sharp and it produces extra files.
Comment