Uhm, how to enable Joomla-authentication plugin

For Joomla! 1.5 Coding related discussions, please use: http://groups.google.com/group/joomla-dev-general
Locked
permagnar
Joomla! Apprentice
Joomla! Apprentice
Posts: 11
Joined: Fri Feb 17, 2006 2:20 pm

Uhm, how to enable Joomla-authentication plugin

Post by permagnar » Tue Oct 10, 2006 10:46 am

In an effort trying to enable the ldap-plugin, i disabled the "default" joomla authentication plugin. not surprisingly, i locked my self out of the backend  :P

Is there any way to re-enable the default authentication plugin without having to reinstall the whole shabang?

This is my first experience with joomla1.5 - it looks great!

User avatar
Hackwar
Joomla! Virtuoso
Joomla! Virtuoso
Posts: 3788
Joined: Fri Sep 16, 2005 8:41 pm
Location: NRW - Germany
Contact:

Re: Uhm, how to enable Joomla-authentication plugin

Post by Hackwar » Wed Oct 11, 2006 2:42 am

The only way is to go into the db and change the according entry in the table jos_plugins.
god doesn't play dice with the universe. not after that drunken night with the devil where he lost classical mechanics in a game of craps.

Since the creation of the Internet, the Earth's rotation has been fueled, primarily, by the collective spinning of English teachers in their graves.

User avatar
demo38
Joomla! Apprentice
Joomla! Apprentice
Posts: 32
Joined: Fri Jun 22, 2007 2:58 am
Location: oh, usa
Contact:

Re: Uhm, how to enable Joomla-authentication plugin

Post by demo38 » Wed Jul 09, 2008 8:44 pm

Dang it if I didn't just do the same dang thing, for the same dang reason...

Any insight on what exactly to edit in jos_plugins to re-enable it?

Thanks...

Man, feels like a Monday right now... TPS reports aren't filled out...


* EDIT * - Got it, Game On!

sanscript
Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Thu Jun 11, 2009 6:56 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by sanscript » Thu Jun 11, 2009 7:09 pm

How did you do it, I've just done exactly the same - Duhh

sanscript
Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Thu Jun 11, 2009 6:56 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by sanscript » Thu Jun 11, 2009 7:30 pm

Sorted:

UPDATE jos_plugins SET published = 1 WHERE element ='joomla' and folder = 'user';

fmarvel
Joomla! Apprentice
Joomla! Apprentice
Posts: 6
Joined: Mon Oct 19, 2009 4:17 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by fmarvel » Mon Oct 19, 2009 4:26 pm

I had to use "... folder='authentication' " to make it work.

tresok
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Mon Apr 25, 2011 7:36 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by tresok » Mon Apr 25, 2011 7:39 pm

Anybody knows how to do this in 1.6?

???

kballou
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 168
Joined: Mon Oct 08, 2007 10:51 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by kballou » Mon Apr 25, 2011 10:39 pm

UPDATE jos_extensions SET enabled = 1 WHERE name = 'plg_authentication_joomla';

Or:

UPDATE jos_extensions SET enabled = 1 WHERE element = 'joomla' AND folder = 'authentication';

(Of course, change "jos_" to your installation's table prefix. ;D )

tresok
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Mon Apr 25, 2011 7:36 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by tresok » Tue Apr 26, 2011 7:56 am

And success!!! thank you very much

rtdrury
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Thu Jun 30, 2011 8:51 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by rtdrury » Thu Jun 30, 2011 9:06 pm

The guy didn't know the Authentication Plugin related to the administrator. He likely thought it related to the front end. in the plugin manager the tooltip might describe the plugin concisely, e.g. "Joomla! Administrator User Authentication".

That way one would be highly unlikely to misinterpret the name "Authenticaltion Plugin".

Such short concise descriptions of components in the framework may serve to streamline the chore of many thousands of developers in learning and re-learning the system as it evolves. One may envision a system which rejects the inclusion of a component that lacks a concise description, to prevent undefined clutter from building up in the system.

Anyone who advocates such an enforcement of concise documentation will have my full support.

Meergatto
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Sat Nov 05, 2011 5:55 am

Re: Uhm, how to enable Joomla-authentication plugin

Post by Meergatto » Mon Nov 14, 2011 8:10 am

Hi, I am a new self taught to the joomla community. I have worked very hard on a joomla 1.7 site with afterburner. I don't believe that I changed the login module to off, just to members only. I am getting this error when trying to login the front or backend of the site.

" JAuthentication: :__construct: Could not load authentication libraries.
Username and password do not match or you do not have an account yet.

"

I went to the database in phpmyadmin into jos_extensions, plg_authentication_joomla was enabled with 1. Access was 2, Protected was 1. Should i change either of those?? I'm really lost here and need some help I also have a version of jomsocial installed if maybe that is somehow interfering?

User avatar
TheLoveBosS
Joomla! Apprentice
Joomla! Apprentice
Posts: 29
Joined: Wed Mar 08, 2006 3:40 am

Re: Uhm, how to enable Joomla-authentication plugin

Post by TheLoveBosS » Tue Aug 28, 2012 4:56 pm

if you disabled all the tables on Modules or plugins and you can't even run joomla any more, you can enable all of them using this in your phpmyadmin < in SQL tab < and press go, This one will enable all modules you have :

Code: Select all

UPDATE XXX_modules SET published = 1 ;
*you need to replace XXX to your existing prefix like " jos" .
--------------------------------------------------------------------------
and this one will enable all plugins you have :

Code: Select all

UPDATE XXX_extensions SET enabled = 1 ;
*you need to replace XXX to your existing prefix like " jos" .

after you login in you can change it manually from back-end easily ;)

Hope this will work for anyone.
Regards,
Raeed
Just Do what you can Do , Don't Stop and watch all Do , and you can't Do!

sovainfo
Joomla! Exemplar
Joomla! Exemplar
Posts: 8808
Joined: Sat Oct 01, 2011 7:06 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by sovainfo » Tue Aug 28, 2012 7:15 pm

Don't do the above on anything other than J15.

J16,J17 and J25 only use #__extensions.
When you use the above UPDATE all components,languages,templates,modules,plugins,libraries,files,packages are enabled.
use where type = 'plugin' as condition.
Issue with migrating? Include logs/joomla_update.php in your report!
Blank screen? Verify pagesource for HTML code (javascript error)
Installation failing on populating database? Install with set_time_limit(0)
Document your customizations!

ivanpersie
Joomla! Apprentice
Joomla! Apprentice
Posts: 45
Joined: Mon Jul 02, 2012 5:39 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by ivanpersie » Sat Dec 15, 2012 1:56 pm

I accidentally delete the plugin folder so i cant log in backend even front end. I cant even find "jos_plugin" i my database anymore......I get this error

JAuthentication: :authenticate: Failed to load plugin: plgauthenticationjoomla
JAuthentication: :authenticate: Failed to load plugin: plgauthenticationgmail
JAuthentication: :authenticate: Failed to load plugin: plgauthenticationldap
Username and password do not match or you do not have an account yet.

How do i go around this guys??

sovainfo
Joomla! Exemplar
Joomla! Exemplar
Posts: 8808
Joined: Sat Oct 01, 2011 7:06 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by sovainfo » Mon Dec 17, 2012 11:48 pm

Just restore it from the distribution set (zipfile). Also disable the gmail and ldap authentication plugins.
Issue with migrating? Include logs/joomla_update.php in your report!
Blank screen? Verify pagesource for HTML code (javascript error)
Installation failing on populating database? Install with set_time_limit(0)
Document your customizations!

cdtoawebguy
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Fri Jan 11, 2013 5:05 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by cdtoawebguy » Fri Jan 11, 2013 5:11 pm

OMG, this happen to me while trying to trouble shoot another plug-in.

this is the correct SQL query you want to do for 1.5.25 version, all other ones will not work, COPY AND PAST into your SQL query

Code: Select all

UPDATE jos_plugins SET published = 1 WHERE element ='joomla' and folder='authentication'
NOTE: make sure it is all in one line of code, my firewall here at work does not allow me to post SQL stuff on forums

you will find this in the SQL tab at the top of the database page.

* this has been said in this thread, I am only re-posting :)

ricalex
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Mon Jan 21, 2013 9:35 am

Re: Uhm, how to enable Joomla-authentication plugin

Post by ricalex » Mon Jan 21, 2013 9:41 am

For those that need to do this in Joomla 3.0.

Go to

xxx_extensions

look for plg_user_joomla (extension id 432 on mine)

and set enabled to 1

Then get back to work :-)

walter reyneke
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Thu Jun 06, 2013 3:51 pm

Re: Uhm, how to enable Joomla-authentication plugin

Post by walter reyneke » Thu Jun 06, 2013 3:56 pm

Hi ricalex,

Can I please ask your advise. I am using Joomla 3.0 and looking for xxx_extensions - is that a folder or file with that name in my joomla directory?

Thanks
Walter


Locked

Return to “Joomla! 1.5 Coding”