Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Front End User Login Plugin (XML Or Database - ver: 3.0)
#86
Version 3.0 Has Been Uploaded To Extend

Changes
  • The plugin can now support xml storage or database storage (using PDO)
    * There is an option to transfer xml stored users to database
    * At any time you can chose to switch back to xml or back to database
    * There is an option to display pdo error messages
    * There is a tool on the settings page to auto create the database and table (If your host allows)
  • Fixed bug in "Add User" form
  • Password field on login form is now type password
  • Added "Help" link to plugin nav to assist in setting up and using the plugin
    * Includes an explanation of how to display content in your template files only to logged in users
  • Added fields on plugin settings page for database login information
  • You can now email all users at once or enter in your own email addresses (separated by comma).
  • Fixed various other bugs
  • Plugin was completely re-coded to make room for user login custom fields, paypal integration, and future additions


IF THE AUTO DATABASE/DATABASE TABLE CREATE FAILS::
You will have to create them yourself.
Below is the SQL coding to create the table (Change 'db_table_name_on_settings_form' to the table name you chose on settings form)
Code:
CREATE TABLE `db_table_name_on_settings_form` (
                    userID INT NOT NULL AUTO_INCREMENT,
                    PRIMARY KEY(userID),
                    `Username` text,
                    `Password` text,
                    `EmailAddress` text
                    )
Reply


Messages In This Thread
Example site down, having issues - by Rich_K - 2012-11-14, 07:36:37
login box won't display - by horstuff - 2015-11-20, 04:57:25
Front End User Login Plugin (XML Or Database - ver: 3.0) - by mikeh - 2012-03-13, 03:49:36



Users browsing this thread: 2 Guest(s)