- Posts: 1
[Closed] Removing Moodle Log in Page
- gcoulter
- Topic Author
- Offline
- New Member
-
Less
More
15 years 3 months ago - 14 years 8 months ago #1
by gcoulter
[Closed] Removing Moodle Log in Page was created by gcoulter
Hi
I'm using moodle v2 and joomla 1.5.22. Read thru the instructions and have got it up and running.
But now I'd like to remove the moodle log in page.
However the instructions on the wiki say
Users->Authentication->Manage Authentication: Alternate Login URL. Here we put Joomla URL
However this menu does not exist.
Any ideas?
Thanks.
I'm using moodle v2 and joomla 1.5.22. Read thru the instructions and have got it up and running.
But now I'd like to remove the moodle log in page.
However the instructions on the wiki say
Users->Authentication->Manage Authentication: Alternate Login URL. Here we put Joomla URL
However this menu does not exist.
Any ideas?
Thanks.
Last edit: 14 years 8 months ago by Chris.
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7926
15 years 3 months ago #2
by Antonio Durán
Replied by Antonio Durán on topic Re: Removing Moodle Log in Page
Hi.
Place has changed in Moodle 2.0. I just updated the wiki.
New place is:
** Site administration->Plugins->Autenticathion->Manage autenthication: Alternate Login URL.
Place has changed in Moodle 2.0. I just updated the wiki.
New place is:
** Site administration->Plugins->Autenticathion->Manage autenthication: Alternate Login URL.
Please Log in or Create an account to join the conversation.
- Jon
- Offline
- New Member
-
Less
More
- Posts: 9
14 years 8 months ago #3
by Jon
How do I go into the database to manually disable the Alternate Login URL? Or better yet, fix it so that it works on localhost?
Replied by Jon on topic Re: Removing Moodle Log in Page
Help! I just copied my live site to my localhost, and I can't log in because I had the "Alternate Login URL" set.antonio wrote: Hi.
Place has changed in Moodle 2.0. I just updated the wiki.
New place is:
** Site administration->Plugins->Autenticathion->Manage autenthication: Alternate Login URL.
How do I go into the database to manually disable the Alternate Login URL? Or better yet, fix it so that it works on localhost?
Please Log in or Create an account to join the conversation.
- Jon
- Offline
- New Member
-
Less
More
- Posts: 9
14 years 8 months ago #4
by Jon
if (!empty($CFG->alternateloginurl)) {
to
if (empty($CFG->alternateloginurl)) {
(remove the '!' punctation)
Then, log in as Moodle superuser/admin, and change the Alternate Login URL to the proper localhost one. Then, revert the index.php above to the original.
Replied by Jon on topic Re: Removing Moodle Log in Page
In <MoodleRoot>/login/index.php, change line 263 from:hann wrote: Help! I just copied my live site to my localhost, and I can't log in because I had the "Alternate Login URL" set.
How do I go into the database to manually disable the Alternate Login URL? Or better yet, fix it so that it works on localhost?
if (!empty($CFG->alternateloginurl)) {
to
if (empty($CFG->alternateloginurl)) {
(remove the '!' punctation)
Then, log in as Moodle superuser/admin, and change the Alternate Login URL to the proper localhost one. Then, revert the index.php above to the original.
Please Log in or Create an account to join the conversation.
- Chris
-
- Offline
- Moderator
-
14 years 8 months ago #5
by Chris
Replied by Chris on topic Re: Removing Moodle Log in Page
Thanks for your solution. Glad you found the way.
Please Log in or Create an account to join the conversation.