This file explains the upgrade procedure between versions:

0.7.8 to 0.7.9
==============

    Replace the <path> with the actual path to the patch files,
    '../jffnms-upgrade-0.7.8-to-0.7.9' if you are using jffnms-upgrade-0.7.8-to-0.7.9.tar.gz or 
    '/opt/jffnms-0.7.9/docs/upgrade' if you are using jffnms-0.7.9.tar.gz
    
    1. Apply the code patch: 
	# cd /opt/jffnms 
	# patch -p1 < <path>/jffnms-0.7.8-to-0.7.9.patch 
	# chown -R apache.apache * 

	If you have not changed the code, there should not be any errors.
	Replace apache.apache with your HTTPd username and group (nobody, httpd, etc)

    2. Upgrade the DB:
	MySQL:
	    Backup in case of failure:
		# mysqldump --opt -ujffnms -pjffnms jffnms > /tmp/jffnms.backup.mysql
	
	    Upgrade the MySQL Tables:
		# cat docs/upgrade/mysql/jffnms-0.7.8-to-0.7.9.mysql.diff* | mysql -u jffnms -pjffnms jffnms

	PgSQL:
	    Backup in case of failure:
		# pg_dump -U jffnms jffnms -dROc > /tmp/jffnms.backup.pgsql

	    Upgrade the PgSQL Tables:
		# cat docs/upgrade/pgsql/jffnms-0.7.8-to-0.7.9.pgsql.diff* | psql jffnms jffnms

    3. Copy the new binary files:

	# cp -R <path>/files/ /opt/jffnms/

    4. Verify Everything is ok:
	Go to the Setup page at
	    http://youserver/jffnms/admin/setup.php (or the path you set)
	    
	    Check everything, make the corrections and SAVE the Configuration anyway. 
