1.1.0.6 Questions / Comments / Concerns / Feedback

Open to all! Ask other shopowners for help.
User avatar
burt
Core Team
Posts: 4551
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

1.1.0.6 Questions / Comments / Concerns / Feedback

Post by burt »

Welcome to v1.1.0.6

1.1.0.6 is a small but important release focusing on minor optimisations.

New Features in Phoenix
- Admin > Reports > Pulse Analytics
- Admin > Customers > Status

Bug Fixes
- [GDPR] Default Shipping Method
- [Installer] Fixed errant Qty

Removed
- Admin > Products Viewed

Other Optimisations
- [Admin] Static Horizontal Menu
- [Schema] Crawled Products TY @frankl
- [Currencies] Added GBP and set values to other than "1" to show capability
- [Shop] Search Popup now has link to advanced search

Thank You to everyone who got involved for the help and advice in bringing 1.1.0.6 to release.

Special thanks to the handful of Community Members who got involved in the recent Code Drops which allowed me an hour on Core Code.
I am not here to build for you.
I am here to build with you. Let's help each other.

Tags:


Join The Code Co-op to get access to your library in the Code Co-op Forum
User avatar
burt
Core Team
Posts: 4551
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by burt »

Updated Files (structure), in code tags to retain format for easy reading.

Code: Select all

│   product_info.php
│
├───admin
│   │   customers.php
│   │   pulse_analytics.php
│   │
│   └───includes
│       ├───actions
│       │   ├───catalog
│       │   │       copy_to_confirm.php
│       │   │
│       │   ├───customers
│       │   │   │   set_flag.php
│       │   │   │
│       │   │   └───views
│       │   │           default.php
│       │   │
│       │   └───pulse_analytics
│       │       │   delete_confirm.php
│       │       │
│       │       ├───infoboxes
│       │       │       default.php
│       │       │       delete.php
│       │       │
│       │       └───views
│       │               default.php
│       │               product_view.php
│       │
│       ├───boxes
│       │       reports_pulse.php
│       │
│       ├───languages
│       │   └───english
│       │       │   pulse_analytics.php
│       │       │
│       │       └───modules
│       │           ├───boxes
│       │           │       reports_pulse.php
│       │           │
│       │           └───dashboard
│       │                   d_version_check.php
│       │
│       └───modules
│           └───dashboard
│                   d_version_check.php
│
├───ext
│   └───modules
│       └───pulse
│               collect.php
│               pulse.js
│
├───includes
│   │   version.php
│   │
│   ├───hooks
│   │   ├───admin
│   │   │   └───siteWide
│   │   │           hMenu.php
│   │   │
│   │   └───shop
│   │       ├───product_info
│   │       │       pulseCart.php
│   │       │
│   │       └───siteWide
│   │               pulseBase.php
│   │
│   ├───languages
│   │   └───english
│   │       └───modules
│   │           ├───content
│   │           │   └───login
│   │           │           cm_login_form.php
│   │           │
│   │           └───navbar
│   │                   nb_search.php
│   │
│   ├───modules
│   │   ├───content
│   │   │   ├───gdpr
│   │   │   │       cm_gdpr_orders.php
│   │   │   │
│   │   │   └───login
│   │   │           cm_login_form.php
│   │   │
│   │   ├───header_tags
│   │   │       ht_product_schema.php
│   │   │
│   │   └───navbar
│   │       └───templates
│   │               tpl_nb_search.php
│   │
│   └───system
│       └───versioned
│           └───1.0.7.other
│               └───1.0.7.12
│                       product.php
│
└───install
        phoenix.sql
        phoenix_data_sample.sql
I am not here to build for you.
I am here to build with you. Let's help each other.
User avatar
burt
Core Team
Posts: 4551
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by burt »

Updating from 1.1.0.5 to 1.1.0.6 is simple.

PRE STEP. REQUIRED

Make a backup copy of your current Phoenix (as it stands) and current Database (as it stands) so that you can easily rollback if things do not go as planned.

If you are certain you wish to move to 1.1.0.6;

1. REQUIRED

Run this SQL to update the necessary parts of the 1.1.0.5 Database to 1.1.0.6 Spec

Code: Select all

CREATE TABLE analytics_events (
  id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
  customer_id INT UNSIGNED DEFAULT NULL,
  merchant_id INT UNSIGNED NOT NULL DEFAULT 0,
  event_type VARCHAR(255) NOT NULL,
  product_id INT UNSIGNED DEFAULT NULL,
  payload LONGTEXT NOT NULL,
  page_url TEXT DEFAULT NULL,
  referrer TEXT DEFAULT NULL,
  domain VARCHAR(255) DEFAULT NULL,
  user_agent TEXT DEFAULT NULL,
  ip_address VARCHAR(255) DEFAULT NULL,
  created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
  INDEX idx_event_type (event_type),
  INDEX idx_product (product_id),
  INDEX idx_merchant (merchant_id),
  INDEX idx_created_at (created_at),
  INDEX idx_customer_id (customer_id)
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

ALTER TABLE customers ADD status INT NOT NULL DEFAULT '1';
ALTER TABLE products_description DROP products_viewed; 

2. REQUIRED

Upload these files.
Note that your /admin/ folder is hopefully not called "admin".

1.1.0.6.zip


3a. REQUIRED

DELETE these FOLDERS (and all contents).
Note that your /admin/ folder is hopefully not called "admin".

- admin/includes/actions/stats_products_viewed/


3b. REQUIRED

DELETE these FILES.
Note that your /admin/ folder is hopefully not called "admin".

- admin/stats_products_viewed.php
- admin/includes/languages/english/stats_products_viewed.php
- admin/includes/boxes/reports_stats_products_viewed.php
- admin/includes/languages/english/modules/boxes/reports_stats_products_viewed.php


4. REQUIRED

Visit Security Checks page in Admin and solve any issues
Admin > Tools > Security Checks
You do not have the required permissions to view the files attached to this post.
I am not here to build for you.
I am here to build with you. Let's help each other.
User avatar
burt
Core Team
Posts: 4551
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by burt »

I am not here to build for you.
I am here to build with you. Let's help each other.
User avatar
burt
Core Team
Posts: 4551
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by burt »

If anyone has any v1.1.0.6 questions, comments, concerns, feedback this is the thread.

TY to all who helped to make v1.1.0.6 a possibility. Special thanks to the handful of Community Members who got involved in the recent Code Drops which allowed me an hour on Core Code.
I am not here to build for you.
I am here to build with you. Let's help each other.
Fiber
Contributor
Posts: 173
Joined: Mon Oct 26, 2020 12:16 pm
Phoenix Version: v1.1.0.6
Has thanked: 17 times
Been thanked: 27 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by Fiber »

Just installed 1.1.0.6 and what immediately caught my eye are the product descriptions, indeed they have changed, but I thought I'd take a look at the demo shop and see there the old description are still there?
Turn up the Max
User avatar
burt
Core Team
Posts: 4551
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by burt »

I have not yet had time to update the Demo Shop.
I am not here to build for you.
I am here to build with you. Let's help each other.
Nigel
Contributor
Posts: 114
Joined: Mon Jan 11, 2021 1:39 am
Phoenix Version:
Has thanked: 29 times
Been thanked: 8 times

Minor bug

Post by Nigel »

Stock Options

The "Mark product out of stock" value shows some bootstrap/css text.

This is after the initial install.
You do not have the required permissions to view the files attached to this post.
User avatar
burt
Core Team
Posts: 4551
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Minor bug

Post by burt »

This is Correct, not a bug.
I am not here to build for you.
I am here to build with you. Let's help each other.
Nigel
Contributor
Posts: 114
Joined: Mon Jan 11, 2021 1:39 am
Phoenix Version:
Has thanked: 29 times
Been thanked: 8 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by Nigel »

Thanks.
Still getting used to it all again.


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