Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 6,001 through 6,025 (of 26,860 total)
  • Author
    Search Results
  • #171756
    ferparker
    Participant

    I’ve installed the plugin, but theres no Forum options in my WP Painel… So, the Forum wont appear on website cuz there no option to create it after plugin’s installed. What can i do?
    Wordpress: Versão 4.4.2
    bbPress: Versão 2.5.8
    Website: http://www.finalfantasyrpg.com.br

    #171754
    thelaw
    Participant

    Apologies on the late reply everyone. I’m using 3.1, latest version (for if you’re not, it’s like WordPress and you will get hacker bots scanning for old versions.) Unfortunately that seems to be the issue. Thanks @Brandon and @Stephen for your assistance. Table prefixes were properly used. I’ll have another go at it again but I’m pretty sure I was using latest version of WP and BBpress in order to do the conversion.

    #171746
    myUsernameIs
    Participant

    bonjour,

    Thanks for your advise. I’ll try to fix according to your suggestion, it will take to me a little bit of time because i’m newbie in wordpress 🙂

    thanks Kostas.

    #171737
    Robin W
    Moderator

    great – glad you’re fixed

    You can also try my style pack, which has some login features as well as lots of styling stuff

    https://wordpress.org/plugins/bbp-style-pack/

    #171736
    Robin W
    Moderator

    download my style pack

    https://wordpress.org/plugins/bbp-style-pack/

    and you can change lots of things using that

    #171734
    Stefano
    Participant

    I’ve built a plugin that allows anonymous posters to subscribe for notifications on new replies 🙂
    https://wordpress.org/plugins/bbp-anonymous-subscriptions/

    #171732
    Robin W
    Moderator

    no problem you need my private groups plugin as additional to bbpress.

    https://wordpress.org/plugins/bbp-private-groups/

    #171729
    alice2dupouy
    Participant

    Hi everybody 🙂

    And first of all:
    – Sorry for my English mistakes :/
    – Sorry if I post in the wrong forum(?)
    – Sorry if this question was already asked: I looked for an answer for 2 days and I can’t find anything which suits exactly to my problem :'(

    I am trying to create a very simple forum for this website: http://www.zykoson.com/site
    I am using the latest versions of WordPress, BBpress, BuddyPress etc.
    I’ve read all the documentation, lots of topics but I still don’t know how to have:
    – One “public” part: everybody is able to see the forums and topics, but people have to be registered to post something.
    – One “private” part:only registered members belonging to a special group are able to see and post in this part. I would like to manually add these users to the group, after they create their profile.

    Really, I think I am stupid because I CAN’T get there. I’ve tried everything: private forums, public ones, creating multiples groups with Buddypress. But no way. There is always a problem (and even if I get something correct, there is still a problem such as the breadcrumb which doesn’t display correctly)!

    Please I need help before snatching all my hair, I’m on the verge of abandoning everything T_T

    Thank you very much in advance and sorry for this so simple question

    #171715
    myUsernameIs
    Participant

    Yeah of course,

    link
    btw i forgot to say that i’m using wordpress 4.4.2 and bbpress 2.5.8.
    thanks!

    #171712
    DL
    Participant

    Thanks! I appreciate your help, I’m desperate to update these sites on old versions of Zikula. I can’t even update the PHP on the server past 5.3 because because Zikula 1.2x won’t work on anything later.

    The issues you noted.

    Categories
    aren’t used much, so yes, they can be ignored, it doesn’t seem like it’s difficult to assign forums to categories in bbPress if needed.

    Subscriptions
    The table prefix is causing me confusion as I switch between databases. Some of my forums have databases using nuke_ for prefix and some have zk_ , this is an artifact from many years of using Postnuke/Zikula and based on when the original database was created.

    in the dizkus schema the (prefix)_dizkus_subscription table contains which forums a user is subscribed to.

    The (prefix)_dizkus_topic_subscription table contains which topics a user is subscribed to.

    Topic Author IP
    This isn’t necessary to move to bbPress as far as I’m concerned. Only used when I’m investigating a possible spam post. Someone else might need to have it though, so put it on the “nice to have” list.

    Topic Content
    None of the conversion attempts have been successful enough to see yet. So far have always errored out because of failed sql statements.

    I attempted to do a join because the title of a new topic is stored in (prefix)_dizkus_topics along with the topic post time, views, num. replies, last post ID, forum ID, and sticky status (0 or 1). But the content of the first post in a topic is stored in the (prefix)_dizkus_posts table.

    There is no “first post in topic” post ID in either table, as it looks like phpBB had so I tried to adapt this.

    // Topic content.
    		// Note: We join the 'posts' table because 'topics' does not include topic content.
    		$this->field_map[] = array(
    			'from_tablename'  => 'posts',
    			'from_fieldname'  => 'post_text',
    			'join_tablename'  => 'topics',
    			'join_type'       => 'INNER',
    			'join_expression' => 'USING (topic_id) WHERE posts.post_id = topics.topic_first_post_id',
    			'to_type'         => 'topic',
    			'to_fieldname'    => 'post_content',
    			'callback_method' => 'callback_html'
    		);

    Topic Favorites
    Dizkus doesn’t have topic favorites, only forum.

    Passwords
    Since Dizkus doesn’t store passwords, they would have to taken from (prefix)_users table, but thinking about it I’m not sure that this script needs to deal with passwords at all. I will still need to migrate ALL the users from the Zikula installs, not just the ones that have posted in the forums. I’m planning on using WP All Import Pro for that job and migrating other data like converting news items to news and bringing over static pages.

    Worst case, if the passwords get screwed up everyone would have to use the “lost password” system to set a new one.

    Just tried the version of dizkusZK in Github after merging your changes and got this error.

    Repair any missing information: Continue
    WordPress database error: [Unknown column 'zk_users.pn_uname' in 'field list']
    SELECT convert(zk_dizkus_users.user_id USING "utf8mb4") AS user_id,convert(zk_users.pn_uname USING "utf8mb4") AS pn_uname,convert(zk_users.pn_email USING "utf8mb4") AS pn_email,convert(zk_users.pn_url USING "utf8mb4") AS pn_url,convert(zk_users.pn_user_regdate USING "utf8mb4") AS pn_user_regdate,convert(zk_users.pn_user_avatar USING "utf8mb4") AS pn_user_avatar FROM zk_dizkus_users AS zk_dizkus_users LIMIT 0, 100
    No users to convertNo data to cleanStarting Conversion
    #171710
    gleninjersey
    Participant

    When I click on “Register” I receive the below error:

    “Not Found

    Apologies, but the page you requested could not be found. Perhaps searching will help.”

    I did a little googling and have already have turned on “Anyone can register” under settings (Membership).

    I am also seeing an error message “The following active BuddyPress Components do not have associated WordPress Pages: Activate, Register. Repair”

    Any suggestions?

    #171692
    Robin W
    Moderator

    If you’re a newbie, then install Pascal’s plugin – much easier !

    https://en-gb.wordpress.org/plugins/bbp-toolkit/

    #171688
    Manuel Fritsch
    Participant

    Thanks a lot for your assistance, Pascal. This is the Slimstat support thread.

    #171684
    Pascal Casier
    Moderator

    Hi,
    Using Chrome standard tools, I saw you run into a warning ‘Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience.’

    I arrived on https://wordpress.org/support/topic/heatmap-xmlhttprequest-deprecated?replies=5 so as you confirmed you have WP Slimstat installed and switching it off, the URL clicks are working fine, you will have to check on their forum.

    Pascal.

    #171667
    Robin W
    Moderator

    Once you’ve installed bbpress if you use the plugin

    https://wordpress.org/support/plugin/bbp-private-groups

    then you can create groups with access to different forums, or indeed groups of forums

    #171665
    adam
    Participant

    I am just now going to begin setting up my site. I’m recreating my site in WordPress because I was told therein lies the ability to create several password-protected forums on one website. I need confirmation of that before I continue. Help would be greatly appreciated. Thank you.

    #171661
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #171660
    Robin W
    Moderator

    All I want to do is have my website show other users’ basic info when I click their name in a forum post.

    That’s what it is supposed to do – click my name here and you’ll go to my profile !

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #171659
    Robin W
    Moderator

    it’s do-able but I don’t know of anything that already does this.

    Suspect you need to pay someone to cut the code for you.

    try http://jobs.wordpress.net/

    #171658
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #171656

    In reply to: Logins

    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #171653
    Pascal Casier
    Moderator

    If you look for a coder concerning WP/bbPress, don’t forget to post on http://jobs.wordpress.net/

    Pascal.

    #171650
    pwonlineblog
    Participant

    Still not working.

    Before my first post I did try those two steps (I was paying attention and did read the “Before posting” post at the top of the page).

    But I did try again. I deactivated all but bbpress. When I attempted to change the theme to twentyfifteen I discovered that I didn’t have the most up to date version of WordPress, so I updated it. I now have all but bbpress deactivated and the twentyfifteen theme installed, and still no luck with the forums.

    I appreciate all your help. Any more ideas?

    #171648
    Stephen Edgar
    Keymaster

    I’ve never heard of Dizkus 🙁

    You could try making some more changes to the phpBB importer yourself if it already partially works:

    Custom Import

    Also checkout both of these for SMF and phpBB for the upcoming bbPress 2.6 release.

    https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php
    https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/SMF.php

Viewing 25 results - 6,001 through 6,025 (of 26,860 total)
Skip to toolbar