Solved.
When following the documentation for the Webhelp with Feedback I got to this point in the deploy:
This step checks to make sure your output meets all of the requirements for deploying (install). One requirement failed which was the config.php file. The dialog reported that the config.php file was not writable. There was no button to
Install on this page at this point. When I went to the location for this file:
Code: Select all
oxygen-webhelp/resources/php/config/
I found the directory contained index.html file but no config.php file. Since the installation creates the config.php file, I couldn't continue with the installation process.
I first tried creating an empty but writable
file at the proper location. That didn't work. Apparently, the system requires config.php file that has the correct fomat.
Finally, I ended up locating this file
Code: Select all
/Users/Shared/OxygenOutput/webhelp-feedback/install/config-dist.php
--- it appeared to have the correct format. I copied the file to
Code: Select all
oxygen-webhelp/resources/php/config/config.php
Once I did this, the requirements passed and the
Install button was visible. I was able to complete the installation/deployment process.
For future reference, here are the contents of a config.php file:
Code: Select all
<?php
### CONFIGURATION FILE AUTOMATICALLY GENERATED BY THE OXYGEN WEBHELP INSTALLER AT 2014-07-30 01:11:02 ###
### for oxy-webhelp 1.0
// The URL where the webhelp is installed on with trailing /
define('__BASE_URL__',"http://localhost/oxy-webhelp/");
// The relative URL where the webhelp is installed on with trailing /
define('__BASE_PATH__',"/oxy-webhelp/");
// Email address to be used as from in sent emails
define('__EMAIL__',"no-reply@oxygenxml.com");
// Email address to be notified when error occur
define('__ADMIN_EMAIL__',"");
// Send errors to system administartor?
define('__SEND_ERRORS__',true);
// If the system is moderated each post must be confirmed by moderator
define('__MODERATE__', true);
// User session life time in seconds, by default is 7 days
define('__SESSION_LIFETIME__',604800);
// Is unauthenticated user allowed to post comments
define('__GUEST_POST__', true);
// User friendly Product name
define('__PRODUCT_NAME__','oxy-webhelp');
// Show comments form other products with the same version from the same database
//define('__SHARE_WITH__',"'editor','diff'");
// Data base connection info
$dbConnectionInfo['dbName']="comments";
$dbConnectionInfo['dbUser']="oxygen";
$dbConnectionInfo['dbPassword']="oxygen";
$dbConnectionInfo['dbHost']="localhost";
?>