Skip to content

Commit

Permalink
fixbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jysperm committed Jul 21, 2014
1 parent f8a8a78 commit d2b2f9d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions WIKI/App/WordPress.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@

mysql -p

创建数据库(补全你的用户名):
(在 MySQL 中) 创建数据库(补全你的用户名):

CREATE DATABASE `<用户名>_wordpress`;
CREATE DATABASE `<用户名>_wordpress`;

回到面板添加 Nginx 站点(补全你的用户名):

Expand All @@ -34,7 +34,7 @@
"index.php",
"index.html"
],
"root": "/home/<用户名>/web",
"root": "/home/<用户名>/wordpress",
"location": {
"/": {
"try_files": ["$uri", "$uri/", "/index.php?$args"]
Expand Down
2 changes: 1 addition & 1 deletion WIKI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@

### App

* WordPress
* [WordPress](App/WordPress.md)
2 changes: 1 addition & 1 deletion core/model/ticket.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ exports.createReply = (ticket, account, content, status, callback) ->
callback null, data

exports.addMember = (ticket, account, callback) ->
exports.update
exports.update _id: ticker._id,
$push:
members: account._id
updated_at: new Date()
Expand Down

0 comments on commit d2b2f9d

Please sign in to comment.