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
line 29 in login.php reads $sRedirect = ($sRedirect != '') ? $sRedirect : WB_URL . ((INTRO_PAGE) ? PAGES_DIRECTORY : '') . '/index.php';
and accordingly logout.php, l.34ff if (INTRO_PAGE) { header('Location: ' . WB_URL . PAGES_DIRECTORY . '/index.php'); }
what means, that in case of an activated intro page the user is redirected to wbcedomain.tld/pages/index.php. This is transformed by shortURL into wbcedomain.tld/index/, which leads into a 404 not found error.
Beside of this even on usual pages the pages/index.php is no real page, but just a redirect to wbcedomain.tld/index.php.
I think there was once an issue with an endless redirect in case of an activated intro page and a private/registered starting page, and to avoid this, the redirect to pages/index.php was choosen, but I think this solution actually has some disadvantages too.
The text was updated successfully, but these errors were encountered:
* Correct CodeMirror syntax for pure PHP without <?php opening tag
* debug_dump() function: some CSS and JS corrections
* Sign-up templates: addressing issue #512
---------
Co-authored-by: WebDesignWorx <[email protected]>
line 29 in login.php reads
$sRedirect = ($sRedirect != '') ? $sRedirect : WB_URL . ((INTRO_PAGE) ? PAGES_DIRECTORY : '') . '/index.php';
and accordingly logout.php, l.34ff
if (INTRO_PAGE) { header('Location: ' . WB_URL . PAGES_DIRECTORY . '/index.php'); }
what means, that in case of an activated intro page the user is redirected to wbcedomain.tld/pages/index.php. This is transformed by shortURL into wbcedomain.tld/index/, which leads into a 404 not found error.
Beside of this even on usual pages the pages/index.php is no real page, but just a redirect to wbcedomain.tld/index.php.
I think there was once an issue with an endless redirect in case of an activated intro page and a private/registered starting page, and to avoid this, the redirect to pages/index.php was choosen, but I think this solution actually has some disadvantages too.
The text was updated successfully, but these errors were encountered: