Announcement

Collapse
No announcement yet.

How do I get a php include on my checkout pages

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How do I get a php include on my checkout pages

    I use php includes for all my navigation, and we use to have the includes working on our checkout pages too... until I installed the new Actinic Dev 7.0.6 update. Anyway, I reloaded some pages from the original directory and ever since I can't figure out how to get the php includes on my checkout pages?

    I need to put this code on all of the checkout pages:

    <?php
    include "../topnav.php";
    ?>


    Any ideas how to get it done?

    #2
    These pages are generated by Perl script running in your cgi-bin. I'm not sure if code produced by them is accessible to PHP interpretation.

    If it is you'd need the relative path from your cgi-bin to the script. E.g.

    <?php
    include "../acatalog/topnav.php";
    ?>

    Or use an absolute path.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X