spuniz Posted August 13, 2011 Share Posted August 13, 2011 Hi, I'm new in this forum and I have started using prestashop recently. I bought a theme that hasn't italian language so I want to install it. I've the error below: "An error occurred while creating object. lang (Unknown column 'is_rtl' in 'field list')" How can I solve this problem? Thanks for your help. Link to comment Share on other sites More sharing options...
deltrix Posted September 10, 2011 Share Posted September 10, 2011 Delete from dump.sql /* Table structure for table `ps_lang` */ DROP TABLE IF EXISTS `ps_lang`; CREATE TABLE `ps_lang` ( `id_lang` int(10) unsigned NOT NULL auto_increment, `name` varchar(32) NOT NULL, `active` tinyint(3) unsigned NOT NULL default '0', `iso_code` char(2) NOT NULL, `language_code` char(5) NOT NULL, PRIMARY KEY (`id_lang`), KEY `lang_iso_code` (`iso_code`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /* dumping data for table `ps_lang` */ INSERT INTO `ps_lang` VALUES (1,'English (English)',1,'en','en-us'), (2,'Français (French)',1,'fr','fr'), (3,'Español (Spanish)',1,'es','es'), (4,'Deutsch (German)',0,'de','de'), (5,'Italiano (Italian)',0,'it','it'); Link to comment Share on other sites More sharing options...
newbie Posted September 22, 2011 Share Posted September 22, 2011 Has anyone found the solution to this problem? Thanks! Link to comment Share on other sites More sharing options...
newbie Posted September 29, 2011 Share Posted September 29, 2011 No, but having the same problem :-( Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now