s06e08 - Keys System QUESTIONS/SUPPORT

Open to all! Ask other shopowners for help.
admin
Contributor
Posts: 217
Joined: Wed Oct 30, 2019 1:34 pm
Phoenix Version:
Has thanked: 20 times
Been thanked: 22 times

s06e08 - Keys System QUESTIONS/SUPPORT

Post by admin »

Addon:
This addon adds "Key" which allows customers to do things after the sale, without actually having to log into their account.

Download:
viewtopic.php?f=28&t=218

--

Questions/Support

Tags:


Join The Code Co-op to get access to your library in the Code Co-op Forum
zeeshop
Member
Posts: 71
Joined: Sun Jan 10, 2021 11:30 pm
Phoenix Version:
Has thanked: 15 times
Been thanked: 2 times

Re: s06e08 - Keys System

Post by zeeshop »

Hi,

Installed this module on version 1.0.8.7 everything seems to be working fine apart from getting the below error at

https://www.mysite.com/admin/orders.php - under the order list

Code: Select all

Notice: Trying to get property 'clubosc_key' of non-object in
/homepages/31/d**********/htdocs/Z**********/includes/hooks/admin/orders/keys.php on line18
Line 18 and 19 is as below:

Code: Select all

  if (tep_not_null($oInfo->clubosc_key)) {
              $parameters['contents'][] = ['text' => sprintf(CLUBOSC_KEY, $oInfo->clubosc_key)];
Any suggestion on how to get rid of this notice.
Thanks
ecartz
Core Team
Posts: 3084
Joined: Tue Nov 05, 2019 6:02 pm
Phoenix Version:
Has thanked: 4 times
Been thanked: 208 times

Re: s06e08 - Keys System

Post by ecartz »

If you just want to suppress the notice:

Code: Select all

  if (tep_not_null($oInfo->clubosc_key ?? '')) {
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: s06e08 - Keys System

Post by raiwa »

Kofod95 wrote: Sun Dec 05, 2021 7:32 pm Noted - I just thought I'd better try that page, as I struggle getting email to work locally :)
Try paper cut, I use it since years:
https://github.com/ChangemakerStudios/Papercut-SMTP
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
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: s06e08 - Keys System

Post by Kofod95 »

raiwa wrote: Sun Dec 05, 2021 9:22 pm Try paper cut
This was excellent advice, thank you! You have saved me for a lot of looking into things I don't understand :D

//Daniel
I'm not smart, but sometimes even a blind chicken can find a corn.
Here are a lot of corns: Phoenix user guide
User avatar
ReneH4
Contributor
Posts: 145
Joined: Mon Oct 26, 2020 12:00 pm
Phoenix Version:
Has thanked: 13 times
Been thanked: 17 times

Re: s06e08 - Keys System

Post by ReneH4 »

Just wanted to mention that it's good to see the hard work that is being done at the moment!

Thanks you guys!
radhavallabh
Senior Contributor
Posts: 466
Joined: Tue Oct 27, 2020 4:09 am
Phoenix Version: 1.1.0.6
Has thanked: 29 times
Been thanked: 3 times

Re: s06e08 - Keys System

Post by radhavallabh »

Hi;
I am getting issue with the orders_keys.php page in admin. Using 1.0.8.16 version
I am not able to multi select customers and when I tick or click on any customer it takes me to the order page instead.

Also when I select customers with Delivered or any other status from the Status menu I get
Fatal error: DB: [1064] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND s.orders_status_id = 3' at line 1 from

Even when I search for a Order ID it returns nothing only refreshes the page...

can you please help me fix the issue;
Thank you in advance;
Very warm Regds./
radhavallabh
radhavallabh
Senior Contributor
Posts: 466
Joined: Tue Oct 27, 2020 4:09 am
Phoenix Version: 1.1.0.6
Has thanked: 29 times
Been thanked: 3 times

Re: s06e08 - Keys System

Post by radhavallabh »

ecartz wrote: Fri Jul 22, 2022 11:30 pm Sending multiple emails at once won't work until 1.0.8.17, but this should fix the other issues now.

S06e08-1.0.8.17.zip

Note that the order ID search is kind of weak. It only selects the order ID on the page, and then only if it is on the front page.
Hi dear @ecartz ;
Please can you help with below.....
I upgraded 1o 1.0.8.17 and also updated the orders_keys.php from pro 1.0.8.17 but still the multi select tick boxes do not work to help select multiple orders and send out a email.
Please can you help fix it;
Thank you in advance;
Warm Regds./
radhavallabh
Omar_one
Senior Contributor
Posts: 676
Joined: Fri Oct 25, 2019 5:06 pm
Phoenix Version: v1.0.8.16
Has thanked: 100 times
Been thanked: 56 times

Re: s06e08 - Keys System

Post by Omar_one »

@ecartz
the Cron job not working ,, I need to hit the Cron URL manually..
anyone have same issue ?

Thank you
Omar
ecartz
Core Team
Posts: 3084
Joined: Tue Nov 05, 2019 6:02 pm
Phoenix Version:
Has thanked: 4 times
Been thanked: 208 times

Re: s06e08 - Keys System

Post by ecartz »

Omar_one wrote: Sat Sep 24, 2022 8:49 am the Cron job not working ,, I need to hit the Cron URL manually..
Try running the command that the cron job runs from the command line and see if it produces errors. Since I take it that visiting the cron URL manually is working.


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