Boonex install on plain system

Hey all,

1st post here, please forgive me.  I've installed boonex on a plain system, ie no control panel, it's a personal lan which I'm using strictly for testing.  Otherwise, I've whipped out over 200 boonex installs.  Anyways, I'm receiving a nasty set of errors after install.  I will post here, but keep in mind, they're many:

"register_globals is On (warning, you should have this param in Off state, or your site will unsafe)'; //$aErrors[] = (ini_get('safe_mode') == 0) ? '' : 'safe_mode is On, disable it'; //$aErrors[] = (ini_get('allow_url_fopen') == 0) ? 'Off (warning, better keep this parameter in On to able register Dolphin' : ''; //$aErrors[] = (version_compare(PHP_VERSION, '5.2.0', '<')) ? 'PHP version too old, please update to PHP 5.2.0 at least' : ''; //$aErrors[] = (! extension_loaded( 'mbstring')) ? 'mbstring extension not installed. Warning! Dolphin cannot work without mbstring extension.' : ''; /*if (version_compare(phpversion(), "5.3", ">") == 1) { $aErrors[] = (ini_get('allow_url_include') == 0) ? '' : 'allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)'; };*/ $aErrors = array_diff($aErrors, array('')); //delete empty if (count($aErrors)) { $sErrors = implode("
", $aErrors); echo <<
Please go to the
Dolphin Troubleshooter
and solve the problem. EOF; exit; } } //check correct hostname $aUrl = parse_url( $site['url'] ); if( isset($_SERVER['HTTP_HOST']) and 0 != strcasecmp($_SERVER['HTTP_HOST'], $aUrl['host']) and 0 != strcasecmp($_SERVER['HTTP_HOST'], $aUrl['host'] . ':80') ) { header( "Location:http://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" ); exit; } // check if install folder exists if ( !defined ('BX_SKIP_INSTALL_CHECK') && file_exists( $dir['root'] . 'install' ) ) { $ret = <<

Dolphin Installed
Please, remove INSTALL directory from your server and reload this page to activate your community site.
NOTE: Once you remove this page you can safely install modules via Admin Panel.
EOJ; echo $ret; exit(); } // set error reporting level if (version_compare(phpversion(), "5.3.0", ">=") == 1) error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED); else error_reporting(E_ALL & ~E_NOTICE); set_magic_quotes_runtime(0); ini_set('magic_quotes_sybase', 0); // set default encoding for multibyte functions mb_internal_encoding('UTF-8'); mb_regex_encoding('UTF-8'); require_once(BX_DIRECTORY_PATH_INC . "security.inc.php"); require_once(BX_DIRECTORY_PATH_ROOT . "flash/modules/global/inc/header.inc.php"); require_once(BX_DIRECTORY_PATH_ROOT . "flash/modules/global/inc/content.inc.php"); require_once(BX_DIRECTORY_PATH_CLASSES . "BxDolService.php"); require_once(BX_DIRECTORY_PATH_CLASSES . 'BxDolAlerts.php'); $oZ = new BxDolAlerts('system', 'begin', 0); $oZ->alert(); ?> Notice: Use of undefined constant BX_DIRECTORY_PATH_INC - assumed 'BX_DIRECTORY_PATH_INC' in /var/www/html/dolphin/inc/design.inc.php on line 22 Call Stack: 0.0007 334868 1. {main}() /var/www/html/dolphin/index.php:0 0.0051 481724 2. require_once('/var/www/html/dolphin/inc/design.inc.php') /var/www/html/dolphin/index.php:41 Warning: require_once(BX_DIRECTORY_PATH_INCadmin.inc.php): failed to open stream: No such file or directory in /var/www/html/dolphin/inc/design.inc.php on line 22 Call Stack: 0.0007 334868 1. {main}() /var/www/html/dolphin/index.php:0 0.0051 481724 2. require_once('/var/www/html/dolphin/inc/design.inc.php') /var/www/html/dolphin/index.php:41 Fatal error: require_once(): Failed opening required 'BX_DIRECTORY_PATH_INCadmin.inc.php' (include_path='.:/usr/share/pear:/usr/share/php') in /var/www/html/dolphin/inc/design.inc.php on line 22 Call Stack: 0.0007 334868 1. {main}() /var/www/html/dolphin/index.php:0 0.0051 481724 2. require_once('/var/www/html/dolphin/inc/design.inc.php') /var/www/html/dolphin/index.php:41"

I've done some editing, but maybe this is a simple fix....
Quote · 7 Jan 2010

Check your php.ini file. It looks like the option for short_open_tags is off. It needs to be on.

short_open_tags=on

https://www.deanbassett.com
Quote · 7 Jan 2010

You're awesome.  Thank you so much; that had my brain bleeding... no real answer in errors.  Can you shed any light on the following:

"Warning: mktime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /var/www/html/dolphin/templates/base/scripts/BxBaseFunctions.php on line 157 Call Stack: 0.0008 336520 1. {main}() /var/www/html/dolphin/index.php:0 0.3152 7489744 2. BxDolPageView->getCode() /var/www/html/dolphin/index.php:75 0.3152 7489744 3. BxDolPageView->gen() /var/www/html/dolphin/inc/classes/BxDolPageView.php:241 0.3165 7490016 4. BxDolPageView->genColumn() /var/www/html/dolphin/inc/classes/BxDolPageView.php:203 0.3726 7510976 5. BxDolPageView->genBlock() /var/www/html/dolphin/inc/classes/BxDolPageView.php:273 0.3732 7511152 6. BxBaseIndexPageView->getBlockCode_Featured() /var/www/html/dolphin/inc/classes/BxDolPageView.php:332 0.3734 7511396 7. BxBaseIndexPageView->getMembers() /var/www/html/dolphin/templates/base/scripts/BxBaseIndexPageView.php:222 0.3752 7514608 8. MsgBox() /var/www/html/dolphin/templates/base/scripts/BxBaseIndexPageView.php:397 0.3752 7514636 9. BxBaseFunctions->msgBox() /var/www/html/dolphin/inc/design.inc.php:213 0.3752 7514708 10. mktime() /var/www/html/dolphin/templates/base/scripts/BxBaseFunctions.php:15"

Quote · 7 Jan 2010

The first one, no prob. I have seen it in the forums here so many times.

However, that one you just posted i have never seen before.

Kinda makes me wonder what your trying to run dolphin on and if you checked to make sure all of the dolphin requirements have been met.

https://www.deanbassett.com
Quote · 7 Jan 2010

I really appreciate your help deano.  The first one helped a ton ;)

Quote · 7 Jan 2010

Add this to your php.ini file: date_default_timezone_set('Time/Zone');

Replace accordingly (for a list of timezones, check: http://my.php.net/manual/en/timezones.php).

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 7 Jan 2010

Hey, thanks again!  I love this community lol!  Not the exact parameter but the following worked:

uncommented (removed ;) from date.timezone = in php.ini and added: date.timezone = ('America/New_York');

Thanks so much... team?  :)

Quote · 7 Jan 2010

Hey, thanks again!  I love this community lol!  Not the exact parameter but the following worked:

uncommented (removed ;) from date.timezone = in php.ini and added: date.timezone = ('America/New_York');

Thanks so much... team?  :)

Forgive an old sea dog for being a bit out of it late in the evening; at least I was partially right Tongue out.

Hope everything works for you.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 7 Jan 2010

'old sea dog' and deano I appreciate your help.  This has helped me and hopefully will help others (who the hell doesn't use a control panel?) more than me.

Quote · 7 Jan 2010

I don't on my home test system. But i have redone a centos system from scratch so many times, i can set it up in my sleep.

But thats my system. If is was a centos system that a hosting provider installed the os on, that would be different. All server admins setup their servers different.

Anyhow, lots of fun.

https://www.deanbassett.com
Quote · 7 Jan 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.