Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Login Redirect
#1
When I do login I'm not being redirect to letoDMS Content Page. I'm still seeing the login page, then I have to erase the URL to localhost/letodms to get into program. Someone having this problem?

The URL after login is: http://localhost/letodms/out/out.Login.p...Folder.php
Reply
#2
(11-29-2012, 06:38 PM)kafran Wrote: When I do login I'm not being redirect to letoDMS Content Page. I'm still seeing the login page, then I have to erase the URL to localhost/letodms to get into program. Someone having this problem?

The URL after login is: http://localhost/letodms/out/out.Login.p...Folder.php

The form on out/out.Login.php sends its data to op/op.Login.php. Does it do that?

Uwe
Reply
#3
(11-29-2012, 07:46 PM)steinm Wrote:
(11-29-2012, 06:38 PM)kafran Wrote: When I do login I'm not being redirect to letoDMS Content Page. I'm still seeing the login page, then I have to erase the URL to localhost/letodms to get into program. Someone having this problem?

The URL after login is: http://localhost/letodms/out/out.Login.p...Folder.php

The form on out/out.Login.php sends its data to op/op.Login.php. Does it do that?

Uwe

Solved the problem. Apparently the problem was with my index.php that was redirecting to the wrong adress.

<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/letodms/'); <-- HERE
exit;
?>

Sorry to bother and thank you.
Reply


Forum Jump:


Users browsing this thread: