Giter Club home page Giter Club logo

Comments (15)

conseilgouz avatar conseilgouz commented on May 29, 2024 1

PR #43226 fixes this.
It took me a while to figure out it had to apply to Joomla 5.0 (I'll fill up a coffee issue asap)

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

Sorry, I messed up, trying to update from 5.1.0 beta 2 to 5.1.0 RC.

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

Hi,

I took me a while but I found the condition when this occurs : enable Error reporting to default or higher.

In this case, ajax answer contains a lot of notice message :


Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$folder is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$folder is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$folder is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$folder is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$jversion.full is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Object\LegacyPropertyManagementTrait.php on line 135

Deprecated: Creation of dynamic property Joomla\CMS\Updater\Update::$changelogurl is deprecated in D:\laragon6-------------\www\j503rc\libraries\src\Updater\Update.php on line 452

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

issue_43196

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

First notice comes from administrator\components\com_joomlaupdate\src\Model\UpdateModel.php line 1630 :
$update->set('jversion.full', $joomlaTargetVersion);

from joomla-cms.

brianteeman avatar brianteeman commented on May 29, 2024

very odd. I am using laragon and php 8.3.3 on windows and I have not been able to replicate this

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

It only appears if you set error reporting to default.

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

checkCompatibility in UpdateModel is used for non core extension.
So if you have any non core extension, you'll see these notices.

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

I just tried on a clean Joomla 5.0.3 version with latest Akeeba backup : same error when trying to update to 5.1.0-rc

from joomla-cms.

brianteeman avatar brianteeman commented on May 29, 2024

I took me a while but I found the condition when this occurs : enable Error reporting to default or higher.

I checked with error reporting set to maximum

Update a test website

I missed this part and was just checking for updates. Will test again

from joomla-cms.

conseilgouz avatar conseilgouz commented on May 29, 2024

To fix this, we have to add the missing definitions in libraries/src/Updater/Update.php.
I'm trying to create a new PR to fix this, but, as I already have one in progress, I can't achive this.

from joomla-cms.

brianteeman avatar brianteeman commented on May 29, 2024

I still cant replicate the error

from joomla-cms.

wojsmol avatar wojsmol commented on May 29, 2024

@brianteeman Deprecated: Creation of dynamic property type of warning is specific to php 8.2+.

from joomla-cms.

brianteeman avatar brianteeman commented on May 29, 2024

I am using 8.3.3

from joomla-cms.

richard67 avatar richard67 commented on May 29, 2024

Closing as having a pull request. See #43226

from joomla-cms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.