04-May-2018, 05:47 PM
Thanks for what seems to be an awesome program. I'm intending to purchase a license once i confirm that it will work for me. Hoping i can ask a question in the meantime.
I am trying to install this on existing SHTML pages.
I've added the following to my .htaccess file so that the php code will execute:
This is working in terms of the PHP code executing. The problem is that this seems to block the server side include calls from working. A typical include for my site looks like this:
Is there a way to get PHP working on a SHTML page while still allowing the includes?
(If this isn't an appropriate question for this forum, please let me know. I thought about asking on Stack Overflow first, but i thought that people here would better understand why i was doing this and also may have run into it before.)
I am trying to install this on existing SHTML pages.
I've added the following to my .htaccess file so that the php code will execute:
Code:
AddHandler application/x-httpd-php .shtml
AddType application/x-httpd-php .shtml
This is working in terms of the PHP code executing. The problem is that this seems to block the server side include calls from working. A typical include for my site looks like this:
Code:
<!--#INCLUDE Virtual="/chronocomic/ccsidenav.shtml"-->
Is there a way to get PHP working on a SHTML page while still allowing the includes?
(If this isn't an appropriate question for this forum, please let me know. I thought about asking on Stack Overflow first, but i thought that people here would better understand why i was doing this and also may have run into it before.)