Search Results for '"wordpress"'
-
Search Results
-
Hey all,
So I have a WordPress page called Register which uses the shortcode [bbp-register] to call up the registration form. I have linked the page below. The problem right now is that the “register” button isn’t doing anything. It does not appear to be clickable so when I enter an e-mail and password you can’t go any further. Not sure what would happen to prevent the button from working, hoping someone can notice if I’m missing anything.
Wordpress Version: 4.9.7
BBPress Version: 2.5.14Thanks in advance for any advice!
Topic: Login Widget Error
Dear Team & Community,
I’ve a problem with the widget people use to login.
At my mainpage the widget is shown correct. ( http://www.myheadz.de )
But when I open the forum page or any other page the widget looks messed up. ( http://www.myheadz.de/forum/ )Wordpress 4.9.7
Theme: Envo Magazine Pro
BBPress 2.5.14
BBP Style Pack 3.9.3Looking forward for your help.
Regards from germany,
Jens
Topic: Disable Comments
In an ongoing effort to fight spam, I want to disable all comments via the WordPress Admin Dashboard…Settings/Discussion…(uncheck allow notifications and uncheck allow people to post comments)
If I do this, will bbPress New Topic or Replies be impacted? Will users still be able to submit new topics or reply to existing omes?
I am running WP 4.9.7 and bbPress 2.5.14 with bbPress Moderation 1.8.3
Thanks.
Topic: 404 Erros acces
Hello my name his Chris, i have some problem on my instal BBpress.
Administrator wordpress have acces to the page forums (bbpress) but the role suscriptor haven’t acces, page 404 error
can you help me
sorry for englishThanks
Plugin : wordpress, bbpress, utlamte member
I am trying to use the bbpress login widget in the header widget of my site. When Logging in using this bbp login widget, it doesn’t redirect to the page I logged in from. It goes to the User’s WordPress dashboard.
Can someone please help with this issue?
Thanks.
Topic: Any cookies?
Does bbPress add any cookies beyond the standard WordPress login cookies? We’re putting together the list of all the cookies the site sets and aren’t sure if bbPress is adding any. If it does add any, could you list the name, duration and purpose of the cookie(s)?
I am trying to import the forums and topics from our existing phpBB forums. There are about a dozen forums, and about 400 topics and 1600 posts. I have set the values on the Import Forums page to the following:
Select Platform = phpBB
Database Server = mssql2.<hostingdomain>.com
Database Port = 3306
Database Name = <name of the database>
Database Username = <admin user>
Database Password = <password>
Table Prefix = phpbb_However, when I start the conversion, it reports “No forums to convert”, “No forum parents to convert”, and so on.
I do not get any errors when I run the conversion. The existing phpBB forums are in a MSSQL database and not a MySQL database. I suspect that this may be the reason nothing is discovered.
Any help would be appreciated.
Ray
bbPress Version 2.5.14
WordPress 4.9.6 running Divi themeello,
Members of private groups are missing in their overviews the started topics and created replies from private forum(s) .
e.g Group member erwintest (member of 1 group) added some topics and replies in the private forum that should (at least i expect that) pop up via this link
/members/erwintest/forums/ and /members/erwintest/forums/replies/ but they don’t.However if i logon as administrator and use the same links, the started topics and created replies placed in the private forum of user erwintest do popup.
Is this expected behaviour or not?
With Non private forums there is no problem.
site: freya.nl
Latest WordPress, bbPresss and BuddypressHi Experts,
BBPress 2.5.14 and also using BB style pack 3.9.2
Wordpress version 4.9.6
Site url: StandUpGirl.comIssue:
I am getting many errors in the google search console for titles that have words like haven’t, won’t, I’m which are contraction words. These words show up as this sample /forums/topic/i-haven-t-posted-in-a-while-but/ where you can see the word haven’t is haven-t. The search bots don’t understand the ‘t’ and I get errors. Also if a user puts an comma in the title I get errors.How do I fix this?
Thank you so much for giving me help!
DianaWordpress 4.9.6
bbPress 2.5.14http://www.personalgroupware.com/wilsonlogan/
Hi All,
I have a forum in SQLITE format and I want to import it into bbPress.
I decided that if I was going to have to convert to a MYSQL database, I might as well use the schema indicated in Example.php
As I didn’t *actually* have the schema, I had to *guess* based on the fields in Example.php
For example:
CREATE TABLE IF NOT EXISTS forums_table (
_bbp_old_forum_id int(10) NOT NULL default 0,
the_parent_id int(10) NOT NULL default 0,
the_topic_count int(10) NOT NULL default 0,
the_reply_count int(10) NOT NULL default 0,
the_total_topic_count int(10) NOT NULL default 0,
the_total_reply_count int(10) NOT NULL default 0,
the_forum_title varchar(150) NOT NULL default ‘ ‘,
the_forum_slug varchar(255) NOT NULL default ‘ ‘,
the_forum_description text NOT NULL,
the_forum_order int(10) NOT NULL default 0,
the_forum_type int(10) NOT NULL default 0,
the_forum_status int(10) NOT NULL default 0
);
Having created the database as it is in Example.php, all I needed to do was load the MYSQL database from my SQLITE database.
Job done!
Yeah? Not so fast…
The import fails here:
SELECT convert(topics_table.the_topic_id USING “utf8mb4”)
AS the_topic_id,convert(topics_table.the_topic_reply_count USING “utf8mb4”)
AS the_topic_reply_count,convert(topics_table.the_total_topic_reply_count USING “utf8mb4”)
AS the_total_topic_reply_count,convert(topics_table.the_topic_parent_forum_id USING “utf8mb4”)
AS the_topic_parent_forum_id,convert(topics_table.the_topic_author_id USING “utf8mb4”)
AS the_topic_author_id,convert(topics_table.the_topic_author_ip_address USING “utf8mb4”)
AS the_topic_author_ip_address,convert(topics_table.the_topic_content USING “utf8mb4”)
AS the_topic_content,convert(topics_table.the_topic_title USING “utf8mb4”)
AS the_topic_title,convert(topics_table.the_topic_slug USING “utf8mb4”)
AS the_topic_slug,convert(topics_table.the_topic_sticky_status USING “utf8mb4”)
AS the_topic_sticky_status,convert(topics_table.the_topic_creation_date USING “utf8mb4”)
AS the_topic_creation_date,convert(topics_table.the_topic_modified_date USING “utf8mb4”)
AS the_topic_modified_date,convert(replies_table.the_topic_id USING “utf8mb4”)
AS the_topic_id FROM topics_table AS topics_table INNER JOIN replies_table
AS replies_table USING replies_table.the_topic_id = topics_table.the_topic_id WHERE forums_table.the_topic_id = 0 LIMIT 0, 100Lookee thar… a mystery field!
forums_table.the_topic_id
Are there any other mandatory fields in the import schema that are not referenced in Example.php?
And… what field from my database should I load to forums_table.the_topic_id ?
Thanks!