This topic is locked
[SOLVED]

 "#" is added at the end of the URL after login

12/14/2020 08:56:27
PHPRunner General questions
D
dannyschaepdrijver authorDevClub member

All of a sudden the "#" character is added at the end of the URL after a login attempt.

Where does that come from ?
We start the application with a login page : http://10.43.1.172:8080/Inventory/login.php?return=true&;
After we try to login (which we cannot) the page stays there and the URL is changed to : http://10.43.1.172:8080/Inventory/login.php?return=true&;#
So a # character is added to the URL and nothing happens.
What is causing this trouble ?
Many thanks in advance.

Danny

Sergey Kornilov admin 12/14/2020

It looks like some sort of web server or PHP configuration issue. For instance, if PHP sessions are not configured you will be redirected back to the login page.

D
dannyschaepdrijver authorDevClub member 12/14/2020



It looks like some sort of web server or PHP configuration issue. For instance, if PHP sessions are not configured you will be redirected back to the login page.


thank you for your reply, however, if I make a brand new project with the same database and on the same webserver/PHP, then it works perfect, so one can expect that is caused buy something coming from phprunner.

Sergey Kornilov admin 12/14/2020

I recommend to check this article:

https://xlinesoft.com/blog/2018/05/07/troubleshooting-web-applications/
It helps to check for Javascript and PHP errors, test the same app using another web server i.e. built-in PHPRunner's web server or Demo Account etc.

D
dannyschaepdrijver authorDevClub member 12/14/2020



I recommend to check this article:

https://xlinesoft.com/blog/2018/05/07/troubleshooting-web-applications/
It helps to check for Javascript and PHP errors, test the same app using another web server i.e. built-in PHPRunner's web server or Demo Account etc.


Dear Sir,

Thenk you for sending me the troubleshooting-web-applications document. It solved my problem.

There were some translations from a deleted button which caused the problem. With the debugging in the browser I was able to locate the problem.
Many thanks.