1.0.8.16 Questions / Comments / Concerns

Ask the community for help and support.
Omar_one
VIP Member
VIP Member
Posts: 481
Joined: Fri Oct 25, 2019 5:06 pm
Has thanked: 48 times
Been thanked: 27 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by Omar_one »

Omar_one wrote: Thu Dec 29, 2022 8:55 pm Hello.
I am not able to view the cart of a logged customer in who's online, the infobox not shown.
and the style of the tables looking missing.
Capture.JPG

copy the whos_online file from 1.0.8.20 and same issue
Thank you
Omar
@ecartz
Test it on 1.0.8.20 and same thing.. any one have same issue?

Tags:
ecartz
Lead Developer
Lead Developer
Posts: 2637
Joined: Tue Nov 05, 2019 6:02 pm
Has thanked: 4 times
Been thanked: 181 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by ecartz »

Omar_one wrote: Sat Dec 31, 2022 5:21 pm Test it on 1.0.8.20 and same thing..
Have you tried it without the URL rewriter and other add-ons?

Alternately, I note that your screenshot shows the customer ID as 0. Are these logged in users? Because I don't think that Who's Online shows infoboxes for anonymous users. Or if they are logged in, then perhaps there is something wrong with the thing that is supposed to store that.
Omar_one
VIP Member
VIP Member
Posts: 481
Joined: Fri Oct 25, 2019 5:06 pm
Has thanked: 48 times
Been thanked: 27 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by Omar_one »

ecartz wrote: Sat Dec 31, 2022 7:13 pm
Omar_one wrote: Sat Dec 31, 2022 5:21 pm Test it on 1.0.8.20 and same thing..
Have you tried it without the URL rewriter and other add-ons?

Alternately, I note that your screenshot shows the customer ID as 0. Are these logged in users? Because I don't think that Who's Online shows infoboxes for anonymous users. Or if they are logged in, then perhaps there is something wrong with the thing that is supposed to store that.
sorry it was wrong screen shot

new test 1.0.8.20 pro, the Name Based Urls not installed ,, just QytPro, ajax attribute manager modules installed
Capture.JPG
You do not have the required permissions to view the files attached to this post.
Tanya
Posts: 19
Joined: Tue Mar 09, 2021 3:16 pm
Has thanked: 8 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by Tanya »

Same problem as @Omar_one, new core install from 1.0.8.11-1.0.8.20 unable to view the cart of a logged customer.

I have not tried the version older than 1.0.8.11
heatherbell
VIP Member
VIP Member
Posts: 1996
Joined: Mon Oct 07, 2019 4:39 am
Has thanked: 26 times
Been thanked: 175 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by heatherbell »

Omar_one wrote: Thu Dec 29, 2022 8:55 pm I am not able to view the cart of a logged customer in who's online, the infobox not shown.
Similar issue, using 1.0.8.20 on a staging site on XAMPP, info box not showing on whos_online.php
Would expect to see screenshot below (taken from 1.0.7.12) even for guest.
Screenshot 2023-01-01 084024.png
You do not have the required permissions to view the files attached to this post.
LeeFoster
VIP Member
VIP Member
Posts: 228
Joined: Sun Feb 28, 2021 9:41 pm
Has thanked: 1 time
Been thanked: 5 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by LeeFoster »

I'm working on a 1.0.8.16 store and just noticed the info pages don't update and new ones cannot be added.

Anyone else had this issue?
ecartz
Lead Developer
Lead Developer
Posts: 2637
Joined: Tue Nov 05, 2019 6:02 pm
Has thanked: 4 times
Been thanked: 181 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by ecartz »

Omar_one wrote: Thu Dec 29, 2022 8:55 pm I am not able to view the cart of a logged customer in who's online, the infobox not shown.
TY https://github.com/CE-PhoenixCart/Phoen ... bc14768604
Omar_one
VIP Member
VIP Member
Posts: 481
Joined: Fri Oct 25, 2019 5:06 pm
Has thanked: 48 times
Been thanked: 27 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by Omar_one »

@ecartz moving products got blank page
and here is the lines from error_log file

Code: Select all

PHP Notice:  Undefined variable: product in /home/XXXX/public_html/admin/includes/actions/catalog/infoboxes/move_product.php on line 15
PHP Fatal error:  Uncaught Error: Call to a member function get() on null in /home/XXXX/public_html/admin/includes/actions/catalog/infoboxes/move_product.php:15
Stack trace:
#0 /home/XXXX/public_html/admin/includes/components/infobox.php(15): require()
#1 /home/XXXX/public_html/admin/includes/actions/catalog/views/default.php(175): require('/home/XXXX/p...')
#2 /home/XXXX/public_html/admin/catalog.php(48): require('/home/XXXX/p...')
#3 {main}
  thrown in /home/XXXX/public_html/admin/includes/actions/catalog/infoboxes/move_product.php on line 15
line 15 from /admin/includes/actions/catalog/infoboxes/move_product.php

Code: Select all

$contents = ['form' => (new Form('products', $Admin->link('catalog.php', ['action' => 'move_product_confirm', 'cPath' => $cPath])))->hide('products_id', $product->get('id'))];
 
lines 173-177 from /admin/includes/actions/catalog/views/default.php

Code: Select all

<?php
    if ($action_file = $GLOBALS['Admin']->locate('/infoboxes', $GLOBALS['action'])) {
      require DIR_FS_ADMIN . 'includes/components/infobox.php';
    }
?>
line 15 from /admin/includes/components/infobox.php

Code: Select all

 require $action_file;
lines 45-49 from /admin/catalog.php

Code: Select all

$base_url = HTTP_SERVER . DIR_WS_ADMIN;

  if ($view_file = $Admin->locate('/views', $action)) {
    require $view_file;
  }
Br
Omar
ecartz
Lead Developer
Lead Developer
Posts: 2637
Joined: Tue Nov 05, 2019 6:02 pm
Has thanked: 4 times
Been thanked: 181 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by ecartz »

Omar_one wrote: Mon Mar 13, 2023 6:37 pm PHP Notice: Undefined variable: product in
It says that $product isn't set. What's the URL after catalog.php? E.g. it might say something like catalog.php?cPath=1_2&products_id=3&action=move_product
Omar_one
VIP Member
VIP Member
Posts: 481
Joined: Fri Oct 25, 2019 5:06 pm
Has thanked: 48 times
Been thanked: 27 times

Re: 1.0.8.16 Questions / Comments / Concerns

Post by Omar_one »

@ecartz
after check more I noticed the issue what we have cased just by one product when we search the product name and try to move it or copy it .

by the way our link don't have (products_id) it have(pID) and noticed a while ago some warring or error about pID missing or something, I can't found it anymore

Code: Select all

catalog.php?cPath=1_2&products_id=3&action=move_product
ours look like this

Code: Select all

catalog.php?cPath=1_2&pID=3&action=move_product
Post Reply