installer errors

Hello:

I seem to have found an error with the CRM software: when I upload the latest 7.2 release, change all the required permissions vi SSH, and run the install script it outputs a lot of errors including

Strict Standards: Declaration of SugarEmailAddress::save() should be compatible with SugarBean::save($check_notify = false) in/home/xdstools/public_html/include/SugarEmailAddress/SugarEmailAddress.php on line 1110

Strict Standards: Declaration of Person::create_export_query() should be compatible with SugarBean::create_export_query($order_by, $where) in/home/xdstools/public_html/include/SugarObjects/templates/person/Person.php on line 41

Strict Standards: Declaration of User::retrieve() should be compatible with Person::retrieve($id = -1, $encode = true, $deleted = true) in/home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of User::create_export_query() should be compatible with Person::create_export_query(&$order_by, &$where, $relate_link_join = '') in /home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of User::create_new_list_query() should be compatible with SugarBean::create_new_list_query($order_by, $where, $filter = Array, $params = Array, $show_deleted = 0, $join_type = '', $return_array = false, $parentbean = NULL, $singleSelect = false, $ifListForExport = false) in/home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of User::list_view_parse_additional_sections() should be compatible with SugarBean::list_view_parse_additional_sections(&$list_form) in /home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of Currency::retrieve() should be compatible with SugarBean::retrieve($id = -1, $encode = true, $deleted = true) in/home/xdstools/public_html/modules/Currencies/Currency.php on line 236

Strict Standards: Non-static method UploadStream::register() should not be called statically in /home/xdstools/public_html/include/entryPoint.php on line181

Strict Standards: Non-static method SugarConfig::getInstance() should not be called statically, assuming $this from incompatible context in/home/xdstools/public_html/include/SugarLogger/LoggerManager.php on line 73

Strict Standards: Non-static method SugarConfig::getInstance() should not be called statically, assuming $this from incompatible context in/home/xdstools/public_html/include/SugarLogger/SugarLogger.php on line 118

above the installer, but the installer fields and buttons still seem to show up and function. all the while through the install errors like this are coming up. upon completion of the install i click next and i get these errors:

Strict Standards: Declaration of SugarEmailAddress::save() should be compatible with SugarBean::save($check_notify = false) in /home/xdstools/public_html/include/SugarEmailAddress/SugarEmailAddress.php on line 1110

Strict Standards: Declaration of Person::create_export_query() should be compatible with SugarBean::create_export_query($order_by, $where) in /home/xdstools/public_html/include/SugarObjects/templates/person/Person.php on line 41

Strict Standards: Declaration of User::retrieve() should be compatible with Person::retrieve($id = -1, $encode = true, $deleted = true) in /home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of User::create_export_query() should be compatible with Person::create_export_query(&$order_by, &$where, $relate_link_join = '') in /home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of User::create_new_list_query() should be compatible with SugarBean::create_new_list_query($order_by, $where, $filter = Array, $params = Array, $show_deleted = 0, $join_type = '', $return_array = false, $parentbean = NULL, $singleSelect = false, $ifListForExport = false) in /home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of User::list_view_parse_additional_sections() should be compatible with SugarBean::list_view_parse_additional_sections(&$list_form) in /home/xdstools/public_html/modules/Users/User.php on line 41

Strict Standards: Declaration of Currency::retrieve() should be compatible with SugarBean::retrieve($id = -1, $encode = true, $deleted = true) in /home/xdstools/public_html/modules/Currencies/Currency.php on line 236

Strict Standards: Non-static method UploadStream::register() should not be called statically in /home/xdstools/public_html/include/entryPoint.php on line 181

Strict Standards: Non-static method SugarConfig::getInstance() should not be called statically, assuming $this from incompatible context in /home/xdstools/public_html/include/SugarLogger/LoggerManager.php on line 73

Strict Standards: Non-static method SugarConfig::getInstance() should not be called statically, assuming $this from incompatible context in /home/xdstools/public_html/include/SugarLogger/SugarLogger.php on line 118

Strict Standards: Declaration of MysqlManager::checkQuery() should be compatible with DBManager::checkQuery($sql, $object_name = false) in /home/xdstools/public_html/include/database/MysqlManager.php on line 1497

Strict Standards: Non-static method LogicHook::initialize() should not be called statically in /home/xdstools/public_html/include/entryPoint.php on line 236

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/xdstools/public_html/include/SugarEmailAddress/SugarEmailAddress.php:1110) in /home/xdstools/public_html/include/MVC/SugarApplication.php on line 594

Strict Standards: Non-static method LogicHook::initialize() should not be called statically, assuming $this from incompatible context in /home/xdstools/public_html/include/MVC/SugarApplication.php on line 611

Warning: Cannot modify header information - headers already sent by (output started at /home/xdstools/public_html/include/SugarEmailAddress/SugarEmailAddress.php:1110) in /home/xdstools/public_html/include/utils.php on line 2695

Strict Standards: Non-static method ControllerFactory::getController() should not be called statically, assuming $this from incompatible context in /home/xdstools/public_html/include/MVC/SugarApplication.php on line 71

Strict Standards: Non-static method LogicHook::initialize() should not be called statically in /home/xdstools/public_html/include/utils.php on line 3014

Strict Standards: Non-static method Tracker::logPage() should not be called statically in /home/xdstools/public_html/include/utils.php on line 3025

Strict Standards: Non-static method SugarConfig::getInstance() should not be called statically in /home/xdstools/public_html/include/utils/sugar_file_utils.php on line 362

I’ve even gone as far as going back to version 7.1x with still the same bugs. Any idea?

Hi there,

These are strict standar errors, normally experienced in PHP 5.4/5.5.

You can set the following:

ini_set(‘display_errors’, ‘0’); # don’t show any errors…
error_reporting(E_ALL | E_STRICT); # …but do log them

This should resolve your issue.

Thanks,

Will.

Hi,
I have errors when installing 7.1.4 using installatron on cpanel on centos - any suggestions welcomed?
thanks

Strict Standards: Declaration of SugarEmailAddress::save() should be compatible with SugarBean::save($check_notify = false) in /home/connectme/public_html/scrm/include/SugarEmailAddress/SugarEmailAddress.php on line 1113

Strict Standards: Declaration of Person::create_export_query() should be compatible with SugarBean::create_export_query($order_by, $where) in /home/connectme/public_html/scrm/include/SugarObjects/templates/person/Person.php on line 44

Strict Standards: Declaration of User::retrieve() should be compatible with Person::retrieve($id = -1, $encode = true, $deleted = true) in /home/connectme/public_html/scrm/modules/Users/User.php on line 44

Strict Standards: Declaration of User::create_export_query() should be compatible with Person::create_export_query(&$order_by, &$where, $relate_link_join = ‘’) in /home/connectme/public_html/scrm/modules/Users/User.php on line 44

Strict Standards: Declaration of User::create_new_list_query() should be compatible with SugarBean::create_new_list_query($order_by, $where, $filter = Array, $params = Array, $show_deleted = 0, $join_type = ‘’, $return_array = false, $parentbean = NULL, $singleSelect = false, $ifListForExport = false) in /home/connectme/public_html/scrm/modules/Users/User.php on line 44

Strict Standards: Declaration of User::list_view_parse_additional_sections() should be compatible with SugarBean::list_view_parse_additional_sections(&$list_form) in /home/connectme/public_html/scrm/modules/Users/User.php on line 44

Strict Standards: Declaration of Currency::retrieve() should be compatible with SugarBean::retrieve($id = -1, $encode = true, $deleted = true) in /home/connectme/public_html/scrm/modules/Currencies/Currency.php on line 239

Strict Standards: Non-static method UploadStream::register() should not be called statically in /home/connectme/public_html/scrm/include/entryPoint.php on line 184

Strict Standards: Non-static method SugarConfig::getInstance() should not be called statically, assuming $this from incompatible context in /home/connectme/public_html/scrm/include/SugarLogger/LoggerManager.php on line 76

Strict Standards: Non-static method SugarConfig::getInstance() should not be called statically, assuming $this from incompatible context in /home/connectme/public_html/scrm/include/SugarLogger/SugarLogger.php on line 121

Strict Standards: Declaration of MysqlManager::checkQuery() should be compatible with DBManager::checkQuery($sql, $object_name = false) in /home/connectme/public_html/scrm/include/database/MysqlManager.php on line 1500

Fatal error: Call to undefined function mysqli_connect() in /home/connectme/public_html/scrm/include/database/MysqliManager.php on line 281

Strict Standards: Non-static method LogicHook::initialize() should not be called statically in /home/connectme/public_html/scrm/include/utils.php on line 3017

Strict Standards: Non-static method Tracker::logPage() should not be called statically in /home/connectme/public_html/scrm/include/utils.php on line 3028

IZI: You have a Fatal error: Call to undefined function mysqli_connect() in /home/connectme/public_html/scrm/include/database/MysqliManager.php on line 281

This means the mysqli php extension is not installed in your server. You will have to get your hosting provider to install it also as Wil has said you need to turn of strict standards in your php.ini