Skip to main content

Posts

Showing posts from October, 2013

The Right way to Uninstall FileMaker Server 12 on the Mac

I am installing FileMaker Server 13, so first I need to uninstall FileMaker Server 12. Wrong way: http://help.filemaker.com/app/answers/detail/a_id/9977 Right way: open "/Library/Application Support/FileMaker/FileMaker Server/FMS 12 Uninstaller.app" Uninstall FileMaker Server 13: open "/Library/Application Support/FileMaker/FileMaker Server/FMS 13 Uninstaller.app"

run gitprep on mac os x 10.8

== Apache== sudo vi i /etc/apache2/httpd.conf uncomment #LoadModule cgi_module libexec/apache2/mod_cgi.so #AddHandler cgi-script .cgi find Options FollowSymLinks change Options FollowSymLinks +ExecCGI find  Options Indexes FollowSymLinks MultiViews change  Options Indexes FollowSymLinks MultiViews ExecCGI sudo apachectl restart == Install== cd /Library/WebServer/Documents curl -kL https://github.com/yuki-kimoto/gitprep/archive/latest.tar.gz > gitprep-latest.tar.gz tar xf gitprep-latest.tar.gz mv gitprep-latest gitprep cd gitprep ./setup.sh prove t sudo chmod 777 data == Config== vi gitprep.conf ;;; from PATH enviroment variable or /usr/bin/git or /usr/local/bin/git find ;git_bin=/usr/local/bin/git change git_bin=/usr/bin/git