I need some help with making a CMS system, I tried following the instructions at some blog I found: it failed.
I really want to be able to hand code it (or copy and past ) because I want to customize it EXACTLY to what I want/need.
Basically I need a CMS system that can add web pages into sections and have a basic user/group management with a PMS system as well and article comments. While keeping the admin area personalised as well.
I would also like it to integrate into a forum system (hand coded).
This is mainly because I want it to look exactly how I want it and work exactly how I want it.
PHP5, MySQL, XHTML 1.0 Strict.
Drupal needs your help being a CMS system. Seriously, it is incredibly easy to get into and there are so many modules already for it you might be wasting time reinventing the wheel - but as a learning experience doing this from scratch could be incredibly beneficial. When developing an application, even a CMS, I find it easiest to design the tables for the database first before touching any PHP.
You might just have a simple table for pages, with two columns "UID" (int) and "post." (string) And another simple table for users with columns like UID, Name, Email, Verified (BOOL).
Then comes the simple part, you make some classes and functions to access users and posts. You will want a class for users, posts, and another one or a function that shits out that perfect XHTML.
The benefit of OO is you can expand it later so pages are simply made of one or more posts in a table called pages, with an object called pages. Then you actually have something similar to drupal.
Youngins' like ya'self usually struggle mainly on structure so I've given you some here. Enjoy your project and share it with us lad.
MSN:
[email protected]