talent518 / cppblog

CppBlog is a high performance blog engine based on CppCMS technology

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cppblog

CppBlog is a high performance blog engine based on CppCMS technology

SQL

The default encoding of the connection to your SQL server may not be UTF-8. To ensure that the data which is stored as UTF-8 in your database is retrieved appropriately, make sure to configure the connection to use UTF-8. With mysql, add 'set_charset_name=utf8' to your connection string, like this:

string connection_string("mysql:host=127.0.0.1;database=foo;user=bar;password=foobar;set_charset_name=utf8");  
cppdb::session session(connection_string);

Build and run(Ubuntu)

Execute the following commands:

make run

Support breakpoint continuation

  • file_server.enable is set to false
  • file_server.media is set to true(default: true)

About

CppBlog is a high performance blog engine based on CppCMS technology


Languages

Language:C++ 88.5%Language:CSS 8.9%Language:CMake 1.4%Language:PLpgSQL 1.0%Language:Makefile 0.3%Language:C 0.0%