Hello !
I would like to check out and there is a problem since this morning :
I wand to give money ! I want to pay ! I want to order ! :)
Thank you
You will not be able to post if you are still using Microsoft email addresses such as Hotmail etc
See here for more information viewtopic.php?f=20&t=7296
See here for more information viewtopic.php?f=20&t=7296
BOOKMARK THIS PAGE !
https://www.exxosforum.co.uk:8085/IP_CHECK/
You can unban yourself if needed. It also sends me reports to investigate the ban.
https://www.exxosforum.co.uk:8085/IP_CHECK/
You can unban yourself if needed. It also sends me reports to investigate the ban.
DO NOT USE MOBILE / CGNAT DEVICES WHERE THE IP CHANGES CONSTANTLY!
At this time, it is unfortunately not possible to whitelist users when your IP changes constantly.
You may inadvertently get banned because a previous attack may have used the IP you are now on.
So I suggest people only use fixed IP address devices until I can think of a solution for this problem!
At this time, it is unfortunately not possible to whitelist users when your IP changes constantly.
You may inadvertently get banned because a previous attack may have used the IP you are now on.
So I suggest people only use fixed IP address devices until I can think of a solution for this problem!
Order impossible
-
Sinis
- Posts: 24
- Joined: 06 Nov 2021 23:19
Order impossible
You do not have the required permissions to view the files attached to this post.
-
exxos
- Site Admin

- Posts: 28094
- Joined: 16 Aug 2017 23:19
- Location: UK
Re: Order impossible
I think this is relating to a store change I did a few days ago... https://www.exxosforum.co.uk/forum/viewt ... =90&t=4931
Thanks for the report, I will go check the error logs and see what I screwed up..
Thanks for the report, I will go check the error logs and see what I screwed up..
-
exxos
- Site Admin

- Posts: 28094
- Joined: 16 Aug 2017 23:19
- Location: UK
Re: Order impossible
@Sinis Please try doing your order again and hopefully it will work this time.. ?
-
Sinis
- Posts: 24
- Joined: 06 Nov 2021 23:19
Re: Order impossible
@exxos Same bug.
It comes just after clicking on "Complete order" :
View Basket / Checkout / "Complete order", when you have the "shipping address" on the left of the screen.
It comes just after clicking on "Complete order" :
View Basket / Checkout / "Complete order", when you have the "shipping address" on the left of the screen.
-
exxos
- Site Admin

- Posts: 28094
- Joined: 16 Aug 2017 23:19
- Location: UK
Re: Order impossible
This is now fixed.
I really don't understand the problem, because I have been using version 3 of my store code on my V2 store.. BUT the changes I made were on V3, but the file I did a binary comparison on it before making changes to make sure I was not going to break V2 system, and other than three lines which were basically comments, there was no changes whatsoever. But that file with the comments in malfunctions even when I removed those three commented lines. So I just went back to the original V2 file, made the changes I did last week again, and now it is working.. So I'm basically sat puzzling what the differences between the working and not working file :stars:
Was line 3 it was tripping up on. :shrug:
I really don't understand the problem, because I have been using version 3 of my store code on my V2 store.. BUT the changes I made were on V3, but the file I did a binary comparison on it before making changes to make sure I was not going to break V2 system, and other than three lines which were basically comments, there was no changes whatsoever. But that file with the comments in malfunctions even when I removed those three commented lines. So I just went back to the original V2 file, made the changes I did last week again, and now it is working.. So I'm basically sat puzzling what the differences between the working and not working file :stars:
Was line 3 it was tripping up on. :shrug:
You do not have the required permissions to view the files attached to this post.
-
Sinis
- Posts: 24
- Joined: 06 Nov 2021 23:19
Re: Order impossible
@exxos Yes, it's good!
Order ok!
...because I spent a LOT of time helping you (about 3 minutes :lol : ) I know you'll send the order as soon as possible : I should receive it tomorrow :)
On a more serious note, if I can help you, it would be my pleasure.
Order ok!
...because I spent a LOT of time helping you (about 3 minutes :lol : ) I know you'll send the order as soon as possible : I should receive it tomorrow :)
On a more serious note, if I can help you, it would be my pleasure.
-
Sinis
- Posts: 24
- Joined: 06 Nov 2021 23:19
Re: Order impossible
...perhaps not a problem regarding the file's content, but the file itself : rights and permissions ? Ok on the "old" file, Ko on the new one.
Just an idea.
Just an idea.
-
exxos
- Site Admin

- Posts: 28094
- Joined: 16 Aug 2017 23:19
- Location: UK
Re: Order impossible
I don't know, because it was a error in the logs at lines 3..Sinis wrote: 13 Dec 2021 16:06 ...perhaps not a problem regarding the file's content, but the file itself : rights and permissions ? Ok on the "old" file, Ko on the new one.
Just an idea.
Code: Select all
PHP Warning: Unterminated comment starting line 3 in /var/www/html/atari/store2/checkoutxxxxxx.php on line 3, referer: https://www.exxosforum.co.uk/atari/store2/Just goes to show how even when you take precautions to make sure you are editing the right stuff.. Things still can go wrong :( It is why I did a binary comparison on the file before I started making changes, to make sure I had not change anything else between V2 and V3 store files..
Do not like it when things do not add up :cry: There is even similar comments further down the file anyway .
:dizzy:
-
Badwolf
- Site sponsor

- Posts: 3024
- Joined: 19 Nov 2019 12:09
Re: Order impossible
I recall you mentioning the other day that PHP's parsing was a bit skew whiff -- tokens matching substrings of function names, for example.
Is it possible PHP treats "/ <space> *" the same as "/*", hence it looks like the whole file past line 3 is commented out?
BW
Is it possible PHP treats "/ <space> *" the same as "/*", hence it looks like the whole file past line 3 is commented out?
BW
DFB1 Open source 50MHz 030 and TT-RAM accelerator for the Falcon
Smalliermouse ST-optimised USB mouse adapter based on SmallyMouse2
FrontBench The Frontier: Elite 2 intro as a benchmark
Smalliermouse ST-optimised USB mouse adapter based on SmallyMouse2
FrontBench The Frontier: Elite 2 intro as a benchmark
-
derkom
- Moderator

- Posts: 1230
- Joined: 29 Jul 2018 18:45
Re: Order impossible
It certainly shouldn't. When I stick this on my own server...Badwolf wrote: 13 Dec 2021 17:17 Is it possible PHP treats "/ <space> *" the same as "/*", hence it looks like the whole file past line 3 is commented out?
Code: Select all
<?php
// this is a test comment
// *** this is a second test comment
/* this is a third test comment
phpinfo()
?>
Who is online
Users browsing this forum: CCBot and 0 guests