Overview:
This is to install Fogbugz on a Mac OS X 10.4.10 from
Audience:
Self-Service
Step-By-Step Guide:
- Install Mac OS X 10.4.10
- Install MySQL for (Mac OS X 10.4.10 (x86)) from: dev.mysql
- Change the MySQL root password using: /usr/local/mysql/bin/mysqladmin -u root password mynewpassword
*Note: insert your own secure password for sql, do NOT use “mynewpassword”*
- Install PHP from: Entropy.ch
- Change the default PHP version by using:
sudo mv /usr/bin/php /usr/bin/php.old
sudo ln -s /usr/local/php5/bin/php /usr/bin/php
- Change the default PEAR version by using:
sudo mv /usr/bin/pear /usr/bin/pear.old
sudo ln -s /usr/local/php5/bin/pear /usr/bin/pear
*Note: The fogbugz installation will not work unless it has access to the newly installed PEAR, be sure to do step 6 before proceeding*
- Install FogBugz
- During the Installation follow all instructions and change settings as necessary
Notes on settings to change:
- PHP settings by using:
sudo pico /usr/local/php5/lib/php.ini
- Set permissions on fogutil.so by using:
sudo chmod 755
/usr/local/php5/lib/php/extensions/no-debug-non-zts-20060613/fogutil.so
- Add MySQL configuration settings to /etc/my.cnf by using:
cd /etc
sudo pico my.cnf
- Restart Apache by using:
sudo /usr/sbin/apachectl stop
sudo /usr/sbin/apachectl start