Search found 11 matches

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

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: 1399

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: 2346

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: 6180

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: 7943

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: 7943

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: 7943

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?
by Mikepo
Mon Nov 30, 2020 2:49 pm
Forum: Community Help & Support
Topic: Bootswatch Selection
Replies: 3
Views: 902

Re: Bootswatch Selection

ecartz wrote: Mon Nov 30, 2020 2:07 pm It might be the custom template (i.e. the one that is not Gustavo). Note that it would have to have the custom template selected for it to function.
Now I remember, and yes the colour selection works once the custom template is set, thanks.
by Mikepo
Mon Nov 30, 2020 1:27 pm
Forum: Community Help & Support
Topic: Bootswatch Selection
Replies: 3
Views: 902

Bootswatch Selection

I'm not sure if I've missed something, but admin/configeration/bootstrap_setup has an option to change the colours using menu pick 'Bootswatch Selection'.

I've cleared the cache, but whichever colour-set I select no change is made. Does this option acually work or does it need additional files ?
by Mikepo
Wed Nov 18, 2020 7:56 pm
Forum: Community Help & Support
Topic: java Script ot remove html elements
Replies: 5
Views: 759

Re: java Script ot remove html elements

yep it did work and your suggestion of a .css selector attached <div class="form-group row" id="pTax"> would be an improvement in core, becuase that was what I was initially looking for, even with my limited coding abilitity. Category tab is now working without core change. Thank...