Vawiz Posted October 30, 2023 Share Posted October 30, 2023 Hello? Kindly visit this link and help me resolve. Thanks Link : https://www.davisvawiz.buzz/Client/a/view_ssl/ Quote Link to comment Share on other sites More sharing options...
Anyx Posted October 30, 2023 Share Posted October 30, 2023 5 hours ago, Vawiz said: Hello? Kindly visit this link and help me resolve. Thanks Link : https://www.davisvawiz.buzz/Client/a/view_ssl/ You'll need to debug the issue; you can do that by changing "production" to "environment" in the 56th line of the root index.php, then revisiting the link: https://github.com/mahtab2003/Xera/blob/dev/index.php#L56 You'll see some deprecation issues; ignore those and scroll down to the bottom, the last issue should be the one applicable (if not, share them all in a paste or here). Quote Link to comment Share on other sites More sharing options...
Vawiz Posted October 30, 2023 Author Share Posted October 30, 2023 1 hour ago, Anyx said: You'll need to debug the issue; you can do that by changing "production" to "environment" in the 56th line of the root index.php, then revisiting the link: https://github.com/mahtab2003/Xera/blob/dev/index.php#L56 You'll see some deprecation issues; ignore those and scroll down to the bottom, the last issue should be the one applicable (if not, share them all in a paste or here). I get this error : The application environment is not set correctly. On my all xera links Quote Link to comment Share on other sites More sharing options...
Vawiz Posted October 30, 2023 Author Share Posted October 30, 2023 1 hour ago, Vawiz said: I get this error : The application environment is not set correctly. On my all xera links Here is the code <?php /** * CodeIgniter * * An open source application development framework for PHP * * This content is released under the MIT License (MIT) * * Copyright (c) 2014 - 2019, British Columbia Institute of Technology * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @package CodeIgniter * @author EllisLab Dev Team * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) * @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/) * @license https://opensource.org/licenses/MIT MIT License * @link https://codeigniter.com * @since Version 1.0.0 * @filesource */ /* *--------------------------------------------------------------- * APPLICATION ENVIRONMENT *--------------------------------------------------------------- * * You can load different configurations depending on your * current environment. Setting the environment also influences * things like logging and error reporting. * * This can be set to anything, but default usage is: * * development * testing * production * * NOTE: If you change these, also change the error_reporting() code below */ define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'environment'); /* *--------------------------------------------------------------- * ERROR REPORTING *--------------------------------------------------------------- * * Different environments will require different levels of error reporting. * By default development will show errors but testing and live will hide them. */ switch (ENVIRONMENT) { case 'development': error_reporting(-1); ini_set('display_errors', 1); break; case 'testing': case 'production': ini_set('display_errors', 0); if (version_compare(PHP_VERSION, '5.3', '>=')) { error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED); } else { error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_USER_NOTICE); } break; default: header('HTTP/1.1 503 Service Unavailable.', TRUE, 503); echo 'The application environment is not set correctly.'; exit(1); // EXIT_ERROR } /* *--------------------------------------------------------------- * SYSTEM DIRECTORY NAME *--------------------------------------------------------------- * * This variable must contain the name of your "system" directory. * Set the path if it is not in the same directory as this file. */ $system_path = 'system'; /* *--------------------------------------------------------------- * APPLICATION DIRECTORY NAME *--------------------------------------------------------------- * * If you want this front controller to use a different "application" * directory than the default one you can set its name here. The directory * can also be renamed or relocated anywhere on your server. If you do, * use an absolute (full) server path. * For more info please see the user guide: * * https://codeigniter.com/user_guide/general/managing_apps.html * * NO TRAILING SLASH! */ $application_folder = 'app'; /* *--------------------------------------------------------------- * VIEW DIRECTORY NAME *--------------------------------------------------------------- * * If you want to move the view directory out of the application * directory, set the path to it here. The directory can be renamed * and relocated anywhere on your server. If blank, it will default * to the standard location inside your application directory. * If you do move this, use an absolute (full) server path. * * NO TRAILING SLASH! */ $view_folder = 'template'; /* * -------------------------------------------------------------------- * DEFAULT CONTROLLER * -------------------------------------------------------------------- * * Normally you will set your default controller in the routes.php file. * You can, however, force a custom routing by hard-coding a * specific controller class/function here. For most applications, you * WILL NOT set your routing here, but it's an option for those * special instances where you might want to override the standard * routing in a specific front controller that shares a common CI installation. * * IMPORTANT: If you set the routing here, NO OTHER controller will be * callable. In essence, this preference limits your application to ONE * specific controller. Leave the function name blank if you need * to call functions dynamically via the URI. * * Un-comment the $routing array below to use this feature */ // The directory name, relative to the "controllers" directory. Leave blank // if your controller is not in a sub-directory within the "controllers" one // $routing['directory'] = ''; // The controller class file name. Example: mycontroller // $routing['controller'] = ''; // The controller function you wish to be called. // $routing['function'] = ''; /* * ------------------------------------------------------------------- * CUSTOM CONFIG VALUES * ------------------------------------------------------------------- * * The $assign_to_config array below will be passed dynamically to the * config class when initialized. This allows you to set custom config * items or override any default config values found in the config.php file. * This can be handy as it permits you to share one application between * multiple front controller files, with each file containing different * config values. * * Un-comment the $assign_to_config array below to use this feature */ // $assign_to_config['name_of_config_item'] = 'value of config item'; // -------------------------------------------------------------------- // END OF USER CONFIGURABLE SETTINGS. DO NOT EDIT BELOW THIS LINE // -------------------------------------------------------------------- /* * --------------------------------------------------------------- * Resolve the system path for increased reliability * --------------------------------------------------------------- */ // Set the current directory correctly for CLI requests if (defined('STDIN')) { chdir(dirname(__FILE__)); } if (($_temp = realpath($system_path)) !== FALSE) { $system_path = $_temp.DIRECTORY_SEPARATOR; } else { // Ensure there's a trailing slash $system_path = strtr( rtrim($system_path, '/\\'), '/\\', DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR ).DIRECTORY_SEPARATOR; } // Is the system path correct? if ( ! is_dir($system_path)) { header('HTTP/1.1 503 Service Unavailable.', TRUE, 503); echo 'Your system folder path does not appear to be set correctly. Please open the following file and correct this: '.pathinfo(__FILE__, PATHINFO_BASENAME); exit(3); // EXIT_CONFIG } /* * ------------------------------------------------------------------- * Now that we know the path, set the main path constants * ------------------------------------------------------------------- */ // The name of THIS file define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME)); // Path to the system directory define('BASEPATH', $system_path); // Path to the front controller (this file) directory define('FCPATH', dirname(__FILE__).DIRECTORY_SEPARATOR); // Name of the "system" directory define('SYSDIR', basename(BASEPATH)); // The path to the "application" directory if (is_dir($application_folder)) { if (($_temp = realpath($application_folder)) !== FALSE) { $application_folder = $_temp; } else { $application_folder = strtr( rtrim($application_folder, '/\\'), '/\\', DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR ); } } elseif (is_dir(BASEPATH.$application_folder.DIRECTORY_SEPARATOR)) { $application_folder = BASEPATH.strtr( trim($application_folder, '/\\'), '/\\', DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR ); } else { header('HTTP/1.1 503 Service Unavailable.', TRUE, 503); echo 'Your application folder path does not appear to be set correctly. Please open the following file and correct this: '.SELF; exit(3); // EXIT_CONFIG } define('APPPATH', $application_folder.DIRECTORY_SEPARATOR); // The path to the "views" directory if ( ! isset($view_folder[0]) && is_dir(APPPATH.'views'.DIRECTORY_SEPARATOR)) { $view_folder = APPPATH.'views'; } elseif (is_dir($view_folder)) { if (($_temp = realpath($view_folder)) !== FALSE) { $view_folder = $_temp; } else { $view_folder = strtr( rtrim($view_folder, '/\\'), '/\\', DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR ); } } elseif (is_dir(APPPATH.$view_folder.DIRECTORY_SEPARATOR)) { $view_folder = APPPATH.strtr( trim($view_folder, '/\\'), '/\\', DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR ); } else { header('HTTP/1.1 503 Service Unavailable.', TRUE, 503); echo 'Your view folder path does not appear to be set correctly. Please open the following file and correct this: '.SELF; exit(3); // EXIT_CONFIG } define('VIEWPATH', $view_folder.DIRECTORY_SEPARATOR); /* * -------------------------------------------------------------------- * LOAD THE BOOTSTRAP FILE * -------------------------------------------------------------------- * * And away we go... */ require_once BASEPATH.'core/CodeIgniter.php'; Quote Link to comment Share on other sites More sharing options...
Anyx Posted October 31, 2023 Share Posted October 31, 2023 5 hours ago, Vawiz said: define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'environment'); I'm sorry; I confused you. I meant to write "development", but wrote "environment" by accident. Setting it to "development" should work. Quote Link to comment Share on other sites More sharing options...
Vawiz Posted October 31, 2023 Author Share Posted October 31, 2023 (edited) i got a list of errors pointing to line 315 Edited October 31, 2023 by Vawiz Quote Link to comment Share on other sites More sharing options...
Vawiz Posted October 31, 2023 Author Share Posted October 31, 2023 1 hour ago, Anyx said: I'm sorry; I confused you. I meant to write "development", but wrote "environment" by accident. Setting it to "development" should work. A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property CI_URI::$config is deprecated Filename: core/URI.php Line Number: 101 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property CI_Router::$uri is deprecated Filename: core/Router.php Line Number: 127 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$benchmark is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$hooks is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$config is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$log is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$utf8 is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$uri is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$exceptions is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$router is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$output is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$security is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$input is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$lang is deprecated Filename: core/Controller.php Line Number: 82 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$db is deprecated Filename: core/Loader.php Line Number: 396 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property CI_DB_mysqli_driver::$failover is deprecated Filename: database/DB_driver.php Line Number: 371 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Return type of CI_Session_files_driver::open($save_path, $name) should either be compatible with SessionHandlerInterface::open(string $path, string $name): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice Filename: drivers/Session_files_driver.php Line Number: 132 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Return type of CI_Session_files_driver::close() should either be compatible with SessionHandlerInterface::close(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice Filename: drivers/Session_files_driver.php Line Number: 294 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Return type of CI_Session_files_driver::read($session_id) should either be compatible with SessionHandlerInterface::read(string $id): string|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice Filename: drivers/Session_files_driver.php Line Number: 168 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Return type of CI_Session_files_driver::write($session_id, $session_data) should either be compatible with SessionHandlerInterface::write(string $id, string $data): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice Filename: drivers/Session_files_driver.php Line Number: 237 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Return type of CI_Session_files_driver::destroy($session_id) should either be compatible with SessionHandlerInterface::destroy(string $id): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice Filename: drivers/Session_files_driver.php Line Number: 317 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Return type of CI_Session_files_driver::gc($maxlifetime) should either be compatible with SessionHandlerInterface::gc(int $max_lifetime): int|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice Filename: drivers/Session_files_driver.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: ini_set(): Session ini settings cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 282 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 289 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: ini_set(): Session ini settings cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 304 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: ini_set(): Session ini settings cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 314 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: ini_set(): Session ini settings cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 315 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: ini_set(): Session ini settings cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 316 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: ini_set(): Session ini settings cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 317 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: ini_set(): Session ini settings cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 375 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent Filename: Session/Session.php Line Number: 110 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: session_start(): Session cannot be started after headers have already been sent Filename: Session/Session.php Line Number: 143 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$session is deprecated Filename: core/Loader.php Line Number: 1283 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$base is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 7 Function: __construct File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$smtp is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Mailer.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/User.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$email is deprecated Filename: core/Loader.php Line Number: 1283 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Mailer.php Line: 9 Function: library File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/User.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$mailer is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/User.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$user is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$admin is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 9 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$ticket is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 10 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Optional parameter $where declared before required parameter $prefix is implicitly treated as a required parameter Filename: models/Mofh.php Line Number: 452 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Account.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 11 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property Mofh::$m is deprecated Filename: models/Mofh.php Line Number: 10 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Mofh.php Line: 10 Function: _error_handler File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Account.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 11 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$mofh is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Account.php Line: 8 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 11 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$account is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 11 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$gogetsslapi is deprecated Filename: core/Loader.php Line Number: 1283 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Gogetssl.php Line: 8 Function: library File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 12 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property Gogetssl::$s is deprecated Filename: models/Gogetssl.php Line Number: 9 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/models/Gogetssl.php Line: 9 Function: _error_handler File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 12 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$ssl is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 12 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$sp is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 13 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$oauth is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 15 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$fv is deprecated Filename: core/Loader.php Line Number: 1283 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 16 Function: library File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: 8192 Message: Creation of dynamic property A::$grc is deprecated Filename: core/Loader.php Line Number: 358 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line: 17 Function: model File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once A PHP Error was encountered Severity: Warning Message: Cannot modify header information - headers already sent by (output started at /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/system/core/Exceptions.php:271) Filename: core/Common.php Line Number: 570 Backtrace: An uncaught Exception was encountered Type: ArgumentCountError Message: Too few arguments to function A::view_ssl(), 0 passed in /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/system/core/CodeIgniter.php on line 532 and exactly 1 expected Filename: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line Number: 1520 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once Quote Link to comment Share on other sites More sharing options...
SpookyKipper Posted October 31, 2023 Share Posted October 31, 2023 Ah, xera isn't fully compatible with PHP 8 Quote Link to comment Share on other sites More sharing options...
Anyx Posted October 31, 2023 Share Posted October 31, 2023 8 hours ago, SpookyKipper said: Ah, xera isn't fully compatible with PHP 8 This doesn't seem like a PHP version issue: 11 hours ago, Vawiz said: An uncaught Exception was encountered Type: ArgumentCountError Message: Too few arguments to function A::view_ssl(), 0 passed in /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/system/core/CodeIgniter.php on line 532 and exactly 1 expected Filename: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/app/controllers/A.php Line Number: 1520 Backtrace: File: /home/vol10_2/davisvawiz.buzz/www/htdocs/Client/index.php Line: 315 Function: require_once I couldn't find the call to the function unfortunately... what makes you say it's from the PHP upgrade? Also @Vawiz I assume you've set up the GoGetSSL integration? Quote Link to comment Share on other sites More sharing options...
Vawiz Posted November 1, 2023 Author Share Posted November 1, 2023 19 hours ago, Anyx said: This doesn't seem like a PHP version issue: I couldn't find the call to the function unfortunately... what makes you say it's from the PHP upgrade? Also @Vawiz I assume you've set up the GoGetSSL integration? Yes i have set. am even changing the domain name that can at least fit the hosting niche, so davisvawiz.buzz is no longer pointed to MOFH Quote Link to comment Share on other sites More sharing options...
SpookyKipper Posted November 1, 2023 Share Posted November 1, 2023 20 hours ago, Anyx said: what makes you say it's from the PHP upgrade? I think i saw a similar error when I was upgrading Xera on my instance Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.