2012-01-01から1ヶ月間の記事一覧

YAML で UNIQUE INDEX

uniqueConstraints をつかう。 Crocos\HogeBundle\Entity\Fuga: repositoryClass: Crocos\HogeBundle\Entity\FugaRepository type: entity table: hoge_fuga fields: hoge_id: id: true type: integer hoge_key: type: string length: 255 value: type: text…

heroku に redmine インストール

node.js から redmine 叩くものをつくっていたけど api のテスト用 redmine が欲しいと思って自分のサーバだと面倒だから heroku でも使ってみるか、ということでさっそくやってみた。ほとんど以下リンク通りだったのでメモのみ。 思考の軌跡 » herokuでRedm…

OAuthException: An active access token must be used to query information about the current user

Facebook PHP SDK の話。 /me とかを user の access token じゃなくて アプリの access token とかで叩いちゃうと出るんだけど、そもそもその前に getUser() で user_id が 0 じゃないことを確認してから叩いても出ることがあったので調査してた。 signedRe…

express.cookieParser()

session つかうときはこれもいっしょにしないとこれが出る。 TypeError: Cannot read property 'connect.sid' of undefinedapp.jsとかで。 app.configure(function(){ app.use(express.cookieParser()); .. app.use(express.session({ secret: config.sessio…