VisioList 1.5

Mark

Administrator
Staff member
Fresh Install Instructions
http://visiolist.com/docs/Installing-visiolist

Upgrade Instructions
1) Take a backup of your files and database
2) Upload and replace all the files from the update bundle ( VL-Upgrade-1.5.zip ) via FTP
3) Run yoursite.com/install/update.php from your browser


Visiolist 1.5 includes:
- Several critical security fixes
- MySQLi_ support
- Minor bug fixes
 

Attachments

Last edited:

joana16

New Member
Fresh Install Instructions
http://visiolist.com/docs/Installing-visiolist

Upgrade Instructions
1) Take a backup of your files and database
2) Upload and replace all the files from the update bundle ( VL-Upgrade-1.5.zip ) via FTP
3) Run yoursite.com/install/update.php from your browser


Visiolist 1.5 includes:
- Several critical security fixes
- MySQLi_ support
- Minor bug fixes

**** I am working on the upgrade bundle now and will post it shortly.****
I'm having trouble installing from scratch.

all requirement are correct.
http://prntscr.com/biyu1a

When I click install generates the following error:
http://prntscr.com/biyupf

After hosting is generated by the error log:
http://prntscr.com/biyyla

According to the error:
[21-Jun-2016 05:18:07 UTC] PHP Fatal error: Database error in &quot;<b>/home/arenagsc/public_html/install/index.php</b>&quot; on line <b>880</b><br /><br />
http://prntscr.com/biz22m

Field 'premium_number' doesn't have a default value in /home/arenagsc/public_html/sources/sql/mysql.php on line 89
http://prntscr.com/biz2d8
 

Mark

Administrator
Staff member
Find this line in install/index.php:

Code:
`premium_number` INT(10) NOT NULL,
replace with:

Code:
`premium_number` INT(10) NOT NULL default 5,
I also found a few other lines in the installer that your mySQL version will probably have an issue with so I updated them.

Please download the fresh bundle again, and copy the new /install/index.php file to your server and run the installer again.
 
Last edited:

Daegaladh

Member
There's a mysql_num_rows that should be mysqli_num_rows in sources/admin/search_user.php, and the same happens in most of the plugins.
Also, mysql_real_escape_string should be mysqli_real_escape_string in sources/admin/manage_menus.php

I hope it would help!
 

Mark

Administrator
Staff member
There's a mysql_num_rows that should be mysqli_num_rows in sources/admin/search_user.php, and the same happens in most of the plugins.
Also, mysql_real_escape_string should be mysqli_real_escape_string in sources/admin/manage_menus.php

I hope it would help!
Great catch, thanks! I have updated the core files and this fix will be included in the next release. I'll also run through and update all the plugins
 

randomcash

Member
Just came back from vacation and got another license. Will try to upgrade the script right now.
Heck i had a license for a full year never did anything with it LOL!
Typical me...
 
Top