PHP 8.2 - Community Input
Posted: Thu Nov 02, 2023 10:51 am
Hello,
Will this version support PHP 8.2?
BR
Omar
Will this version support PHP 8.2?
BR
Omar
Free Open Source Ecommerce
https://phoenixcart.org/forum/
Code: Select all
PHP Deprecated: Return type of database_core::query($sql, $resultmode = MYSQLI_STORE_RESULT) should either be compatible with mysqli::query(string $query, int $result_mode = MYSQLI_STORE_RESULT): mysqli_result|bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.1/database_core.php on line 61
PHP Deprecated: Return type of mysql_session::open($save_path, $session_name) should either be compatible with SessionHandler::open(string $path, string $name): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 27
PHP Deprecated: Return type of mysql_session::close() should either be compatible with SessionHandler::close(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 15
PHP Deprecated: Return type of mysql_session::read($key) should either be compatible with SessionHandler::read(string $id): string|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 31
PHP Deprecated: Return type of mysql_session::write($key, $value) should either be compatible with SessionHandler::write(string $id, string $data): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 47
PHP Deprecated: Return type of mysql_session::destroy($key) should either be compatible with SessionHandler::destroy(string $id): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 19
PHP Deprecated: Return type of mysql_session::gc($maxlifetime) should either be compatible with SessionHandler::gc(int $max_lifetime): int|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 23
PHP Deprecated: Return type of mysql_session::validateId($key) should either be compatible with SessionUpdateTimestampHandlerInterface::validateId(string $id): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 42
PHP Deprecated: Return type of mysql_session::updateTimestamp($key, $ignore) should either be compatible with SessionUpdateTimestampHandlerInterface::updateTimestamp(string $id, string $data): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/shop/public_html/includes/system/versioned/1.0.8.3/mysql_session.php on line 38
PHP Deprecated: Return type of Href::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/hattufi/public_html/includes/system/versioned/1.0.8.5/href.php on line 139
Code: Select all
#[\ReturnTypeWillChange]Code: Select all
PHP Deprecated: Creation of dynamic property messageStack::$messages is deprecated in /home/shop/public_html/includes/system/versioned/1.0.5.1/message_stack.php on line 23
We're not going to be looking at getting Phoenix ready for 8.2 for some small while yet. Core Team has way too much to do and very little time in which to do those things, so any help from the Community on this would be very appreciated./includes/hooks/admin/siteWide/hMenu.php:53
usort($group['apps'], 'static::sort_box_links');
admin/includes/classes/message_stack.php
Add new L23
public $errors;
/includes/system/versioned/1.0.5.1/message_stack.php
Add new L21
public $messages;
Adding #[\ReturnTypeWillChange] to the following files removes warnings.
It's not the true fix but does stop the error_log getting blasted..
includes/system/versioned/1.0.8.1/database_core.php:61
includes/system/versioned/1.0.8.3/mysql_session.php:15
includes/system/versioned/1.0.8.3/mysql_session.php:20
includes/system/versioned/1.0.8.3/mysql_session.php:25
includes/system/versioned/1.0.8.3/mysql_session.php:30
includes/system/versioned/1.0.8.3/mysql_session.php:35
includes/system/versioned/1.0.8.3/mysql_session.php:43
includes/system/versioned/1.0.8.3/mysql_session.php:48
includes/system/versioned/1.0.8.3/mysql_session.php:54
includes/system/versioned/1.0.8.5/href.php:145
includes/system/versioned/1.0.7.8/abstract_payment_module.php
Add new L15
public $public_title, $order_status;
here what I have doneburt wrote: ↑Fri Nov 03, 2023 2:00 pm
/includes/system/versioned/1.0.5.1/message_stack.php
Add new L21
public $messages;
Adding #[\ReturnTypeWillChange] to the following files removes warnings.
It's not the true fix but does stop the error_log getting blasted..
includes/system/versioned/1.0.8.1/database_core.php:61
includes/system/versioned/1.0.8.3/mysql_session.php:15
includes/system/versioned/1.0.8.3/mysql_session.php:20
includes/system/versioned/1.0.8.3/mysql_session.php:25
includes/system/versioned/1.0.8.3/mysql_session.php:30
includes/system/versioned/1.0.8.3/mysql_session.php:35
includes/system/versioned/1.0.8.3/mysql_session.php:43
includes/system/versioned/1.0.8.3/mysql_session.php:48
includes/system/versioned/1.0.8.3/mysql_session.php:54
includes/system/versioned/1.0.8.5/href.php:145
Code: Select all
class messageStack extends \stdClass{Code: Select all
PHP Deprecated: Creation of dynamic property objectInfo::$orders_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_name is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_company is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_street_address is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_suburb is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_city is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_postcode is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_state is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_country is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_country_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_telephone is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_email_address is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_address_format_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customers_guest is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$reviews_key is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_name is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_company is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_street_address is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_suburb is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_city is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_postcode is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_state is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_country is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_country_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$delivery_address_format_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_name is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_company is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_street_address is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_suburb is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_city is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_postcode is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_state is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_country is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_country_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$billing_address_format_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$payment_method is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$cc_type is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$cc_owner is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$cc_number is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$cc_expires is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$transaction_details is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$last_modified is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$date_purchased is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$orders_status is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$orders_date_finished is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$currency is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$currency_value is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$clubosc_key is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$clubosc_email_sent is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customer_service_id is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$void is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$return_exchange is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$in_store_purchase is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$pos_username is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$gift_wrap is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$discount_codes is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customer_shopping_points_spending is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$customer_referral is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$shipping_module is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$orders_status_name is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21
PHP Deprecated: Creation of dynamic property objectInfo::$order_total is deprecated in /home/shop/public_html/admin/includes/classes/object_info.php on line 21 Code: Select all
PHP Deprecated: preg_split(): Passing null to parameter #2 ($subject) of type string is deprecated in /home/shop/public_html/admin/includes/functions/html_output.php on line 27Code: Select all
PHP Deprecated: Creation of dynamic property objectInfo::$link is deprecated in /home/shop/public_html/admin/includes/actions/orders/views/default.php on line 95Code: Select all
PHP Deprecated: substr(): Passing null to parameter #1 ($string) of type string is deprecated in /home/shop/public_html/includes/apps/paypal/OSCOM_PayPal.php on line 238
PHP Deprecated: Function utf8_encode() is deprecated in /home/shop/public_html/includes/apps/paypal/api/GetBalance.php on line 34