- Posts: 10
[Fixed] Login URL failing
- Jason
- Topic Author
- Offline
- New Member
-
Less
More
15 years 5 months ago #1
by Jason
[Fixed] Login URL failing was created by Jason
Hi, junning joomla on a https domain, login return from joomla site was failing. turns out problem was in the regex inside /auth/joomdle/land.php line 120 - you have to change the regex to be:
preg_match('@^(?:https?
/)?([^/]+)@i',
get_config (NULL, 'joomla_url'), $matches);
note the added s? for those of us working on secure domains
preg_match('@^(?:https?
/)?([^/]+)@i',get_config (NULL, 'joomla_url'), $matches);
note the added s? for those of us working on secure domains
The topic has been locked.
- Chris
-
- Offline
- Moderator
-
15 years 5 months ago #2
by Chris
Replied by Chris on topic Re: [Fixed] Login URL failing
Great. Thank you so much for sharing your problem and your solution.
We will add this to our FAQ and see what we can do about including this in Joomdle.
Chris
We will add this to our FAQ and see what we can do about including this in Joomdle.
Chris
The topic has been locked.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7902
15 years 5 months ago #3
by Antonio Durán
Replied by Antonio Durán on topic Re: [Fixed] Login URL failing
Added fix for next release.
Thanks,
Antonio
Thanks,
Antonio
The topic has been locked.