Advertisement:

Author Topic: This webpage has a redirect loop  (Read 1905 times)

artmaniako

  • Newbie
  • *
  • Posts: 14
Re: This webpage has a redirect loop
« Reply #15 on: March 04, 2016, 06:38:53 pm »
Solved!!!!

It is because 'REL_WEB_URL path and 'WEB_PATH' isn't configured properly. Open config.php file in the root folder and change the following lines to

define('REL_WEB_URL', '/');
define('WEB_PATH', 'http://domainname.com');
Now is work!!!
Anyway THANX Guys!!!!!

Aficionado

  • Guest
Re: This webpage has a redirect loop
« Reply #16 on: March 04, 2016, 07:15:38 pm »
If that was your problem, then it actually is:

Code: [Select]
define('REL_WEB_URL', '/');
define('WEB_PATH', 'http://domainname.com/');

with an "/" at the end of the domain.

Or mine is:

Code: [Select]
define('REL_WEB_URL', '/');
define('WEB_PATH', 'http://www.domainname.com/');
« Last Edit: March 04, 2016, 07:18:14 pm by Aficionado »

artmaniako

  • Newbie
  • *
  • Posts: 14
Re: This webpage has a redirect loop
« Reply #17 on: March 04, 2016, 07:37:13 pm »
Yes, with "/"
Thanx!!!