Session Based Blog System

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jeephp
Forum Newbie
Posts: 16
Joined: Sat Apr 23, 2005 4:42 am

Session Based Blog System

Post by jeephp »

Hi
I am looking for a open source Blog system which I can implement on my

site.

I found quite a number of them but the issue is that all the ones that I

found use a cookie based approach i.e. for the users of the site need to

have Cookies enabled in their browsers for the Blogs to function.

I was wondering if there is a open source Blog system which is Session

Variable based without the use of client side cookies so that even if the

users have Cookies disabled in their browsers the Blog would work for

them

Does anyone know of a open source Blog system that is Session based??

Thanks
P
User avatar
shiznatix
DevNet Master
Posts: 2745
Joined: Tue Dec 28, 2004 5:57 pm
Location: Tallinn, Estonia
Contact:

Post by shiznatix »

i don't have one but im sure it can't be too difficult to change everything that is $_COOKIE to $_SESSION then just add session_start() at the top of each page. that will effectivly change it to a session based blog system...well there might be a little problem or two but im sure we could help you with that if the problem arises
Post Reply