Issues after upgrade from rc version

Karl

Member
After replacing the files I can no longer access the admi area I just get a blank page.
And the powerd by still reads as rc1
 

Mark

Administrator
Staff member
can you enable debugging and let me know what the error is? or send me FTP login info and I'll get it fixed up for you and ensure the fix is applied in the next release coming later today.
 

Mark

Administrator
Staff member
if anyone else encounters this problem when upgrading from an existing VisioList installation this was due to the up to date screenshot plugin not being installed on the database.

change the "VL" in the following query to match your sql_prefix (found in settings_sql.php) and you'll be all set. Once changed, run this query using phpmyadmin
PHP:
CREATE TABLE `{VL_screens` (
                    `screenshot_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
                    `requested_url` VARCHAR( 255 ) NOT NULL,
                    `requested_time`  DATETIME NOT NULL ,
                    `username` VARCHAR( 255 ) NOT NULL,
                    `active` tinyint(1) default 1

                  )
 

Karl

Member
Hi Mark on running this I get the following message You have to choose at least one column to display, which one do I need to select?
 

Mark

Administrator
Staff member
not sure where that message would come from, we are not trying to display any colums, this query simply creates a table.

From phpmyadmin, click on the "sql" tab and paste the above query then hit "go", the table will be created
 
Top