Warning: vsprintf(): Too few arguments in /home/123456/public_html/admin/controller/dashboard/activity.php on line 19
Code: Select all
foreach ($results as $result) {
$comment = vsprintf($this->language->get('text_' . $result['key']), json_decode($result['data'], true));
Code: Select all
Notice: Error: Unknown column 'name' in 'order clause'
Error No: 1054
SELECT * FROM `oc_api` ORDER BY name ASC in /home/123456/public_html/system/library/db/mysqli.php on line 41
Notice: Trying to get property of non-object in /home/123456/public_html/admin/model/user/api.php on line 77
I went to the install folder and searched oc_api in the sql file and added this in mysql:
Code: Select all
DROP TABLE IF EXISTS `oc_api`;
CREATE TABLE `oc_api` (
`api_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`key` text NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`api_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;


Anyone can help?
Thank you.