Search found 7 matches

by Mikepo
Mon Nov 01, 2021 4:55 pm
Forum: Community Help & Support
Topic: Email not working
Replies: 10
Views: 3125

Re: Email not working

I here godaddy block all outbound emails on ports 25, 465 and 587, except their own server.
by Mikepo
Sat May 08, 2021 2:44 pm
Forum: Community Help & Support
Topic: reset password vulnerability
Replies: 1
Views: 894

reset password vulnerability

re: https://forums.oscommerce.com/topic/496564-reset-password-vulnerability/ This option only works if the user changes the password after logging in. If the user changes the password using the forgotten password option, then all other sessions in different browsers still stay logged in. This was ch...
by Mikepo
Mon Apr 19, 2021 1:08 pm
Forum: Community Help & Support
Topic: PHP CLI - rediret to login
Replies: 3
Views: 1365

Re: PHP CLI - rediret to login

If you don't need all of application_top just use this: require('../../includes/configure.php'); require('../../includes/functions/database.php'); echo "<br />active server : " . DB_SERVER . "<br/>active database : " . DB_DATABASE; tep_db_connect($server = DB_SERVER, $username = ...
by Mikepo
Wed Mar 31, 2021 10:00 am
Forum: Community Help & Support
Topic: Another silly VAT question regarding invoice totals layout
Replies: 11
Views: 3378

Re: Another silly VAT question regarding invoice totals layout

As you have selected show prices including VAT, the Sub-total + P&P add up to 13.74. The row VAT @ 20% just shows the VAT content which is correct.

I assume if you show prices excluding VAT, then 8.32 + 3.13 + 2.29 = 13.74 would be shown.
by Mikepo
Thu Jan 14, 2021 10:25 am
Forum: Community Help & Support
Topic: customer_id create account
Replies: 5
Views: 3121

Re: customer_id create account

Thank you Matt, changing the file/class name as suggested worked. I'm not totally understanding why?
Prior to the file name change the hook wasn't being called, checked by using an alert box in script.
Any way, thanks again!
by Mikepo
Wed Jan 13, 2021 2:50 pm
Forum: Community Help & Support
Topic: customer_id create account
Replies: 5
Views: 3121

Re: customer_id create account

ok, using the postAccountCreation hook call defined in create_account.php in 1.0.7.11, I could use code to create an entry in the action_recorder table. Now, in 1.0.7.12, postRegistration hook is added to replace postAccountCreation. I adjusted my hook accordlingly, but it does not seem to call the ...
by Mikepo
Thu Dec 31, 2020 2:52 pm
Forum: Community Help & Support
Topic: customer_id create account
Replies: 5
Views: 3121

customer_id create account

Hi,
I'm wanting to use the postAccountCreation hook in create_account.php, and utilise the customer_id. However the customer_id is part of the object class which is private.
How you I obtain the value for customer_id?