1.1.0.1 Questions / Comments / Concerns / Feedback

Open to all! Ask other shopowners for help.
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.1.0.1Questions / Comments / Concerns / Feedback

Post by ecartz »

heatherbell wrote: Wed Apr 16, 2025 4:58 am How will this affect Softaculous, Installatron and other 1-Click installers?
I'm pretty sure they skip our installer and implement their own. I'd expect they won't even notice this change. I don't know of a way to verify that other than to ask each of them.

I'd be more worried about a host that implements proper security without a one-click installer, as this will block the install from finishing if anyone does. It also may cause problems on Windows with some local installs. Perhaps XAMPP.

Tags:


Join The Code Co-op to get access to your library in the Code Co-op Forum
puddlec
Member
Posts: 31
Joined: Mon Dec 07, 2020 3:11 pm
Phoenix Version:
Has thanked: 1 time
Been thanked: 7 times

Re: 1.1.0.1 Questions / Comments / Concerns / Feedback

Post by puddlec »

No option to change the admin directory with Softaculous. The only options are
quick
domain and folder
admin username & password
admin email

custom
domain and folder
sitename
admin username & password
realname
admin email

database name
then setings for backup
User avatar
burt
Core Team
Posts: 4547
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.1 Questions / Comments / Concerns / Feedback

Post by burt »

It's an HTML5 pattern.

It won't affect any installers as none of them go through the manual process of installation.

It disallows form submit if someone tries using "admin" as their admin folder name in step 3 of the manual process:
adm123456.jpg
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.
GdNico
Member
Posts: 18
Joined: Tue Jul 20, 2021 8:43 pm
Phoenix Version: v1.1.0.1
Has thanked: 2 times
Been thanked: 4 times

discovery of a problem in the version 1.1.0.1

Post by GdNico »

Hello

I'm upgrading from version 1.0.9.0 to 1.1.0.1, and when I upgrade to 1.0.9.10, I see that I need to delete the file
## REQUIRED Files to delete (You MUST delete these):
* admin/includes/actions/catalog/views/new_product_preview.php

while it is used in files

Code: Select all

admin\includes\actions\stats_products_purchased\views\default.php
Ligne 22:   $link = $Admin->link('catalog.php', ['action' => 'new_product_preview', 'read' => 'only', 'origin' => 'stats_products_purchased.php?page=' . (int)($_GET['page'] ?? 1)]);
admin\includes\actions\stats_products_viewed\views\default.php
Ligne 15:   $link = $Admin->link('catalog.php', ['action' => 'new_product_preview', 'read' => 'only', 'origin' => 'stats_products_viewed.php?page=' . (int)($_GET['page'] ?? 1)]);
I'll just add ['action' => 'new_product'] to make it work, but I thought I'd let you know for the next version... (and I didn't really know where to tell you except here)

Have a nice weekend and happy Easter
raiwa
Certified Developer
Posts: 1640
Joined: Sat Dec 21, 2019 8:08 am
Phoenix Version: 1.1.0.6
Has thanked: 70 times
Been thanked: 152 times

Re: discovery of a problem in the version 1.1.0.1

Post by raiwa »

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
GdNico
Member
Posts: 18
Joined: Tue Jul 20, 2021 8:43 pm
Phoenix Version: v1.1.0.1
Has thanked: 2 times
Been thanked: 4 times

Re: discovery of a problem in the version 1.1.0.1

Post by GdNico »

thank you!
ArtcoInc
Contributor
Posts: 119
Joined: Fri Oct 25, 2019 4:19 pm
Phoenix Version: v1.0.3.0
Has thanked: 86 times
Been thanked: 17 times

Re: 1.1.0.1 Questions / Comments / Concerns / Feedback

Post by ArtcoInc »

I am installing on a local machine.

For the database, username = 'root', password = <blank> ... (I know, not safe. It's just for in-house use)

Installation won't let me get past step 1.


Malcolm

PS: prior versions of Phoenix have let me install without a password.
User avatar
burt
Core Team
Posts: 4547
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.1 Questions / Comments / Concerns / Feedback

Post by burt »

Password is required.
You should set up a password in your localhost, this would differ based on which one of course.
XAMPP, Laragon, Uniserver etc

Other option is to make the input field not required;

https://github.com/CE-PhoenixCart/Phoen ... l.php#L171
remove this bit: ->require()

This has come up before, but we will not change it as the security of the masses is more important than the few who need to be password-less (hope that makes sense).
I am not here to build for you.
I am here to build with you. Let's help each other.
raiwa
Certified Developer
Posts: 1640
Joined: Sat Dec 21, 2019 8:08 am
Phoenix Version: 1.1.0.6
Has thanked: 70 times
Been thanked: 152 times

Re: 1.1.0.6 Questions / Comments / Concerns / Feedback

Post by raiwa »

admin/stats_customers.php throws:

Code: Select all

Fatal error: Uncaught Error: Undefined constant customer_query::TABLE_ALIASES in C:\laragon\www\xxx\admin\includes\actions\stats_customers\views\default.php:19 Stack trace: #0 C:\laragon\www\xxx\admin\stats_customers.php(36): require() #1 {main} thrown in C:\laragon\www\xxx\admin\includes\actions\stats_customers\views\default.php on line 19
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
User avatar
burt
Core Team
Posts: 4547
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 »

raiwa wrote: Thu Nov 27, 2025 8:55 am admin/stats_customers.php throws:
I cannot recreate this...
I am not here to build for you.
I am here to build with you. Let's help each other.


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