What is your ow_log folder set to, what permission should be 777
What is your ow_log folder set to, what permission should be 777
http://anarchist.ddns.net/anarchyhangout
I had to change rewrite settings for it to install, I had to figure out what would work after hours of internet searching I learned enough to get it installed BUT I can't get it to use my url lol only localhost
<?php
define('OW_URL_HOME', 'http://localhost/anarchyhangout/index.php/');
define('OW_DB_HOST', 'localhost');
define('OW_DB_PORT', null);
define('OW_DB_USER', 'root');
define('OW_DB_PASSWORD', 'MyPassword');
define('OW_DB_NAME', 'OXWALL');
define('OW_DB_PREFIX', 'ow_');
define('OW_DIR_USERFILES', OW_DIR_ROOT.'ow_userfiles'.DS);
define('OW_DIR_STATIC', OW_DIR_ROOT.'ow_static'.DS);
define('OW_URL_STATIC', OW_URL_HOME.'ow_static/');
define('OW_URL_USERFILES', OW_URL_HOME.'ow_userfiles/');
define('OW_DIR_PLUGINFILES', OW_DIR_ROOT.'ow_pluginfiles/');
define('OW_PASSWORD_SALT', '');
define('OW_DIR_CORE', OW_DIR_ROOT.'ow_core'.DS);
define('OW_DIR_INC', OW_DIR_ROOT.'ow_includes'.DS);
define('OW_DIR_LIB', OW_DIR_ROOT.'ow_libraries'.DS);
define('OW_DIR_UTIL', OW_DIR_ROOT.'ow_utilities'.DS);
define('OW_DIR_PLUGIN', OW_DIR_ROOT.'ow_plugins'.DS);
define('OW_DIR_THEME', OW_DIR_ROOT.'ow_themes'.DS);
define('OW_DIR_SYSTEM_PLUGIN', OW_DIR_ROOT.'ow_system_plugins'.DS);
define('OW_DIR_SMARTY', OW_DIR_ROOT.'ow_smarty'.DS);
define('OW_USE_CLOUDFILES', false);
if ( defined('OW_CRON') )
{
define('OW_DEBUG_MODE', false);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}
else
{
/**
* Make changes in this block if you want to enable DEV mode and DEBUG mode
*/
define('OW_DEBUG_MODE', false);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}
Well I fixed it from just going to localhost now lol, one problem fixed one more to go :)
define('OW_DIR_ROOT', dirname(__FILE__) . DS);
this is in the index.php on line 28
http://php.net/manual/en/function.dirname.php
if you scroll down there are notes as well with explanations. :)
instead of this
define('OW_URL_HOME', 'http://localhost/anarchyhangout/index.php/');
go
define('OW_URL_HOME', 'http://YOURDOMAINanarchyhangout/');
so it should be without index.php