-1

I want to create a joomla 3.0 user account using a php code, or a web app that I can run within joomla files. I've a thread similar to my problem here

How can I create a new Joomla user account from within a script?

But the problem with this thread it is based on 1.5 and 2.5 Joomla Version. Ive read also that joomla 3.0 added salt hashing and concatenate it to the md5 password.

Perhaps if someone can give me a working php file that I can run so that I can create a new SUPER admin user on my joomla website.

By the way I can access the joomla files via ftp but I cannot access the database via phpmyadmin.

Community
  • 1
  • 1
  • 1
    if you want someone to do the work for you, hire a freelancer. If you want us to help with your code, show us what you have tried. –  Nov 05 '14 at 08:12
  • 1
    Joomla 3.x uses `bcrypt`, not salt + md5 ;) – Lodder Nov 05 '14 at 09:06

1 Answers1

0

I'm not sure about the variables you mention, I answered a similiar question that included the PHP to create an account at Joomla ACL integration.

Community
  • 1
  • 1
GDP
  • 8,109
  • 6
  • 45
  • 82
  • 1
    I can't explain all of PHP for you here...you need to read and learn Object Oriented PHP: $this is an $model is a PHP object, and anything to the right of the -> is a method or property. Methods are a function that is define within that object and are denoted with (). Without the () then it is a property. Try googling "introduction to object oriented php" – GDP Nov 25 '14 at 13:45
  • Take a look at http://www.htmlgoodies.com/beyond/php/object-orientated-programming-in-php-class-1-principles.html It's explained there - there's just way too much to explain in a few lines here. – GDP Nov 25 '14 at 13:52