At this point you should change directories into the openbasin directory, and run the setup script by using the following command:
$ cd openbasin
$ ./setup.pl
The setup script creates a ob_config.php file in the openbasin directory and creates symbolic links to this file from other locations within the Openbasin code. The setup script also creates a few directories which are necessary for Openbasin to run properly.
The ob_config.php file needs to be manually edited to reflect settings on the current server before OpenBasin will work. More information conerning this process can be found in the Editing ob_config.php HOWTO.
The last step in this process is to create a symbolic link from the root directory of your website to the ob_config.php file in the openbasin directory as follows:
$ ln -s /path_to_openbasin/ob_config.php /path_to_website/ob_config.php
If you want to be able to access the Openbasin admin pages or interactive documentation from this website you must also create symbolic links to them:
$ ln -s /path_to_openbasin/admin /path_to_website/admin
$ ln -s /path_to_openbasin/documentation /path_to_website/documentation
With this setup the admin pages will be found at http://www.yoursite.com/admin and the documentation will be found at http://www.yoursite.com/documentation where www.yoursite.com should be replaced with the domain name of your website.
|