9
Well at first as stated by others here WF-Sections should be installable on that XOOPS version. You are not supposed to need to do any meddling within the files to get it installed.
1. after upload did you have a folder modules/wfsection and the file xoops_version.php was right within that folder? Because if it was not you didn´t get the directory structure right
2. i have seen several cases lately (check our forum lol) where files were incomplete after upload. Hence i would suggest redownload the wf-s archive and upload the files again
3. do a search on this site for "open_basedir restriction" or such and you will find it mostly resolves in server changes, server configuration or wasn´t figured out.
Probably wanna double check mainfile.php, verify your physical server path to be correct.
Quote:
Bassman wrote:
I read this trick somewhere here to find out your root path:
Make a new file, call it rootpath.php or something like that. Your file should contain the following:
Quote:
// Use this script to get the physical root path of your server
// Just upload this file to the main directory and point your browser to it
//<ahref=\"http://your_xoops_directory/rootpath.php\"target=\"_blank\">http://your_xoops_directory/rootpath.php</a>
<?php
echo "Your root path is<b>".str_replace("\\","/",getcwd())."</b><br/>";echo "without string replace:<b>".str_replace("\\","/",getcwd())."</b>";
?>
Just upload this to your XOOPS installation directory - ie where your install.php file is - then point your browser to the file: http://www.yoursite.com/yoursubdirectory/rootpath.php
replacing the above with your actual URL of course.
That should give you your actual rootpath.