On a site I am using a User Defined Tag, that uses PHP include('') to call another CMSMS page and display it as a menu on the site.
This used to work fine, but recently we are no longer able to use PHP Remote includes, (our code was
Code: Select all
include ("http://www.sitename.com/cmsmadesimple/index.php?page=main-menu");
I've tried
Code: Select all
include ("index.php?page=main-menu");
Any thoughts?