Thu, 18 Jun 2009 20:37:19 -0400
this is some good stuff here
Wed, 08 Jul 2009 15:53:02 -0400
How do you make a 'forgotten password'form when passwords are hashed?
The only way to do this is to generatea new random password and email it to user
A user will then be able to login andchange the password or he can just keep using
his new
...
Sun, 20 Dec 2009 11:13:55 -0500
Be warned: when you order movie ticket via fandango.com
they show the enticing offer like $10 off your next ticket or maybe something even better, but
if you read the fine print - it says you will be charged $12/month if you accept this offer.
...
Sat, 09 Jan 2010 12:47:10 -0500
OK, but not great:
public static function factory(){
if(extension_loaded('mailparse')){
$objMailParser = new
...
Wed, 09 Jun 2010 13:34:52 -0400
Just released: the best unofficial apache server mailing list archive website:
Apacheserver.net
It lists archives for many open source projects hosted at Apache, more are aded all the time.
Tue, 22 Dec 2009 11:03:36 -0500
Access control:
think how to make per-user and per-group access list
2 types of access control: resource
and action
By default all users are given NONE of the permissions
and gain them only through group membership
This means a user does
...
Tue, 15 Dec 2009 09:48:10 -0500
Need to rewrite:
editing blog settings - now the blog title, description and other blog options are going to be in that one form
and can also use the object clsTableRow to edit that record.
Need to also rewrite how we update the BLOG_INFO
...
Wed, 09 Dec 2009 13:19:49 -0500
Because when instantiating object with new object()
the return value is always an object of class you calling.
The factory() lets you instantiate an arbitraty class based on some conditions. For example if you want to instantiate an
...
Sat, 05 Dec 2009 14:29:02 -0500
Need to write class to extract favicon from web page. Given a url it will check for <link rel=icon or whatever is used to indicate the favicon thing...
If it does not exist it will try to get favicon.ico from ur's root
Just not sure what
...
Sat, 05 Dec 2009 13:06:14 -0500
A logged in user may be able to send email (contact) a user
not directly, but via our form using captcha (even for logged-in users? maybe...)
We should limit number of contacts per logged in user per 'n' hours to prevent a spam.
we should also
...