Power CMS uses a security assist access rule to show or hide the live editing icon, this will conflict with existing security assist pages,
To get around the problem:
create a copy of the PowerCMS/WA_CMS/WA_CMS.php file, save it as WA_CMS2.php
In the backup version, comment out line 5:
//require_once( "../WA_SecurityAssist/Helper_PHP.php" );
on your pages, change the following:
<?php include("PowerCMS/WA_CMS/WA_CMS.php"); ?>
This will disable the live editing feature, but will get around the error message.
to:
<?php include("PowerCMS/WA_CMS/WA_CMS2.php"); ?>


