Right now we use user's login name as a subdomain for user's blog.
for example webmaster.lampcms.com is a personal blog (more than just a blog, also albums, etc)
of user 'webmaster'
But I am thinking that we should allow user's to pick their
...
When a user loggs in via Google freind connect we should do this:
Get user's Freind Connect ID - some type of unique ID from GFC website. Not sure yet how this looks, maybe a numeric string, maybe some other type of string, but its unique.
The clsUser and clsProfile are 2 classes that represent data about currently logged in user
These 2 are instantiated (or reset) when user logges in to site.
Actually they are instantiated regardless of user status - logged in or not, they
...
A resource object (just a general object, usually represents an item from RESOURCE table)
should be of type clsArrayDefaults
and most importantly have a method saveResource()
which will record all the data into Table (usually
...
Recently I needed a 'bullet-proof' class that could parse just about any feed and return the consistent object with items each item must have guid, title, link, body and optionally 'author' and
...
Many php pages can make use of these headers. For example, if user requests to see a page with a blog post and sends the If-Modified-Since header
and the If-None-Match header (with some Etag value)
we can do this (for example)
get the unix
...
Some web servers handle the If-Modified-Since request header incorrectly.
When a web server receives this header it must examine the value of this header and return the page only if the content has been modified since the time specified
...