Im trying to install hardlink ecchange on my website but it dont seem to be wrking here are the codes which one should i use in the html template file? <!--#include virtual="5d2738bb49e8d1c/hardlinks.html"--> <!--#include file="5d2738bb49e8d1c/hardlinks.html"--> <? @include '5d2738bb49e8d1c/hardlinks.html';?> I tried all non are working am i missing something?
The first two are SSI (Server Side Includes), and the third is an unusual form of PHP. Try this instead: <?php @include('5d2738bb49e8d1c/hardlinks.html'); ?>