Hi Michael
Yes so far I am keeping meet up on every Saturday morning 9 Am GMT.
You can still join the project. We are discussing project design and basic use cases at the moment.
Regards
Rony
Hi Sailaja
I don`t have any recordings at the moment but we you can join our online meeting Saturday this week 9 AM GMT.
You can find details in my previous messages on this group.
I will send some action items for the upcoming week meeting.Please stay tuned and participate in that.
Regards
Rony
--
To unsubscribe from this group and all of its topics, send an email to java-brains-group+unsubscribe@googlegroups.com.
Hi All
This is the structure for users table
CREATE TABLE IF NOT EXISTS `users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
We want to develop these use cases to start with
Register a New User - Send Email for Activation
Edit New User - Send Email for Confirmation
Delete existing User - Send Email for Deletion ( optional)
We will use Wordpress ( PHP based open source framework to implement these use cases )
http://core.svn.wordpress.org/trunk/wp-admin/
We need to check code for these files
user-edit.php
user-new.php
It may sound complex to understand PHP code but in my view you can easily extract logic from this.
Ideally whatever word press offers for User registration we will implement in this application to start with.
Regards
Rony