I haven't used Actinic before and am currently working on a project for a client and having a few problems. I'm guessing this is an overall setup problem with the site as it seems to manifest in a few different ways. I'll explain one example below.
Using this code...
...inside a...
Everything works fine and I get product images next to an image. If I enter an invalid character in a quantity box and hit add to cart I end up on a page in the cgi-bin but with no images.
On the product list page the image tag has a src property of "13330Q06.jpg" which obviously finds it inside the acatalog folder. Inside the cgi-bin the src property is the same but of course the image cannot be found within that folder.
So actinic is forming the links to things not seeming to take the cgi-bin into account. I tried...
...but it started doing some very weird things and linking to the local pathname on my development machine.
I've had the same issues with images linked in the CSS for the site and even the actinic Javascript includes. I've fixed it up to this point with a horrible bodge by sticking any files I need on a totally different server and linking to them absolutely on the other domain which seems to make Actinic ignore them. I can't reuse this bodge for the product images though as obviously it needs to be dynamic so the customer can add their products etc.
I'm hoping this is a simple configuration error on my part. Any help would be greatly appreciated.
I'm using Actinic Designer 9.0.5.0.0.0.JHZA and the host is Actinic themselves.
Many thanks, Steve
Using this code...
Code:
<img src="<actinic:variable name="ProductImageFileName" />" alt="<Actinic:Variable Name="ProductName"/>" text="<Actinic:Variable Name="ProductName"/>" width="150" />
Code:
<actinic:variable name="ProductList" />
On the product list page the image tag has a src property of "13330Q06.jpg" which obviously finds it inside the acatalog folder. Inside the cgi-bin the src property is the same but of course the image cannot be found within that folder.
So actinic is forming the links to things not seeming to take the cgi-bin into account. I tried...
Code:
<img src="/acatalog/<actinic:variable name="ProductImageFileName" />" alt="<Actinic:Variable Name="ProductName"/>" text="<Actinic:Variable Name="ProductName"/>" width="150" />
I've had the same issues with images linked in the CSS for the site and even the actinic Javascript includes. I've fixed it up to this point with a horrible bodge by sticking any files I need on a totally different server and linking to them absolutely on the other domain which seems to make Actinic ignore them. I can't reuse this bodge for the product images though as obviously it needs to be dynamic so the customer can add their products etc.
I'm hoping this is a simple configuration error on my part. Any help would be greatly appreciated.
I'm using Actinic Designer 9.0.5.0.0.0.JHZA and the host is Actinic themselves.
Many thanks, Steve
Comment