3
for install protector
1- you should make XOOPS_TRUST_PATH folder out of public_html
2- change permission OOPS_TRUST_PATH folder to 777
3- upload all files and folders to xoops_trust_path and XOOPS_ROOT_PATH
4- open mainfile.php and find this line
define('XOOPS_URL', 'http://www.YOUR_SITE.COM');
and add new line under this like this line
define('XOOPS_TRUST_PATH','/home/YOUR_ACCOUNT/XOOPS_TRUST_PATH'); //insert this
/home/YOUR_ACCOUNT/XOOPS_TRUST_PATH is a physical folder of XOOPS trust path
5- after add XOOPS trust path in mainfile.php you can install protector
6- after install protector you should open mainfile.php again and add change this
if (!isset($xoopsOption['nocommon']) && XOOPS_ROOT_PATH != '' ) {
include XOOPS_ROOT_PATH."/include/common.php";
}
to
include XOOPS_TRUST_PATH.'/modules/protector/include/precheck.inc.php' ;
if (!isset($xoopsOption['nocommon']) && XOOPS_ROOT_PATH != '' ) {
include XOOPS_ROOT_PATH."/include/common.php";
}
include XOOPS_TRUST_PATH.'/modules/protector/include/postcheck.inc.php' ;