Couple more fixes.
NTLDR, ALL
I believe I have fixed the color allocating problem.
There are a couple other fixes also so I am uploading a new version 1.0.7.
This version has the color fix, better PHP version checking support and control panel fixes.
Minifreunde,
take a look at the permissions and owner of
http://{forum basedirectory}/tmp . This directory needs to be set with write access of your webserver userid. For me that user is nobody, in production it is web. You would be safe setting the permissions to 777 in unix or granting permissions to all in windows.
Looking at the screen shot of your settings, looks like multiple installs. You can clean out the settings for viPortfolio with the following SQL.
DELETE setting
FROM setting s, settinggroup g
WHERE s.settinggroupid = g.settinggroupid
AND g.title like 'viPortfolio%';
then you will need to reinsert the settings by executing the sql in viPortfolio/database/insert_settings.sql.
then execute the following sql
SELECT settinggroupid, displayorder
FROM settinggroup
WHERE title like 'viPortfolio%';
ensure that the displayorder is not 0 and use the number in settinggroupid column as highnumber for the following sql.
UPDATE setting
SET settinggroupid = <i>{highnumber}</i>
WHERE settinggroupid = 65534
This will be fixed in the next version.