Jump to content

help for "An error occurred while creating object. lang"


spuniz

Recommended Posts

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

  • 4 weeks later...

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

  • 2 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...