View Single Post
  #1  
Old 22nd September 2009, 03:38
C2DaJ C2DaJ is offline
Senior Member
 
Join Date: Jan 2009
United Kingdom
Posts: 34
Default [TSSE 5.6] Blog System
Thread title says it all, if you finally get 5.6 functioning correctly.....

Blog System for TS SE v.5.6

Dunno if it works with 5.4.1.... It might do

tracker requested a blog system for TS SE that allows users to post their own blog. Users can post text, pictures, youtube videos, smilies, etc. just like on the forums or message system.

Add the following table to your database

Code:
CREATE TABLE IF NOT EXISTS `blogs` (   `id` int(10) unsigned NOT NULL auto_increment,   `userid` int(10) NOT NULL default '0',   `added` datetime NOT NULL default '0000-00-00 00:00:00',   `body` text NOT NULL,   `title` varchar(255) NOT NULL default '',   PRIMARY KEY  (`id`),   KEY `added` (`added`) ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
Upload the attached files to your tracker. The plugin is optional, if you wish to use it, add a new plugin called blogs.

I recommend setting up a menu option for this, linking to blog.php in your root folder. If you need help setting up a new menu dropdown, just let me know
Attached Files
File Type: rar blog_ts56.rar (29.2 KB, 201 views)

Last edited by C2DaJ; 22nd September 2009 at 04:11. Reason: to add instructions....
Reply With Quote
The Following 9 Users Say Thank You to C2DaJ For This Useful Post:
aMiGo1972 (22nd September 2009), Baba (25th March 2020), Fynnon (22nd September 2009), Moh.ElBaz (22nd September 2009), PAX (20th March 2012), Phogo (22nd September 2009), PsyK0 (5th February 2010), Tory (22nd September 2009), xxmail (20th February 2014)