| |||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | #1 (permalink) |
| Barru. | A Project i'm working on..... I'm working on creating a full forum software from scratch, so far it has: - User registration/login - Multiple Forums in Multiple Categories - New Topic/Reply - User Postcounts Has anyone got anything to add to that list? Currently i'm working on getting rid of the frames that I used when I first started it.
__________________ |
| |
| | #6 (permalink) |
| NamePros Regular | everything that vbulliten has, butslightly different so it isn't obvious that you copied :P More seriously: RSS feeds, Use of BBcode, or similar, Private Messaging edit: forgot to put: Word filtering User Ranks Easily changeable themes
__________________ http://bypasstopsite.com - Submit your proxy! http://biggertwitter.com - Make twitter a bit bigger! Currently Developing - Linux Screenshots |
| |
| | #7 (permalink) |
| Barru. | ----- problem fixed ----- I need a bit of help with the bbcode, right now my code is: PHP Code: That is output as [<b>]old Text[</b>] Anyone know whats wrong? (put in spaces so bbcode would show up) ----- problem fixed ----- I downloaded a simple bbcode parser.
__________________ Last edited by Mikor; 08-19-2006 at 03:44 PM. |
| |
| | #8 (permalink) |
| Account Closed | Security of it would be a big problem that would need to be addressed. Some other things Who Is Online Info Post Count for users and the bottom User Burthdays Number of memebers and guests online Number of people who visted in the last 24 hours avatars sigs edit post function post delete function User CP Admin Section ![]() Moderator Section ![]() report system maybe an invites system |
| |
| | #9 (permalink) |
| Barru. | ToDo: Who Is Online Info Post Count for users and the bottom User Birthdays Number of memebers and guests online Number of people who visted in the last 24 hours post delete function Admin Section Moderator Section Private Messaging Easily changeable themes announcements latest news i a section on the froum template current time and date quick reply polls numer of replys to thread number of views to thread people viewing thread number of people view section adminds and mods different colours maybe quick register sticky Done: smilies Threads Bumping (ordered by most recent post) avatars User CP Use of BBcode, or similar, User Ranks User Profiles Join Date Reputation System [with comments] User Location sigs edit post function Discarded Ideas: Word filtering report system maybe an invites system RSS feeds,
__________________ Last edited by Mikor; 08-20-2006 at 04:50 AM. |
| |
| | #10 (permalink) |
| Account Closed | announcements latest news i a section on the froum template current time and date quick reply polls smilies numer of replys to thread number of views to thread people viewing thread number of people view section adminds and mods different colours maybe quick register sticky |
| |
| | #11 (permalink) |
| Barru. | Right, my code is messy, and the layout sucks. But i've made a very basic forum. I'm now going to get working on Version 2, where i'll store all the forum php in a class file, for easy access everywhere on the forum. ToDo: Who Is Online Info User Birthdays Number of memebers and guests online Number of people who visted in the last 24 hours post delete function Admin Section Moderator Section Private Messaging Easily changeable themes announcements latest news i a section on the froum template current time and date quick reply polls numer of replys to thread number of views to thread people viewing thread number of people view section adminds and mods different colours maybe quick register sticky Version One Features: smilies Threads Bumping (ordered by most recent post) avatars User CP Use of BBcode, or similar, User Ranks User Profiles Join Date Reputation System [with comments] User Location sigs edit post function Post Count for users and the bottom Possible Ideas: Word filtering report system maybe an invites system RSS feeds,
__________________ |
| |
| | #12 (permalink) | |
| Barru. | Quote:
I'm making a simple function that does mysql_real_escape_string, ect. I've also done this: When someone registers, it dosnt put their username and password in the database, it does this: PHP Code: So hopefully thats more secure than just encrypting the password. (i'm also gonna add a salt function at some point) BUT, when someone logs in, it sets a session variable logged_in to 'yes', as long as that variable is set to 'yes', they have full acces to the entire contents of the site, so not very secure, i'll put something else in later though. edit: Just made my password encrypt function, it returns a 120-character hexadecimal number, I think thats secure enough, lol.
__________________ Last edited by Mikor; 08-20-2006 at 09:10 AM. | |
| |
| | #14 (permalink) | |
| Barru. | Quote:
I'll need some people to give it a good bugtesting, but I dont expect it to be fully ready until at least version 5.
__________________ | |
| |
| | #16 (permalink) | |
| Barru. | Quote:
__________________ | |
| |
| | #17 (permalink) |
| Barru. | Here is an up-to-date feature list. Current version is 2. ----- ToDo: post delete function Moderator Section Private Messaging Easily changeable themes announcements latest news in a section on the froum template current time and date quick reply polls people viewing thread number of people view section adminds and mods different colours maybe quick register sticky Search-Engine Friendly URLs (mod_rewrite) Version 2 Features: Who Is Online Info RSS feeds, Number of memebers and guests online avatars User CP Use of BBcode, or similar, User Ranks User Profiles Join Date User Location sigs edit post function Threads Bumping (ordered by most recent post) smilies Post Count for users and the bottom Reputation System [with comments] quoting numer of replys to thread number of views to thread User Birthdays Number of people who visted in the last 24 hours Admin Section FAQ Version 1 Features: avatars User CP Use of BBcode, or similar, User Ranks User Profiles Join Date Reputation System [with comments] User Location sigs edit post function Threads Bumping (ordered by most recent post) smilies Post Count for users and the bottom Possible Ideas: Word filtering report system maybe an invites system
__________________ Last edited by Mikor; 08-21-2006 at 12:42 PM. |
| |
| | #18 (permalink) |
| Senior Member | Add this, Code: $message = eregi_replace("
","<br>",$message);
![]() Otherwise just use a WYSIWYG from dynamicdrive.com, there is a few. Wordfiltering, and an adminsection where you can ban people is a definate must.
__________________ || VPSByte Virtual & Dedicated Solutions || True 24/7/365 support with a 1 hour guaranteed response time! || We offer budget, yet powerful dedicated servers and vps solutions. || All servers come w/ 10Mbps unmetered bandwidth & lite management standard. |
| |
| | #19 (permalink) | |
| Barru. | Quote:
and i'll definatly look into getting a wysiwsg --- updated feature list. [see above]
__________________ | |
| |
| | #21 (permalink) | |
| Barru. | Quote:
and there are versions because when I first made it, it was coded terribly, so i completely remade it (hence, v2)
__________________ | |
| |
| | #22 (permalink) | |
| NamePros Regular | Quote:
| |
| |
| | #24 (permalink) |
| NamePros Regular | make sure its not just the username that your using as the salt or I would just do a bruteforce by encrypting the members username with a password list then compare. Best to use str_replace instead of the ereg or preg replace as its quicker and is more secure. In specific circumstances you can levy preg_match/ereg_match for malicious purposes. Good luck on your project mate |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |