1.0.9.1 Questions / Comments / Concerns

Open to all! Ask other shopowners for help.
User avatar
Kofod95
Senior Contributor
Posts: 748
Joined: Sat Feb 06, 2021 7:38 pm
Phoenix Version: 1.0.8.20
Has thanked: 99 times
Been thanked: 179 times

Re: 1.0.9.1 Questions / Comments / Concerns

Post by Kofod95 »

heatherbell wrote: Wed Sep 11, 2024 8:08 am Guessing the customer tried when your setup was:

Code: Select all

@setlocale(LC_ALL, ['en_US.UTF-8', 'en_US.UTF8', 'enu_usa']);
...
const LANGUAGE_CURRENCY = 'EUR';
Correct. This is how it has been for a long time, and how it still is. I only changed things on a mirrored test-shop to see if I messed the values up somewhat.
heatherbell wrote: Wed Sep 11, 2024 8:08 am which would then be expected.
Noticed expected behavior: Visit the page in English, EUR is chosen. Visit the page in Danish, DKK is chosen. Switch language from Danish to English, currency changes to EUR. Switch language from English to Danish, currency changes to DKK.
Noticed unexpected behavior: Visit the page in English, switch the currency, currency changes to language default on next click. Visit the page in Danish, switch the currency currency changes to language default on next click.
heatherbell wrote: Wed Sep 11, 2024 8:08 am Just guessing, is it to do with having 2 Languages but 3 Currencies?
My thought as well - most likely any case of multiple languages with their own default currency.
heatherbell wrote: Wed Sep 11, 2024 8:08 am What's the behaviour with Switch To Default Language Currency to False? Can customer choose Language & Currency with good result?
When Switch To Default Language Currency is false, the default currency (DKK) is always chosen on first load. Swithing the currency now works as expected. For now, I have set that set to false, as that enables customers to choose whichever currency they prefer (of the three we offer).

//Daniel
I'm not smart, but sometimes even a blind chicken can find a corn.
Here are a lot of corns: Phoenix user guide

Tags:


Join The Code Co-op to get access to your library in the Code Co-op Forum
cwh2000
Member
Posts: 60
Joined: Fri Jul 30, 2021 10:21 am
Phoenix Version: v1.0.9.9

Re: 1.0.9.1 Questions / Comments / Concerns

Post by cwh2000 »

The change for Store Logo specifically favicon couldn't be changed without this error below. I manually created all the required files in the images folder along with the files under favicon folder.

/admin/store_logo.php?action=edit_favicon

From: /admin/store_logo.php?action=save_favicon

Fatal error: Uncaught Error: Call to undefined function Gumlet\finfo_open() in /public_html/catalog/admin/includes/classes/ImageResize.php:116 Stack trace: #0 /public_html/catalog/admin/includes/actions/store_logo/save_favicon.php(30): Gumlet\ImageResize->__construct('/public_html/catalog...') #1 /public_html/catalog/admin/includes/segments/process_action.php(19): require('/public_html/catalog...') #2 /home/neperfmust/public_html/catalog/nepmadmin6470/store_logo.php(15): require('/home/neperfmus...') #3 {main} thrown in /public_html/catalog/admin/includes/classes/ImageResize.php on line 116
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.0.9.1 Questions / Comments / Concerns

Post by burt »

Enable fileinfo in PHP.
You might check your Server Info, or ask your host.
cwh2000 wrote: Sun Sep 22, 2024 12:36 pm The change for Store Logo specifically favicon couldn't be changed without this error below. I manually created all the required files in the images folder along with the files under favicon folder.
I am not here to build for you.
I am here to build with you. Let's help each other.
miki
Member
Posts: 8
Joined: Fri Apr 26, 2024 12:52 pm
Phoenix Version: v1.0.9.0

Re: 1.0.9.1 Questions / Comments / Concerns

Post by miki »

Hi
I have tried to upgrade my store from 1.0.9.0 a copule times to different versions and with Upgradewizard but no luck.
I think because of the edition of my layout in templates user.css. Everytime after upgrade I got blank white page with small text "categories" nothing else.
How to solve it?
Regards
Dominik
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.0.9.1 Questions / Comments / Concerns

Post by burt »

miki wrote: Mon Dec 08, 2025 3:13 pm Hi
I have tried to upgrade my store from 1.0.9.0 a copule times to different versions and with Upgradewizard but no luck.
I think because of the edition of my layout in templates user.css. Everytime after upgrade I got blank white page with small text "categories" nothing else.
How to solve it?
Regards
Dominik
This sounds familiar;
viewtopic.php?p=16554#p16554

But you should check your error_log (there would probably be 2 depending on host; hosting error_log and PHP error_log), the error listed if any would be a good clue as to what is going wrong ?
I am not here to build for you.
I am here to build with you. Let's help each other.
miki
Member
Posts: 8
Joined: Fri Apr 26, 2024 12:52 pm
Phoenix Version: v1.0.9.0

Re: 1.0.9.1 Questions / Comments / Concerns

Post by miki »

There is something in php error log but I have no clue what to do with it.

[08-Dec-2025 11:46:18 Europe/London] PHP Deprecated: The tep_db_fetch_array function has been deprecated. in
includes/functions/database.php on line 45
[08-Dec-2025 11:46:18 Europe/London] PHP Deprecated: The tep_db_query function has been deprecated. in
/includes/functions/database.php on line 35

here are the lines from database.php:
function tep_db_query($query, $link = 'db') {
trigger_error('The tep_db_query function has been deprecated.', E_USER_DEPRECATED);
return $GLOBALS[$link]->query($query);
}

function tep_db_perform($table, $data, $action = 'insert', $parameters = '', $link = 'db') {
trigger_error('The tep_db_perform function has been deprecated.', E_USER_DEPRECATED);
return $GLOBALS[$link]->perform($table, $data, $action, $parameters);
}

function tep_db_fetch_array($db_query) {
trigger_error('The tep_db_fetch_array function has been deprecated.', E_USER_DEPRECATED);
return $db_query->fetch_assoc();
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.0.9.1 Questions / Comments / Concerns

Post by burt »

This probably means that an addon in your shop has not been updated to modern standards...
However, I do not think that this would cause an error you describe (white page)..
I am not here to build for you.
I am here to build with you. Let's help each other.
miki
Member
Posts: 8
Joined: Fri Apr 26, 2024 12:52 pm
Phoenix Version: v1.0.9.0

Re: 1.0.9.1 Questions / Comments / Concerns

Post by miki »

there is something more:
#7 {main}
#6 /home/dozen17/public_html/askaniaproductions.com/feniks/index.php(17): require('/home/dozen17/p...')
#5 /home/dozen17/public_html/askaniaproductions.com/feniks/templates/default/includes/pages/index.php(32): Template->get_content('index_products')
#4 /home/dozen17/public_html/askaniaproductions.com/feniks/includes/system/versioned/1.0.8.4/template.php(106): cm_ip_product_listing->execute()
#3 /home/dozen17/public_html/askaniaproductions.com/feniks/includes/modules/content/index_products/cm_ip_product_listing.php(73): require('/home/dozen17/p...')
#2 /home/dozen17/public_html/askaniaproductions.com/feniks/includes/system/segments/sortable_product_columns.php(18): array_filter(Array, Object(Closure), 2)
#1 [internal function]: cm_ip_product_listing->{closure}('PRODUCT_LIST_IM...')
#0 /home/dozen17/public_html/askaniaproductions.com/feniks/includes/system/segments/sortable_product_columns.php(65): constant('PRODUCT_LIST_IM...')
Stack trace:
[10-Dec-2025 12:47:39 Europe/London] PHP Fatal error: Uncaught Error: Undefined constant "PRODUCT_LIST_IMAGE" in /home/dozen17/public_html/askaniaproductions.com/feniks/includes/system/segments/sortable_product_columns.php:65
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: 1.0.9.1 Questions / Comments / Concerns

Post by burt »

miki wrote: Wed Dec 10, 2025 1:09 pm [10-Dec-2025 12:47:39 Europe/London] PHP Fatal error: Uncaught Error: Undefined constant "PRODUCT_LIST_IMAGE" in /home/dozen17/public_html/askaniaproductions.com/feniks/includes/system/segments/sortable_product_columns.php:65
Fixing this would be the first thing. That might be the end of it, or it might lead to more errors.

https://github.com/CE-PhoenixCart/Phoen ... c438e12e9e

In english; remove the lines of code marked.
I am not here to build for you.
I am here to build with you. Let's help each other.
mendoh
Member
Posts: 5
Joined: Thu Mar 04, 2021 6:10 pm
Phoenix Version:

PHP fatal error after upgrading to 1.0.9.1

Post by mendoh »

Hello everybody.

After upgrading to 1.0.9.1 as instructed here: https://github.com/CE-PhoenixCart/Updat ... .1/1.0.9.0
what I get is a totally blank admin page, with the following error:

PHP Fatal error: Uncaught Error: Call to undefined function tep_href_link() in /mywebsite.com/admin/includes/boxes/catalog_categories.php:17

Can anyone point me out on how to solve the above issue?

Thank you


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