Search Results for '\"wordpress\"'
-
Search Results
-
Wordpress 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!
I am trying to stick a reply at the top of the replies page, can anyone help please.
to explain..
I have a forum called countries containing
forums for each country, inside each country (forum) are topics called airport names,
inside each topic (airport names) are replies, I would like to stick one of the replies to the top of the list of replies for that airport, the one I want to stick is unlikely to be the first entry for that airport.
I hope that makes sense.WordPress 4.9.6 running twentytwelve child theme theme, bbpress Version 2.5.14
the website is https://wateratairports.com
WordPress Version: 4.9.6
bbPress Version: 2.5.14
National Braille AssociationWhen we post a link to our forums on Facebook, the link preview isn’t very attractive. In an attempt to make that appear differently on Facebook, I’ve created a ‘Featured Image’. I went in to our website to upload that image, but since there is no Page where bbPress lives on our site, I can’t find a way to apply an image to the forum as a “featured image”.
How can I make that happen?
Hi,
I have the following code in my themes functions.php
function bbp_reverse_reply_order( $query = array() ) { // bbp_has_replies_query is depricated ?
$query['order']='DESC';
return $query;
}
add_filter('bbp_has_replies_query','bbp_reverse_reply_order');This works fine except when a new reply is added, you get redirected to the page with the oldest replies instead of the page that contains the just added reply. This seems to be an old problem, have tried various plugins, but they all lead to the same outcome.
So the question is how to force, after adding a new reply, to be directed to the right page.
site freya.nl, latest versions WordPress and bbPress.
Topic: problems with translation
My website is in Spanish, but bbpress appears in English.
Buddypress is translated without problem. In change, the bbpress translation does not work even if you have uploaded the bbpress-es_ES.po and bbpress-es_ES.mo files to / www / wp-content / languages / bbpress after creating the folder.
In the following link you can check how it is in English:
bbPress 2.5.14-6684.
WordPress. Versión 4.9.6FYI I’m using version 4.9.6 of wordpress and version 2.5.14 of bbPress.
I added custom code to my theme functions.php page to add customized roles for bbPress. The roles show up when I edit users and want to change their roles, but when I go to save it, they just default back to a participant role. How can I fix this? Here is the code I used below:
/* bbPress Custom Roles */ function add_custom_role( $bbp_roles ) { $bbp_roles['my_custom_role2'] = array( 'name' => 'Producer', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); $bbp_roles['my_custom_role3'] = array( 'name' => 'Engineer', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); $bbp_roles['my_custom_role4'] = array( 'name' => 'Songwriter', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); $bbp_roles['my_custom_role5'] = array( 'name' => 'Staff', 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as keymaster ); $moderator = bbp_get_moderator_role() ; $bbp_roles[$moderator] = array( 'name' => 'Moderator', 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as keymaster ); $keymaster = bbp_get_keymaster_role() ; $bbp_roles[$keymaster] = array( 'name' => 'Chief Executive Officer', 'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() ) // the same capabilities as keymaster ); $apprentice = bbp_get_participant_role() ; $bbp_roles[$apprentice] = array( 'name' => 'Member', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );Good Day everyone,
For a few years now I have bbPress and WordPress installed in French language.
Currently using bbpress 2.5.14 and WordPress 4.9.6.
The two language files bbpress-fr_FR.mo and bbpress-fr_FR.po are located in the wp-content/plugins/languages folder.Everything looks to work fine except that since the beginning notifications mails are sent in English language. I never figured out the reason and hope someone could help me.
Everytime it’s the default template like “Mr Foo wrote:”, “New Topic”, etc…The original WordPress install was in English language but I installed the French pack during the updates, I define (‘WPLANG’, ‘fr_FR’); in wp-config.php as well and the admin interface is in french. I don’t understand. I tried to modified the .po / .mo file with a software but no effects. I’m using WP Config SMTP plugin but I don’t think it’s related, right ?
Any help / advise would be really appreciated.
I wanted to know if you can help me.
I get to import everything except the users.
I’m trying to import a phpBB3.2.2 to bbPress.
I’ve tried with bbPress 2.5.14, bbPress 2.6 RC5 and bbPress 2.6 beta2.
I’ve tried in the 3 modes with the phpBB.php of dintintos topics but none of them work for me;
– https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php
– https://gist.github.com/pixelnated/5c27a64c450578440554ba902560178fI’m desperate. could you help me?
Topic: Sabai Discuss to BBPress
How can be export Sabai discuss forum data to bbPress?
I have exported csv files from Sabai discuss plugin.
Please help !
My wordpress Version is 4.9.4 with latest bbPress verison.Currently in our forums, the bbpress username below the avatar seems to be the WordPress username.
How can I change it to be the username from BuddyPress?
Thanks!
Running WordPress 4.9.6 and bbPress version 2.5.14
When someone goes to https://www.togetherpuertorico.com/forums/forum/volunteer-events-opportunities/ and enters their correct username and password and clicks on login, it takes them to the default wordpress login page rather than logging them into their bbPress account.
If they login on the default /wp-login.php page and then go back to https://www.togetherpuertorico.com/forums/forum/volunteer-events-opportunities/ it appears as though they are still not logged in, but if you click the refresh button in Chrome, it now appears that they are logged in.
I’ve tested this with both a wordpress admin user level account and a standard bbPress Subscriber, Participant user role status.
I’ve looked in the server php error log and nothing is recorded.
I’ve reverted back to the default TwentySeventeen theme to see if the theme we are using was the cause, but it still didn’t work.
Topic: Cleaning older topics
WordPress v: 4.9.6
bbPress v: 2.5.14
Link: https://www.outdoorphoto.community/2018/
Theme: Avada (unrelated to the issue)I am in the process of migrating a vBulletin DB to bbPress, however, some of the topics in the DB are very old and have been inactive for a number of years.
What are my options regarding the removal of these old entries from the DB?I feel like I’m the only person that wants to do something like this since I have been unable to find anything relating to old content cleaning on your forum, Google, or the WordPress plugin repository.
Where would I find information on changing the CODE /CODE button in bbpress to act like the wordpress CODE insert?
In other words in bbpress clicking the CODE button gives you`
in WordPress clicking the CODE button gives you < code > < /code >I’m having an issue with a plugin since it handles how my CODEs are displayed and one or the other is broke pending which settings I use.
I hope that makes sense..
Topic: Mobile Plugin Solution
Bbpress users and developers,
After creating my bbpress forum I was disappointed to find there is no easy way to get full functionality (notifications etc) on smartphone, since tapatalk cut ties with wordpress.
I have found a new application called Topic’it, who have established compatibility with Forumotion and PHPbb software. Their app appears in both the android and ios app stores, and is essentially the same proposed thing as tapatalk.
They are searching for people to create plugins to make their app compatible with more forum platforms. They have given me permission to access their API, so I’m going to attempt this as a solo project, but it will take me time as I’m a computer hobbyist and not a developer in any way.
For the love of Bbpress, let someone more adept than me get over there and give it a shot!
Of course I’ll share my work here if I manage to connect.