Skip to main content

Posts

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

google app engine for php

get phpstorm IDE - pre-release - v7 get google app engine - dmg -  GoogleAppEngineLauncher-1.8.5.dmg create phpstorm project -- enter application id -- enter path to googleappengine on mac - /Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine -- python path is entered

FileMaker 12 Advanced Server and IIS 7.5

FileMaker 12 Advanced Server and IIS 7.5 At Server Level (not default Web site) - Default Document - put index.php at the top - FastCGI needs to be installed (Roles CGI) - FastCGI Settings -- double click -- open PHP.EXE -- Monitor changes to file php.ini -- activity timeout 700 - Handler Mappings -- Create new module mapping -- path is *.php -- module is FastCgiModule -- executable is ---- C:\Program Files (x86)\FileMaker\FileMaker Server\Web Publishing\publishing-engine\php\php-cgi.exe or ----  C:\Program Files\FileMaker\FileMaker Server\Web Publishing\publishing-engine\php\php-cgi.exe -- Invoke handler checked for File or Folder - Error Pages -- Edit Feature Settings -- choose Detailed Errors

How to change default calendar for new events in Lightning

https://getsatisfaction.com/mozilla_messaging/topics/how_set_default_calendar_for_new_events_in_lightning Edited version Open Tools > Options > Advanced tab, and click Config Editor button. In the "Filter:" box enter "calendar.registry"  Find a .calendar-main-default key - it will be set to true Other calendars either won't have a .calendar-main-default key (or it will be set to false) Right click on the value of the .calendar-main-default key that goes with the calendar that currently shows up by default in new events to toggle the value to false Click on the .calendar-main-in-composite key that goes with the calendar you want as default Right click on the same key and choose Copy Name from the menu that appears. Now right click on the key again and select New > Boolean Paste the name of the key and Use the backspace key to erase "in-composite" and type "default" Click OK and Choose true and click OK Now exit out of ...

php oneliners

to really enjoy set your cmd.exe default properties to have a large layout in screen buffer size like 100w x 999h windows one liner write file php -r "$fh = fopen('sitevisitors.txt', 'w'); fputs ($fh, 'open'); fclose ($fh);" windows one liner get phpinfo php -r "phpinfo();"