Very nice, and very clean! The onyl suggestion I would make is at the bottom where you have 'hosted by mutualaid.org | Home | Forum | Petition | Links | About | Contact'. Have like a 1% padding on top and the bottom of those links so it is not all bunched up.
2 2005-11-22 20:11
Re: Steps to Integrate Login/Logout (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
ontap, I very much appreciate the in dept response. I got the logout redirect to work and it works great!
After reading on how to add the username to the database, it seems a little complicated I was also wondering, should I create a new database for the new, or create the news table in the forums db?
Thanks.
3 2005-11-19 07:15
Re: Steps to Integrate Login/Logout (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'm having a hard time making it redirect to my index page instead of the forums index when I logout.
Any ideas?
4 2005-11-14 19:46
Re: [Release] User Management Plugin (71 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Very nice, thank you!
5 2005-11-13 06:57
Re: Steps to Integrate Login/Logout (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Also, like I mentioned above. I'm making a news script with comments. And I wanted to make it so the users had to be logged in before they were allowed to post comments. Is there a way that when they submit their comment, it takes their username, and puts it in a field in my database? So everyone knows who commented.
Thank you.
6 2005-11-12 17:51
Re: Steps to Integrate Login/Logout (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
A++, works like a charm.
7 2005-10-31 16:15
Re: Steps to Integrate Login/Logout (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
This little tutorial looks great and I intend to use it on my site. But I was thinking about having an add comment for my news, reviews, interviews, etc. But that you had to be logged in to post comments. Does that mean I could do something along the lines of :
if ($pun_user['is_guest'])
{
echo "You must register in order to post comments!";
}
else
{
// Display the form to post comments
}