Jump to content

[solved] Error in Creating New CMS Page


BSS

Recommended Posts

Hello All,

 

I'm getting a message "Your CMS page will be saved as a draft" whenever I tried to create new cms page. I don't know what is this and where the cms page is saved as draft?

 

Anyone knows about this please please help me.

 
Link to comment
Share on other sites

Maybe a permission issue on 'controllers' folder and subfolders?

 

Try recursive chmod 777 for controllers->admin and controllers->front folders

I've make the permission to 777 but still not able to even edit the pre added pages like delivery, terms n cond. etc. don't even know why this is happening

Link to comment
Share on other sites

I'm an amateur in MySQL, Sir can you please tell me the following things in steps so that I can perform the things in proper way.

 

 

 

CREATE TABLE `ps_cms_shop` ( `id_cms` INT( 11 ) UNSIGNED NOT NULL, `id_shop` INT( 11 ) UNSIGNED NOT NULL , PRIMARY KEY (`id_cms`, `id_shop`), KEY `id_shop` (`id_shop`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `ps_cms_shop` (id_shop, id_cms) (SELECT 1, id_cms FROM ps_cms);

ALTER TABLE `ps_cms_block` ADD `id_shop` INT(11) UNSIGNED NOT NULL DEFAULT '1' AFTER `id_cms_block`;

Link to comment
Share on other sites

Well actually yes. Last month I bought a theme from a site and than an upgrade come from prestashop 1.5.6.1 as I was having 1.5.6.0.

I went to auto upgrade and now it is 1.5.6.1.

 

Does this make any issues?

Link to comment
Share on other sites

  • 1 month later...
  • 1 month later...

 

Issue solved. :D

 

Just need to add a column in ps_cms table with this function 

 

ALTER TABLE `ps_cms` ADD `indexation` tinyint(1) unsigned NOT NULL DEFAULT '1' AFTER `active`

 

 

Thanks so much for sharing!! It helped me with same problem than you had.

 

But i'm wondering where that column could go in a fresh 1.5.6 install + prestashop's team theme... ¿? :mellow:

Link to comment
Share on other sites

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...