All Projects → Cryin → Startblog

Cryin / Startblog

Licence: mpl-2.0
Startblog is a simple Markdown blog system based on the CodeIgniter!

Projects that are alternatives of or similar to Startblog

Blog
My blog created with React, Gatsby & Markdown
Stars: ✭ 29 (-72.9%)
Mutual labels:  blog, markdown
Markdownmonster
An extensible Markdown Editor, Viewer and Weblog Publisher for Windows
Stars: ✭ 1,203 (+1024.3%)
Mutual labels:  blog, markdown
Typecho
A PHP Blogging Platform. Simple and Powerful.
Stars: ✭ 8,417 (+7766.36%)
Mutual labels:  blog, markdown
Blog Content
Different articles related to software and/or electronics hacking - Published at http://gbraad.nl/blog/
Stars: ✭ 7 (-93.46%)
Mutual labels:  blog, markdown
Blog Vue Typescript
vue + typescript + element-ui 支持 markdown 渲染的博客前台展示
Stars: ✭ 1,262 (+1079.44%)
Mutual labels:  blog, markdown
Blog
Share
Stars: ✭ 13 (-87.85%)
Mutual labels:  blog, markdown
Yizibi.github.io
✍️科学尚未普及,这里是唯一能让我找到自己的人,人生这么短,需要做点什么,😝,如果你来了,就顺手给个 star ,欢迎Fork,谢谢!
Stars: ✭ 61 (-42.99%)
Mutual labels:  blog, markdown
Ox Hugo
A carefully crafted Org exporter back-end for Hugo
Stars: ✭ 591 (+452.34%)
Mutual labels:  blog, markdown
Laravel Blog
基于Laravel5.8构建的轻量博客应用,支持Markdown,支持图片拖拽上传,界面简洁,SEO友好,支持百度链接自动和手动提交
Stars: ✭ 84 (-21.5%)
Mutual labels:  blog, markdown
Hugo Vitae
Vitae is a blog theme for Hugo that focuses on your content.
Stars: ✭ 81 (-24.3%)
Mutual labels:  blog, markdown
Gridsome Starter Liebling
Grisome starter based on Ghost Liebling and tailwindcss.
Stars: ✭ 23 (-78.5%)
Mutual labels:  blog, markdown
Blog
博客文章 markdown 源文件
Stars: ✭ 100 (-6.54%)
Mutual labels:  blog, markdown
Solo
🎸 B3log 分布式社区的 Java 博客端节点系统,欢迎加入下一代社区网络。B3log distributed community blog-end node system, welcome to join the next generation community network.
Stars: ✭ 780 (+628.97%)
Mutual labels:  blog, markdown
Leo Blog
My 🏡 on the ☁️
Stars: ✭ 27 (-74.77%)
Mutual labels:  blog, markdown
Htmly
Simple and fast databaseless PHP blogging platform, and Flat-File CMS
Stars: ✭ 689 (+543.93%)
Mutual labels:  blog, markdown
Blog Generator
static blog generator for my blog at https://zupzup.org/
Stars: ✭ 57 (-46.73%)
Mutual labels:  blog, markdown
Blog
🍁 What you don't know is what you haven't learned
Stars: ✭ 484 (+352.34%)
Mutual labels:  blog, markdown
Hugo Theme Hello Friend
Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!
Stars: ✭ 586 (+447.66%)
Mutual labels:  blog, markdown
Jokecamp.com
personal blog and website
Stars: ✭ 79 (-26.17%)
Mutual labels:  blog, markdown
Blog
基于Python Flask并支持Markdown语法的简易博客
Stars: ✭ 89 (-16.82%)
Mutual labels:  blog, markdown

Startblog

Startblog is a simple Markdown blog system based on the CodeIgniter!

Author: [Cryin']

Logging In

  • demo.startblog.cc
  • admin page:/admin/Index/login
  • username:startblog
  • password:startblog

###Github:

github

###运行环境:

  • Apache+php 5.x + mysql

###程序功能:

Markdown博文撰写、修改、删除功能,

Markdown在线编辑器,实时预览;

文章全文搜索、备份功能;

站点、博文SEO信息设置;

RSS订阅、友情链接功能;

###反馈:

本着大道至简的原则,本Blog程序只维持最基本的Blog形态,不会轻易增加其它功能。有任何问题可以反馈至issues或者qq交流。

###关于作者

###贡献者

感谢辉哥设计的Logo,感谢贡献者LUHOO、Hardy、Ant、半城人

###捐赠者

感谢Hardy、格格、Ant、Michael Zhang的捐赠!

###安装方法:

手动创建数据库

将程序上传至站点根目录,输入http://www.yoursite.cc/install进行安装即可

如果安装在目录则根据站点目录

修改application\config\config.php文件,添加目录字段,如目录为startblog: $config['base_url'] = 'http://'.$_SERVER['SERVER_NAME'].'/startblog';

修改.htaccess文件Rewrite规则,如目录为startblog则修改为:

RewriteEngine on
RewriteCond $1 !^(index.php|static|favicon.ico|robots.txt)
RewriteRule ^(.*)$ /startblog/index.php/$1 [L]

###手动安装说明:

根据站点目录设置application\config\config.php文件$config['base_url']项

根据站点目录修改.htaccess文件Rewrite规则

设置数据库配置信息:application\config\database.php文件

创建数据库startblog,并导入sql文件,路径data\db\startblog.sql

管理默认用户名、密码均为startblog

nginx系统的.htaccess文件Rewrite规则 如下:

location / {
index index.php index.html;
 if (!-e $request_filename)
 {
  rewrite ^/(.*)$ /index.php last;
 }
}

###Screenshot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].