Core Compare Tool

Open to all! Ask other shopowners for help.
Locked
User avatar
zipurman
Builder
Posts: 540
Joined: Tue Oct 13, 2020 5:20 pm
Phoenix Version: v
Has thanked: 93 times
Been thanked: 162 times

Core Compare Tool

Post by zipurman »

This admin tool will allow you to download a copy of the core version you are using and compare it to your installed version. It will then outline:

- Added Files
- Changed Files
- Deleted Files

You can also remove cores as you upgrade.

https://phoenixaddons.com/knowledgebase ... pare-tool/
zipurman
-----------

Tags:


Join The Code Co-op to get access to your library in the Code Co-op Forum
vmn

Re: Core Compare Tool

Post by vmn »

[17-Mar-2021 11:31:24 Europe/Helsinki] PHP Notice: Undefined index: text in /opt/lampp/htdocs/shop/admin/zipur_core_compare_tool.php on line 248
[17-Mar-2021 11:31:24 Europe/Helsinki] PHP Stack trace:
[17-Mar-2021 11:31:24 Europe/Helsinki] PHP 1. {main}() /opt/lampp/htdocs/shop/admin/zipur_core_compare_tool.php:0
[17-Mar-2021 11:31:24 Europe/Helsinki] PHP 2. zipurRow() /opt/lampp/htdocs/shop/admin/zipur_core_compare_tool.php:594
[17-Mar-2021 11:31:24 Europe/Helsinki] PHP Notice: Undefined index: text in /opt/lampp/htdocs/shop/admin/zipur_core_compare_tool.php on line 249
[17-Mar-2021 11:31:24 Europe/Helsinki] PHP Stack trace:
[17-Mar-2021 11:31:24 Europe/Helsinki] PHP 1. {main}() /opt/lampp/htdocs/shop/admin/zipur_core_compare_tool.php:0
[17-Mar-2021 11:31:24 Europe/Helsinki] PHP 2. zipurRow() /opt/lampp/htdocs/shop/admin/zipur_core_compare_tool.php:594


Fix for line 248 notice:

//VMNif ( $rowdata[0]['text'] !== '' ) {
//VMN$rightdata .= $rowdata[1]['text'];
$rightdata .= $rowdata[1]['text'] ?? '';
//VMN}

Fix for line 249 notice:
//VMNif ( $rowdata[1]['text'] !== '' ) {
//VMNif (isset( $rowdata[1]['field']) && $rowdata[1]['field'] !== '' ) {
//VMN$rightdata .= $rowdata[1]['field'];
$rightdata .= $rowdata[1]['field'] ?? '';
//VMN}
User avatar
zipurman
Builder
Posts: 540
Joined: Tue Oct 13, 2020 5:20 pm
Phoenix Version: v
Has thanked: 93 times
Been thanked: 162 times

Re: Core Compare Tool

Post by zipurman »

Thanks @vmn

New version released 0.3.1 ;)
zipurman
-----------
User avatar
zipurman
Builder
Posts: 540
Joined: Tue Oct 13, 2020 5:20 pm
Phoenix Version: v
Has thanked: 93 times
Been thanked: 162 times

Re: Core Compare Tool

Post by zipurman »

I added another version 0.4.0 today. This new version ignores the recent comment block changes to all files in Phoenix so that core files do not show altered due to copyright changes only.
zipurman
-----------
admin
Contributor
Posts: 217
Joined: Wed Oct 30, 2019 1:34 pm
Phoenix Version:
Has thanked: 20 times
Been thanked: 22 times

Re: Core Compare Tool

Post by admin »

Support for this Addon will now be available on the Addon page - app.php/addons/free_addon/core_compare_tool/support


Join The Code Co-op to get access to your library in the Code Co-op Forum
Locked