Search Results for 'code'
-
Search Results
-
Topic: vBulletin import help
Hi, I am trying to import from vBulletin 4.2.2 to BBpress The forum is pretty big with Data of 2.4 GB.
Every time I start the import it gets stuck at 45458th record of topics with when it is executing this statement (I saw the number of records from WP Admin in under Topics section)
—————————
SELECT convert(thread.threadid USING “utf8mb4”) AS threadid,convert(thread.forumid USING “utf8mb4”) AS forumid,convert(thread.replycount USING “utf8mb4”) AS replycount,convert(thread.postuserid USING “utf8mb4”) AS postuserid,convert(post.ipaddress USING “utf8mb4”) AS ipaddress,convert(thread.title USING “utf8mb4”) AS title,convert(post.pagetext USING “utf8mb4”) AS pagetext,convert(thread.open USING “utf8mb4”) AS open,convert(thread.sticky USING “utf8mb4”) AS sticky,convert(thread.dateline USING “utf8mb4”) AS dateline,convert(thread.lastpost USING “utf8mb4”) AS lastpost FROM thread AS thread INNER JOIN post AS post USING (threadid) WHERE post.parentid = 0 LIMIT 45300, 100
—————————I followed this but it stops again at every ~50 records.
But When I run this query in the PhpMyAdmin i get proper results of 100 records. I have tried to sanitize all the data that looked suspicious to me. Can someone please guide me to identify this offending data. What should I watch out for ?
I have setup my BBpress on it on my local server which sits on a RAMDisk of 10GB (Makes I/O, hence import process lighting fast). Is this an issue ?
Or are there any logs that I can inspect to see what error occurred ?
MultiSite with bbPress plugin – the latest
One subsite dedicated to bbPress forumI just want to know what “bbPress ready” “works with bbPress” means
What are some characteristics that make a “theme bbPress ready/compatible”?
What do the results imply when I search for themes for bbPress, what can I expect in general?
– If a WordPress theme is reviewed in an article and is said to work for bbPress
– If I search WordPress themes using bbPress keywordI have been struggling with themes, like all bbPress newbies. I don’t understand the structure of bbPress – the layout, navigation, hierarchy and the pages it generates. It’s a new surprise with each theme I try. (Yes, I have used Theme 2015 to check things.)
Surprise Example:
theme Ample, forum looks great but the Home/Forums/… (bbPress breadcrumb navigation) “Forums” page renders all the topics with the heading “Archives”, I had to use Edit Menu to add a custom link to add that page to the WP menu, and I had created a page to list only the forums with the bbPress short code, but then it was not part of the bbPress nav, and it was unusable – too bizarrely rendered to try to correct.I prefer not to have to get into editing generated pages and editing whatever to get the breadcrumb navigation/menus to correlate. Little comprehension, skill, or time.
Thank you
Hello All,
I am creating a page which has a short code [bbp-forum-index] and i wanted to know if there is a way to filter out all private forums since this page is only supposed to show public forums.
Thanks,
ParagI want to customize the TinyMCE editor with so called mini-plugins. For example, I have the emoticons mini-plugin that I want to use. When I place it in the folder
/wp-includes/js/tinymce/pluginsI’m able to use it through a custom wordpress plugin or the functions.php from my theme. But as far as I know this mini-plugin can get removed when wordpress gets updated.That’s why I want to know if it’s possible to use these TinyMCE mini-plugins inside my (child) theme instead of just throwing them into core?
Topic: Post count functions broken
Are these three functions broken because I’m receiving zero posts/topics/replies when they’re executed:
bbp_get_user_post_count() bbp_get_user_reply_count() bbp_get_user_topic_count()Hi all you guys,
i’ve been trying to display a specific forum in a specific category. Like all categories must have a different forum.To do this, i added a text field to the category with Advanced Custom Fields plugin. Then i write [bbp-single-forum id=196] in that field. (196 is the id number of the forum that i want to display for this category)
To show this, i added this codes to category page in my theme
<?php $category_id = 'category_' . get_queried_object_id(); $dforum = get_field( 'forum', $category_id ); ?> <?php echo do_shortcode($dforum); ?>it’s working great. However, if you enter a topic (ex. a topic)the page goes to sitename.com/topic/a. But i want to read this topic in the category page. I tried to use iframe but i doesnt work. Please help.
my site (click forum tab) : http://www.dizimoon.com/kategori/yabanci-diziler/game-of-thrones
