Page 1 of 3

1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Thu Sep 25, 2025 9:12 am
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.

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Thu Sep 25, 2025 9:19 am
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

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Thu Sep 25, 2025 9:22 am
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

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Thu Sep 25, 2025 9:25 am
by burt

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Fri Sep 26, 2025 6:00 pm
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.

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Sun Sep 28, 2025 7:18 am
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?

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Sun Sep 28, 2025 7:43 am
by burt
I have not yet had time to update the Demo Shop.

Minor bug

Posted: Sun Sep 28, 2025 7:15 pm
by Nigel
Stock Options

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

This is after the initial install.

Re: Minor bug

Posted: Sun Sep 28, 2025 8:24 pm
by burt
This is Correct, not a bug.

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Posted: Sun Sep 28, 2025 8:35 pm
by Nigel
Thanks.
Still getting used to it all again.