1.0.8.5 Questions / Comments / Concerns
-
Nigel
- Contributor
- Posts: 114
- Joined: Mon Jan 11, 2021 1:39 am
- Phoenix Version:
- Has thanked: 29 times
- Been thanked: 8 times
Re: 1.0.8.5 Questions / Comments / Concerns
Should the last file to be removed actually be "focusRequiredTab.php" and not focusRequired.php as this doesn't seem to exist.
Tags:
-
raiwa
- Certified Developer
- Posts: 1640
- Joined: Sat Dec 21, 2019 8:08 am
- Phoenix Version: 1.1.0.6
- : Buy Me A Beverage
- Has thanked: 70 times
- Been thanked: 152 times
Re: 1.0.8.5 Questions / Comments / Concerns
Updated 1.0.8.4 to 1.0.8.5:
I get the following error in Admin: Modules: Content:
I get the following error in Admin: Modules: Content:
When the GDPR Link[account] module is installed. Uninstalled and reinstalled it, but the same error.Notice: Trying to access array offset on value of type null in
C:\xampp_7.4.11\htdocs\xxxxxxxxxxxxxxx\includes\system\versioned\1.0.8.1\country.php
on line
37
Public Phoenix Change Log Cheat Set on Google Sheets
https://docs.google.com/spreadsheets/d/ ... sp=sharing
Need Help?viewtopic.php?f=10&t=27
https://docs.google.com/spreadsheets/d/ ... sp=sharing
Need Help?viewtopic.php?f=10&t=27
-
Xpajun
- Contributor
- Posts: 187
- Joined: Thu Mar 04, 2021 1:18 pm
- Phoenix Version: v1.0.9.0
- Has thanked: 3 times
- Been thanked: 6 times
Re: 1.0.8.5 Questions / Comments / Concerns
I'm having problems with the action_recorder Table - I get this error when I try installing it in the database:
I'm using MariaDB 10.3.27-MariaDB
Code: Select all
SQL query:
CREATE TABLE action_recorder (
id int NOT NULL auto_increment,
module varchar(255) NOT NULL,
user_id int,
user_name varchar(255),
identifier varchar(255) NOT NULL,
success char(1),
date_added datetime NOT NULL,
PRIMARY KEY (id),
KEY idx_action_recorder_module_date (module, date_added),
KEY idx_action_recorder_user_id (user_id)
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
MySQL said: Documentation
#1071 - Specified key was too long; max key length is 1000 bytes
Open new phpMyAdmin windowCurrent Store is now running 1.0.9.0 - php 8.2.18
Now working on taking a short rest
- php 8.2.18
Now working on taking a short rest
-
Xpajun
- Contributor
- Posts: 187
- Joined: Thu Mar 04, 2021 1:18 pm
- Phoenix Version: v1.0.9.0
- Has thanked: 3 times
- Been thanked: 6 times
Re: 1.0.8.5 Questions / Comments / Concerns
Also the same problem with pages Table
Current Store is now running 1.0.9.0 - php 8.2.18
Now working on taking a short rest
- php 8.2.18
Now working on taking a short rest
-
ecartz
- Core Team
- Posts: 3084
- Joined: Tue Nov 05, 2019 6:02 pm
- Phoenix Version:
- Has thanked: 4 times
- Been thanked: 208 times
Re: 1.0.8.5 Questions / Comments / Concerns
Please set the tables to InnoDB. E.g.
Code: Select all
CREATE TABLE action_recorder (
id int NOT NULL auto_increment,
module varchar(255) NOT NULL,
user_id int,
user_name varchar(255),
identifier varchar(255) NOT NULL,
success char(1),
date_added datetime NOT NULL,
PRIMARY KEY (id),
KEY idx_action_recorder_module_date (module, date_added),
KEY idx_action_recorder_user_id (user_id)
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci Engine InnoDB-
Xpajun
- Contributor
- Posts: 187
- Joined: Thu Mar 04, 2021 1:18 pm
- Phoenix Version: v1.0.9.0
- Has thanked: 3 times
- Been thanked: 6 times
Re: 1.0.8.5 Questions / Comments / Concerns
Thank you Matt - that worked - the only tables that were affected were action_recorder, configuration and pages.ecartz wrote: ↑Wed Sep 15, 2021 12:40 pm Please set the tables to InnoDB. E.g.Code: Select all
CREATE TABLE action_recorder ( id int NOT NULL auto_increment, module varchar(255) NOT NULL, user_id int, user_name varchar(255), identifier varchar(255) NOT NULL, success char(1), date_added datetime NOT NULL, PRIMARY KEY (id), KEY idx_action_recorder_module_date (module, date_added), KEY idx_action_recorder_user_id (user_id) ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci Engine InnoDB
This was from the phoenix.sql as included in Phoenix 1.0.8.5 - Having just looked at my tables i notice that the Engine is MyISAM on them all - the problem with using old databases I suppose
Current Store is now running 1.0.9.0 - php 8.2.18
Now working on taking a short rest
- php 8.2.18
Now working on taking a short rest
-
LeeFoster
- Contributor
- Posts: 263
- Joined: Sun Feb 28, 2021 9:41 pm
- Phoenix Version: v1.0.8.20
- Has thanked: 1 time
- Been thanked: 5 times
Re: 1.0.8.5 Questions / Comments / Concerns
I must have done something wrong as I don't even have the categories/products option on my drop down.
-
LeeFoster
- Contributor
- Posts: 263
- Joined: Sun Feb 28, 2021 9:41 pm
- Phoenix Version: v1.0.8.20
- Has thanked: 1 time
- Been thanked: 5 times
Re: 1.0.8.5 Questions / Comments / Concerns
OK this was a me issue, caused by another addon and is fixed now.
However, I have lost all my tabs on the product admin page. Can anyone point me in the direction of getting them back?