Help changing payment details
Hello,
Recently I have taken over a business that uses Zen cart Version 1.5.6c and am currently trying to change over the payment details to a new bank account. I've been through all the different modules and cant find where to do it, How do i change them?
Website: http://www.tradingcardheroes.com.au/etch
To manage all the files and create the emails we are using Cpanel
Re: Help changing payment details
In admin, if you look at Modules > Payment and select each module displayed they will often show bank account details in the information panel on the right eg if using "dirbank" the bank account details are required in Zen Cart and are displayed.
If it is to change bank details with a clearing house like Square Pay, that is outside of Zen Cart and you will have to log onto their admin site and change the details with them.
1 Attachment(s)
Re: Help changing payment details
Apologiez, i should have also mentioned that i click onto each of the things and there is no infomation pannel, they all are blank.
I do have paypal on this site where do i go to change that
Attachment 20300
Re: Help changing payment details
What you are seeing is a partial blank page. There should be some log files and you can use the following to troubleshoot.
https://docs.zen-cart.com/user/troub...ng/blank_page/
1 Attachment(s)
Re: Help changing payment details
Im not sure if this is why but this is the full page.
How would i go about changing the paypal details, is that on the paypal side or do i do it on zencart?
Attachment 20301
Re: Help changing payment details
It looks as though you don't have PayPal, just specific for Australia.
Once you select dirbankaus and hit edit, are there settings to be modified?
Hopefully some knowledgeable person from down under will weigh in.
Re: Help changing payment details
I click the arrow and it does nothing
and i do have paypal i think because its on the website, feel free to have a look
http://www.tradingcardheroes.com.au/etch
Re: Help changing payment details
That's because, as @dbltoe indicated, you're seeing a partial blank screen which indicates that a PHP error occurred. Since the site is running zc156c, you can use your webhost's cPanel's File Manager (or FTP to the site) to view the /logs sub-directory.
That sub-directory will contain files named something like myDEBUG-adm-*.log. You can post the contents of any such log here for additional help, but be sure to edit that file with a text editor to xxx-out the name of the site's admin sub-directory.
Re: Help changing payment details
ive found the log file, what should i block out in particular before posting it. or is there anything in it that would tell me whats wrong
1 Attachment(s)
Re: Help changing payment details
Ive gone through and this seems to be the main issue can you see wants wrong with it
Attachment 20302
Re: Help changing payment details
Post the log, in its entirety, but changing the name of your admin directory and any site-specific directory names.
Re: Help changing payment details
This is what im getting in the log.
[26-May-2023 10:15:11 Australia/Sydney] PHP Parse error: syntax error, unexpected '[', expecting ';' or ',' in /home/trading1/public_html/etch/includes/modules/payment/linkpoint_api.php on line 320
[26-May-2023 10:15:11 Australia/Sydney] Request URI: /etch/etchadmin/modules.php?set=payment&module=dirbankaus, IP address: 10.232.0.76
--> PHP Parse error: syntax error, unexpected '[', expecting ';' or ',' in /home/trading1/public_html/etch/includes/modules/payment/linkpoint_api.php on line 320.
Re: Help changing payment details
Quote:
Originally Posted by
jcrennan
This is what im getting in the log.
[26-May-2023 10:15:11 Australia/Sydney] PHP Parse error: syntax error, unexpected '[', expecting ';' or ',' in /home/trading1/public_html/etch/includes/modules/payment/linkpoint_api.php on line 320
[26-May-2023 10:15:11 Australia/Sydney] Request URI: /etch/etchadmin/modules.php?set=payment&module=dirbankaus, IP address: 10.232.0.76
--> PHP Parse error: syntax error, unexpected '[', expecting ';' or ',' in /home/trading1/public_html/etch/includes/modules/payment/linkpoint_api.php on line 320.
Check your PM.
Also note that the linkpoint_api.php payment method was no longer shipped as part of the Zen Cart base as of zc155. You should delete the files
1. /includes/languages/english/modules/payment/linkpoint_api.php
2. /includes/modules/payment/linkpoint_api.php
from the site's file system. That should (hopefully) make everything 'happy' again.
Re: Help changing payment details
Yes thank you very much that did fix it
Re: Help changing payment details
Most excellent; happy to have helped.
Re: Help changing payment details
The issue
[26-May-2023 10:15:11 Australia/Sydney] PHP Parse error: syntax error, unexpected '[', expecting ';' or ',' in /home/trading1/public_html/etch/includes/modules/payment/linkpoint_api.php on line 320
is because the specific language structure used is no longer supported. Change
global $$order_totals[$i]['code'];
to
global ${$order_totals[$i]['code']};
See https://docs.zen-cart.com/user/upgra...or-unexpected-