Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
537 views
in Plugins by
edited by

i can´t install qa-blog-post    https://github.com/arjunsuresh/qa-blog-post

when i try i see this msg:

Question2Answer was unable to perform the installation query below. Please check the user in the config file has CREATE and ALTER permissions:

CREATE TABLE IF NOT EXISTS qa_blog_posts (
`postid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` int(10) unsigned NOT NULL,
`title` varchar(300),
`type` int(10) unsigned,
`content` varchar(60000),
`posted` datetime,
`views` int(10) unsigned,
`updated` datetime,
`tags` varchar(300) NOT NULL,
`notify` varchar(300) NOT NULL,
`format` varchar(100) NOT NULL,
PRIMARY KEY (`postid`),
KEY `posted` (`posted`),
KEY `updated` (`updated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

Error 1074: Column length too big for column 'content' (max = 21845); use BLOB or TEXT instead

THis is  my page is in spanish languaje http://mi-respuesta.com/

Q2A version: the lattest
by
Which blog plugin are you using? Can you add a link in your question for that plugin?
by
this https://github.com/arjunsuresh/qa-blog-post

ok i  update the post thanks ;)

1 Answer

0 votes
by
i try this plugin but not work corectly
by
Can you try a git pull and inform if it works? Also see the README this is not a recommended plugin to use now as it has many limitations.
...