You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edit your postgres install SQL and set the sequence ID of the assets table to something lower than the already used keys.
Install Joomla with Postgres (PDO)
Create a menu and save it.
Expected result
An error screen maybe with a stack trace and an error message that gives any hint what went wrong.
Actual result
You get a white screen with the text Recursion trying to check if connected.
System information (as much as possible)
Checkout from 4.0-dev
Additional comments
The issue seems to be with Joomla\Database\Pdo\PdoDriver::connected(). That method should check if the connection is alive and for that runs a query, which in turn calls execute(), which again calls connected() which then runs into the recursion condition.
The text was updated successfully, but these errors were encountered:
Steps to reproduce the issue
Expected result
An error screen maybe with a stack trace and an error message that gives any hint what went wrong.
Actual result
You get a white screen with the text
Recursion trying to check if connected.
System information (as much as possible)
Checkout from 4.0-dev
Additional comments
The issue seems to be with
Joomla\Database\Pdo\PdoDriver::connected()
. That method should check if the connection is alive and for that runs a query, which in turn calls execute(), which again calls connected() which then runs into the recursion condition.The text was updated successfully, but these errors were encountered: