6
As Trabis said, did you check /xoops_data folders/subfolders?
The only other possibility is that there is a conflict between Protector versions.
Did you have Protector installed before? If yes, did you follow the instructions before upgrading?
Do you have any module that is depending on Altsys? On few occasions that was causing a problem as well, so you might update it as well, making sure that the parts of those modules that should be in "XOOPS_TRUST_PATH" are located in /xoops_lib and that the entry in the mainfile.php for "XOOPS_TRUST_PATH" is pointing to that location, e.g.
Quote:
// Physical path to the XOOPS documents (served) directory WITHOUT trailing slash
define( 'XOOPS_ROOT_PATH', '/home/www/xoops' );
// Physical path to the XOOPS library directory WITHOUT trailing slash
define( 'XOOPS_PATH', '/home/xoops_lib' );
// Physical path to the XOOPS datafiles (writable) directory WITHOUT trailing slash
define( 'XOOPS_VAR_PATH', '/home/xoops_data' );
// Alias of XOOPS_PATH, for compatibility, temporary solution
define("XOOPS_TRUST_PATH", XOOPS_PATH);
Please note that for security reasons, the /xoops_lib and /xoops_data are located outside of the main XOOPS directory.