queXF 1.8.0 has been released today on Sourceforge
New features include:
- Export to PSPP (Open Source SPSS clone)
- Files to import are managed by the database (as suggested on the mailing list)
This upgrade requires the database to be modified.
For instructions on how to upgrade from queXF 1.7.0, click on the Read More link below
Upgrading from 1.7.0:
1. Backup config.inc.php (copy to config.inc.php.bak)
2. Extract the new package over your existing installation of queXF 1.7.0
3. Run the following SQL code on your queXF database (will allow for the file import functions to operate):
CREATE TABLE `processforms` (
`pfid` bigint(20) NOT NULL auto_increment,
`filepath` varchar(1024) collate utf8_unicode_ci NOT NULL,
`filehash` char(40) collate utf8_unicode_ci NOT NULL,
`date` datetime NOT NULL,
`status` tinyint(1) NOT NULL default '0',
`allowanother` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`pfid`),
KEY `filepath` (`filepath`(255)),
KEY `filehash` (`filehash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
4. Copy your config.inc.php.bak file over the extracted config file.