Blog Home /
Blog
![]()
Topnew Blog CMS v 2018.10.10 Released
Topnew Blog CMS is a tiny 10KB size content management system, it has blog, forum, ticket, wiki, photo, video, stack-overflow etc styles, by simply set config $blog['style'] = 'wiki'; etc with the same CMS.
Please read topnew/src/Blog/config.ini, config.en.ini etc
Do not change directly on above ini file, instead, you can add at /blog/index.php $init settings eg:
The docs at the config.ini etc should be self explained and easy to understand.
$init = [
// other config
Dept:
Blog | Read: 18381 | 2019-01-22
3
CREATE TABLE blog_cat (
cat int NOT NULL DEFAULT 0 PRIMARY KEY,
name varchar(99) NOT NULL DEFAULT '',
info varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE blog_file (
id int unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY,
Dept:
Blog | Read: 8945 | 2019-01-20
3
Use your existing user table, and only import user_id in to blog_cat.cat = 1001 eg
REPLACE INTO blog_cat(cat,name,info) VALUES
(1001,'blog_staff','{"1":[1,2],"181130":[102,108]}');
staff user id is a json of: catetory and user ids, above means:
cat = 1 (all cate
Dept:
Blog | Read: 17522 | 2019-01-25
2
Filesystem: copy these 5 files anywhere on your web eg /blog/ :
/blog/.htaccess -- catch all url to index.php
/blog/index.php -- start of the blog
/blog/blog.css -- customer css if needed
/blog/blog.js -- customer js if needed
/blog/file/ -- folder for attachme
Dept:
Blog | Read: 58722 | 2019-01-10
2
- 1
- 2