Hello,
Is it possible to edit the actinic templates, namely the metatag layout without opening Actinic?
I placed a piece of PHP in it which has caused Actinic to nolonger open. I have a backup from Friday but I would rather not revert to this when I know what the issue is.
For reference my mistake was to place the SectionImageFileName variable directly within a PHP basename function, I had the shortnames turned on so didn't see the inverted commas surrounding the variable name, i.e
This has caused Actinic to freeze and I can nolonger open it. If there are alternative ways around the issue I'm all ears.
Is it possible to edit the actinic templates, namely the metatag layout without opening Actinic?
I placed a piece of PHP in it which has caused Actinic to nolonger open. I have a backup from Friday but I would rather not revert to this when I know what the issue is.
For reference my mistake was to place the SectionImageFileName variable directly within a PHP basename function, I had the shortnames turned on so didn't see the inverted commas surrounding the variable name, i.e
Code:
echo basename("<actinic:variable name="SectionImageFileName " />").PHP_EOL;
Comment