question

69673825 avatar image
0 Votes"
69673825 asked BobJohnson-6874 edited

Node JS button problem.

I have a node JS program that was working fine until reached about 4000 lines.
I have a page which is the root main page and if I click on "checkout button" the software just goes back to root main page
If I rename the page checkout43 then the checkout page works correctly.

The same problem ocurrs with a log in page. Called login it goes back to main page and called login43 works correctly.

I have cut software down to bare bones with nothing else there and the problem persists.

Any advice would be appreciated.
Could be a lack of stack or heap due to the 4000 lines ?


app.get('/login43', function (req, res) {

 mainlogin(req, res);

});

app.post('/login43', function (req, res) {

 mainlogin(req, res);

});

not-supported-azure
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

0 Answers