2012-03-13, 03:49:36
Version 3.0 Has Been Uploaded To Extend
Changes
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)
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
)