<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									“Topic Add Error” - How-to and Troubleshooting				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/topic-add-error/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 08 Mar 2026 13:29:22 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: “Topic Add Error”</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/topic-add-error/#post-6511</link>
                        <pubDate>Sun, 01 Jan 2017 19:30:34 +0000</pubDate>
                        <description><![CDATA[This is wpForo installation issue. I&#039;d recommend Uninstall (not delete) (if you don&#039;t have important data in forum) then install it again.If it doesn&#039;t help then this is hosting service issu...]]></description>
                        <content:encoded><![CDATA[<p>This is wpForo installation issue. I'd recommend Uninstall (not delete) (if you don't have important data in forum) then install it again.</p><p>If it doesn't help then this is hosting service issue. There are a very few hosting services which doesn’t support InnoDB storage engine or the MySQL version incompatible with wpForo Database creation queries. You should open hosting &gt; cPanel &gt; phpMyAdmin database manager, navigate to SQL tab and execute this SQL code to create all necessary tables. Please replace all <strong>wp_</strong> prefixes in this code to your database table prefixes, if they are <strong>wp_</strong> just use it as is:</p><pre>CREATE TABLE IF NOT EXISTS wp_wpforo_accesses (<br />  accessid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  access varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  title varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  cans longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'forum permissions',<br />  PRIMARY KEY (accessid),<br />  UNIQUE KEY access (access(191))<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_forums (<br />  forumid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  title varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  slug varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  description longtext COLLATE utf8mb4_unicode_ci,<br />  parentid int(10) unsigned NOT NULL DEFAULT '0',<br />  icon varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  last_topicid int(10) unsigned NOT NULL DEFAULT '0',<br />  last_postid int(10) unsigned NOT NULL DEFAULT '0',<br />  last_userid int(10) unsigned NOT NULL DEFAULT '0',<br />  last_post_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00',<br />  topics int(11) NOT NULL DEFAULT '0',<br />  posts int(11) NOT NULL DEFAULT '0',<br />  permissions text COLLATE utf8mb4_unicode_ci,<br />  meta_key text COLLATE utf8mb4_unicode_ci,<br />  meta_desc text COLLATE utf8mb4_unicode_ci,<br />  status tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  is_cat tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  cat_layout tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  order int(10) unsigned NOT NULL DEFAULT '0',<br />  PRIMARY KEY (forumid),<br />  UNIQUE KEY UNIQUE SLUG (slug(191))<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_languages (<br />  langid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  name varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  PRIMARY KEY (langid),<br />  UNIQUE KEY UNIQUE language name (name(191))<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_likes (<br />  likeid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  userid int(10) unsigned NOT NULL,<br />  postid int(10) unsigned NOT NULL,<br />  post_userid int(10) unsigned NOT NULL,<br />  PRIMARY KEY (likeid),<br />  UNIQUE KEY userid (userid,postid)<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_phrases (<br />  phraseid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  langid int(10) unsigned NOT NULL,<br />  phrase_key varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  phrase_value text COLLATE utf8mb4_unicode_ci NOT NULL,<br />  PRIMARY KEY (phraseid),<br />  UNIQUE KEY lng_and_key_uniq (langid,phrase_key(191)),<br />  KEY langid (langid),<br />  KEY phrase_key (phrase_key(191))<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_posts (<br />  postid bigint(20) unsigned NOT NULL AUTO_INCREMENT,<br />  parentid bigint(20) unsigned NOT NULL DEFAULT '0',<br />  forumid int(10) unsigned NOT NULL,<br />  topicid bigint(20) unsigned NOT NULL,<br />  userid int(10) unsigned NOT NULL,<br />  title varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  body longtext COLLATE utf8mb4_unicode_ci,<br />  created datetime NOT NULL DEFAULT '0000-00-00 00:00:00',<br />  modified datetime NOT NULL DEFAULT '0000-00-00 00:00:00',<br />  likes int(10) unsigned NOT NULL DEFAULT '0',<br />  votes int(11) NOT NULL DEFAULT '0',<br />  is_answer tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  is_first_post tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  PRIMARY KEY (postid),<br />  FULLTEXT KEY title (title),<br />  FULLTEXT KEY body (body),<br />  FULLTEXT KEY title_plus_body (title,body)<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_profiles (<br />  userid int(10) unsigned NOT NULL,<br />  title varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'member',<br />  username varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  groupid int(10) unsigned NOT NULL,<br />  posts int(11) NOT NULL DEFAULT '0',<br />  questions int(11) NOT NULL DEFAULT '0',<br />  answers int(11) NOT NULL DEFAULT '0',<br />  comments int(11) NOT NULL DEFAULT '0',<br />  site varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  icq varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  aim varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  yahoo varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  msn varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  facebook varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  twitter varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  gtalk varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  skype varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  avatar varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  signature text COLLATE utf8mb4_unicode_ci,<br />  about text COLLATE utf8mb4_unicode_ci,<br />  occupation varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  location varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  last_login datetime NOT NULL DEFAULT '0000-00-00 00:00:00',<br />  rank int(10) unsigned NOT NULL DEFAULT '0',<br />  like int(10) unsigned NOT NULL DEFAULT '0',<br />  status varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT 'active' COMMENT 'active, blocked, trashed, spamer',<br />  timezone varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,<br />  PRIMARY KEY (userid),<br />  UNIQUE KEY UNIQUE ID (userid),<br />  UNIQUE KEY UNIQUE USERNAME (username(191))<br />) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_subscribes (<br />  subid bigint(20) unsigned NOT NULL AUTO_INCREMENT,<br />  itemid bigint(20) unsigned NOT NULL,<br />  type varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  confirmkey varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  userid bigint(20) unsigned NOT NULL,<br />  active tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  PRIMARY KEY (subid),<br />  UNIQUE KEY itemid (itemid,type,userid),<br />  UNIQUE KEY confirmkey (confirmkey),<br />  KEY itemid_2 (itemid),<br />  KEY userid (userid)<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_topics (<br />  topicid bigint(20) unsigned NOT NULL AUTO_INCREMENT,<br />  forumid int(10) unsigned NOT NULL,<br />  first_postid bigint(20) unsigned NOT NULL DEFAULT '0',<br />  userid int(10) unsigned NOT NULL,<br />  title varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  slug varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  created datetime NOT NULL DEFAULT '0000-00-00 00:00:00',<br />  modified datetime NOT NULL DEFAULT '0000-00-00 00:00:00',<br />  last_post bigint(20) unsigned NOT NULL DEFAULT '0',<br />  posts int(11) NOT NULL DEFAULT '0',<br />  votes int(11) NOT NULL DEFAULT '0',<br />  answers int(11) NOT NULL DEFAULT '0',<br />  views int(10) unsigned NOT NULL DEFAULT '0',<br />  meta_key text COLLATE utf8mb4_unicode_ci,<br />  meta_desc text COLLATE utf8mb4_unicode_ci,<br />  type tinyint(4) NOT NULL DEFAULT '0',<br />  closed tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  has_attach tinyint(1) unsigned NOT NULL DEFAULT '0',<br />  PRIMARY KEY (topicid),<br />  UNIQUE KEY UNIQUE SLUG (slug(191)),<br />  FULLTEXT KEY title (title)<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_usergroups (<br />  groupid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  name varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,<br />  cans longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'board permissions',<br />  description text COLLATE utf8mb4_unicode_ci,<br />  PRIMARY KEY (groupid),<br />  UNIQUE KEY UNIQUE GROUP NAME (name(191))<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_views (<br />  vid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  userid int(10) unsigned NOT NULL,<br />  topicid int(10) unsigned NOT NULL,<br />  created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,<br />  PRIMARY KEY (vid)<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;<br /><br />CREATE TABLE IF NOT EXISTS wp_wpforo_votes (<br />  voteid int(10) unsigned NOT NULL AUTO_INCREMENT,<br />  userid int(10) unsigned NOT NULL,<br />  postid int(10) unsigned NOT NULL,<br />  reaction tinyint(4) NOT NULL DEFAULT '1',<br />  post_userid int(10) unsigned NOT NULL,<br />  PRIMARY KEY (voteid),<br />  UNIQUE KEY userid (userid,postid)<br />) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; </pre><p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/topic-add-error/#post-6511</guid>
                    </item>
				                    <item>
                        <title>“Topic Add Error”</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/topic-add-error/#post-6510</link>
                        <pubDate>Sun, 01 Jan 2017 19:21:20 +0000</pubDate>
                        <description><![CDATA[I&#039;ve succesfully install wp foro on my blog tostasifone.altervista.org , but when I try to crate a topic with my admin profile appear a pops on right top corner whit the sentence  “Topic Add...]]></description>
                        <content:encoded><![CDATA[<p>I've succesfully install wp foro on my blog <a href="http://tostasifone.altervista.org" target="true">tostasifone.altervista.org</a> , but when I try to crate a topic with my admin profile appear a pops on right top corner whit the sentence  “Topic Add Error” and nothing happens. How can I solve it?</p><p>Thanks for support.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>tostasifone</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/topic-add-error/#post-6510</guid>
                    </item>
							        </channel>
        </rss>
		