VisioList 0.4

Mark

Administrator
Staff member
This is a maintenance release addressing all known/reported bugs from 0.3 and some security fixes and code optimization.

Please read the following carefully to ensure a smooth install/upgrade experience

Fresh installs - Download install-0.4.zip and follow install instructions in the user manual.

Upgrades from 0.3 - Download upgrade-0.4.zip and overwrite all files.

Upgrades from 0.2 - Download upgrade-0.4.zip and overwrite all files, then run the update script at: youtsite.com/install/update0-3.php

If you are using a version from before 0.2 then you need to update to 0.2 before upgrading to 0.4

If you have any problems let us know and we'll get right to work on them.

enjoy!
 

Attachments

Mark

Administrator
Staff member
Bug found: if recaptcha is enabled, an error will happen if an existing user tries to add a site from the user control panel.

soltuion:eek:pen sources/misc/classes.php and goto line 178 find:

PHP:
      if ($CONF['recaptcha']) {
replace with:

PHP:
      if ($CONF['recaptcha'] && $FORM['b'] !== 'join_existing') {
this has already been included in the 0.5 release
 

Mark

Administrator
Staff member
Bug Found: when a new member joins sources/join.php does not insert the new owner into the DB

find (line 168):
PHP:
active, openid, user_ip
replace with:
PHP:
active, openid, user_ip, owner
then find:
PHP:
{$CONF['active_default']}, 0, '{$user_ip}'
replace with:
PHP:
{$CONF['active_default']}, 0, '{$user_ip}','{$TMPL['username']}'
this has been corrected for 0.5 release, you can update your 0.4 installations with the code above to patch.
 
Top