Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 55,351 through 55,375 (of 64,431 total)
  • Author
    Search Results
  • #68153

    In reply to: Second Page Gone!

    chrishajer
    Participant

    Error log access is highly dependent on your hosting setup. If this is a shared server, you might have a control panel and in there might be access to logs. What is your hosting setup?

    If you don’t have or can’t find logs, then you can setup error logging for bbPress, then just log to a file for a while and try accessing this page 2 and see what gets logged. Then, find and fix the problem. I can post the code for custom error logging, or you can google for it.

    #68152

    In reply to: Second Page Gone!

    chrishajer
    Participant

    > I can’t really switch the theme as my clients

    > customers are using the site as we speak…

    > changing the site now wouldn’t be a great look.

    Yeah, but it’s broken now anyway, so what’s worse? If you don’t want to change it, I understand.

    How about just creating a duplicate of it, duplicate the database, copy over all the files from bbPress, then change the domain name or something, or just access it by subdirectory, all on the same server. See if it’s still broken there. If it is, good, you have a good test environment. Now, try the stock theme, and try turning off plugins one by one (all twenty of them) and see when the problem goes away. You have far from a stock installation, so something in your forum or on your server has changed enough to create this problem.

    #68150

    In reply to: Second Page Gone!

    brad_langdon
    Member

    Thanks for the help.

    Plugins I am using are…

    Allow Images 0.7.1

    Terms of Service 0.0.3

    Human Test for bbPress 0.7.1

    Post Count Plus – Dynamic.Titles & More! 1.1.5

    bbPress Smilies 0.0.1

    Quote 0.2

    BBcode Lite 1.0.1

    bbPress Attachments 0.1.11

    Avatar Upload 0.8.3

    My Views 0.1.2

    BBcode Buttons Toolbar 0.0.4

    BBPress Private Messaging 0.80

    bbRatings 0.8.5

    Mini Track 0.1.5

    My Views module – Started/Participated Topics 0.1.2

    Tweaks (mini-plugins)

    bb Topic Views 1.6.2

    Simple Onlinelist 1.5

    My Posts module – Most/Least Posts 0.1.1

    Unread Posts 0.9.0

    I cant really switch the theme as my clients customers are using the site as we speak…changing the site now wouldn’t be a great look.

    How do I access the error logs?

    #68282

    In reply to: e-mail-notification

    chrishajer
    Participant

    How about watching the RSS feed for the site, in various places, to see when there are changes?

    Or, something like this?

    https://bbpress.org/forums/topic/plugin-post-notification

    Or this discussion?

    https://bbpress.org/forums/topic/email-notification-to-admin-of-every-new-post

    Google knows all

    #68284

    In reply to: HELP!

    nekita
    Member
    nekita
    Member

    First off, thanks for integrating “Page links for bbPress” into the new Alpha2, I think it’s a very good feature.

    However, there seem to be some issues still.

    It seems to randomly assign page numbers to topics (see example). The marked thread has in fact five pages, but the correct number is only shown in the topic page (screenshot No.3):

    1. Front Page View:

    http://i259.photobucket.com/albums/hh308/Nekita79/bug1.jpg

    2. Forum View:

    http://i259.photobucket.com/albums/hh308/Nekita79/bug2.jpg

    3. Topic View:

    http://i259.photobucket.com/albums/hh308/Nekita79/bug3.jpg

    #4124
    myu
    Member

    Hi,

    I have installed bbPress on local servers (MAMP / Apache that came with mac) and these installations made database tables with collation of “utf8_general_ci”

    Installed on online server, and this one made database tables with collation of “latin1_swedish_ci”

    Why?

    And more importantly, does it matter?

    Either way, a lot of entries are not going to be in English, so anything in db isn’t human-readable, so if it doesn’t matter, it doesn’t matter, I guess.

    Though, if there is any way to be able to read non-ascii stuffs in database, I would love to know, please…

    Thanks.

    #55734
    cayoba
    Member

    really the only functions I need is in my header the <?php wp_list_pages(‘title_li=’); ?> for my nav bar, and in my sidebar <?php wp_list_categories(‘title_li=’); ?> is there a way to do these functions in bbpress without loading the entire wp functions this way it may not be breaking. because its the require once wp functions that is breaking my login stuff

    #55733
    nekita
    Member

    I think it was pointed out by Sam that deep integration is still partially broken in Alpha2.

    Personally I think that this will always be a source for potential problems and decided to just emulate my wp scheme in bbpress.

    #68203
    Bharat Karavadra
    Participant

    With 1.0 alpha 2 I have found that the logins work independently for WordPress and bbPress when they have been integrated.

    So I can login into WordPress but also have to login to bbPress – the login isn’t remembered, and the same the other way aorund. When I login into bbPress, I have to then login into WordPress.

    But hey, at least the logins are being shared and this seems good enough for me to make the bbPress forums live.

    However there seems to be some partial login working between WordPress and bbPress as you will see as follows with respect to some analysis I did.

    I hope this is of some use to the team.

    LOGIN AS ADMIN:

    LOGIN ON WORDPRESS:

    Login OK and admin features OK on WordPress

    Not logged into bbPress (e.g. register link and login boxes appear)

    When trying to access /bbpress/bb-admin – redirected back to /bbpress

    Log out of WordPress and..

    LOGIN ON BBPRESS:

    Login OK and admin features OK on bbPress

    Not Logged into WordPress properly (e.g. comments section says login/register and no comments text area, register/login links appear in meta section)

    However, when trying to access /wordpress/wp-admin – appears as logged in as admin OK with all admin features in admin area only.

    LOGIN AS USER:

    LOGIN ON WORDPRESS:

    SAME AS FOR ADMIN:Login OK and admin features OK on WordPress

    SAME AS FOR ADMIN:Not logged into bbPress (e.g. register link and login boxes appear)

    When trying to access /bbpress/bb-admin – redirected back to /bbpress

    Log out of WordPress and..

    LOGIN ON BBPRESS:

    Login OK and profile features OK on bbPress

    Not logged into WordPress

    However, trying to access /wordpress/wp-admin – appears as logged in (obviously with no admin features).

    #55732
    cayoba
    Member

    ok I changed the require once to this code

    $bb->WP_BB = true;

    if (file_exists(‘../wp-blog-header.php’))

    require_once(‘../wp-blog-header.php’);

    else

    if (file_exists(‘../../wp-blog-header.php’))

    require_once(‘../../wp-blog-header.php’);

    it got rid of the errors, however, now when i click on the admin link, after logging in, it just refreshes the page and does not bring me to the admin so now im exactly where victor is with his problem

    #55731
    cayoba
    Member

    ok I have removed alpha 1 and tried alpha 2, now it will log in however, when I click admin this is what I get Warning: require_once(../wp-blog-header.php) [function.require-once]: failed to open stream: No such file or directory in /home/rosebud1/public_html/forums/bb-config.php on line 2

    Fatal error: require_once() [function.require]: Failed opening required ‘../wp-blog-header.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/rosebud1/public_html/forums/bb-config.php on line 2

    im confused because it does the wp functions in the header before I login so im lost.

    #68268
    chrishajer
    Participant

    You’re absolutely right. The only bbPress table with data in it is bb_meta, with 15 rows. None of the other bbPress tables have any data in them.

    I did change the bb_ table prefix to bbpress_ and used a different one for WordPress too (wordpress_ instead of wp_) but that was all done pre-installation. The tables are there, just no data in them. It did read the WordPress user table at some point and told me the username to log in with, and “use current password” or something similar. So, somehere along the way, it died. I’m less concerned with getting my install fixed and more concerned with getting the installer fixed.

    Radium
    Member

    Yeah it wasn’t an issue with alpha 1 for me either. It must be something about bbpress that was changed.

    #68202
    nekita
    Member

    Thank you for your hard work and congrats on the progress. I’ll be Upgrading tomorrow.

    nekita
    Member

    Also this wasn’t a problem with Alpha 1, right? At least it wasn’t for me…

    #63055
    zigx
    Member

    anyone know if this plugin works with the latest bbpress? (0.9.0.2 )

    I cant seem to get it to work.

    Plugin is activated, but links do not have _blank added into the <a tag.

    any ideas? thank you!!

    #4130
    chrishajer
    Participant

    WordPress 2.6.2 svn checkout r8849

    bbPress trunk svn checkout r1794

    I installed WordPress first and that went fine. I logged in and changed my password. Then I went to install bbPress. bbPress installation appeared to go fine. I used simple keys with WordPress so that bbPress wouldn’t choke on them.

    I got to the final step and got a message “There were some errors encountered during installation!” and then I checked off “Show messages” to reveal the following:

    “Forum could not be created!” (that may have been visible before revealing the messages as well – I can’t recall.)

    After that, I tried to access the forum anyway, but I get an error in Firefox3:

    Redirect Loop

    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

    The browser has stopped trying to retrieve the requested item. The site is redirecting the request in a way that will never complete.
    * Have you disabled or blocked cookies required by this site?
    * NOTE: If accepting the site's cookies does not resolve the problem, it is likely a server configuration issue and not your computer.

     

    There is no .htaccess in the WordPress directory or in the bbPress directory. bbPress was installed in a subdirectory of WordPress.

    /var/www/htdocs/ch/wordpress

    /var/www/htdocs/ch/wordpress/forums

    Any ideas?

    #55730
    cayoba
    Member

    I am having the same problem and I do have the <?php if ( is_bb_profile() ) profile_menu(); ?> in the header, it just resets, if i remove the require_once(‘../wp-blog-header.php’); it will log me in, other wise it just refreshes as if im not logged in.

    #68106
    chrishajer
    Participant

    Right, it is more complex than that. Since the function returns an array it’s up to you do figure out how to display it. Also, looking at the widget code is a pretty good start of how to go about getting the data out of that array. And the readme file is also good.

    #68105
    patung
    Member

    Fair enough I don’t know php from my elbow, it’s just with other plugins, including some you can use as a widget, if you don’t use the widget they tell you what code to stick in the sidebar and it’s usually just like <?php call_to_some_function(); ?> but if this is more complex than that then ok.

    Btw ignore what I said about cpu usage, I can’t re-create it so must have been something else.

    #68201
    Bharat Karavadra
    Participant

    Thank you!

    chrishajer
    Participant

    Looks like the key I posted in the beginning there is not properly escaped within code blocks either. You can see the original key here, and how I posted it. If you check the source of that post, you can see how bbPress parsed it.

    More info here, in the original format:

    http://www.chrishajer.com/bbpress/wp-key.txt

    chrishajer
    Participant

    d\EtHv;aK&V9;)L@rZ7-{P~u}~C~”N4O]=Cnw1pl=c2 !6-~b6!VHt9n;>&Tj-

    That was my AUTH_KEY for WordPress 2.6.2 which was working fine. When I tried to integrate bbPress, it apparently read that key, but on step three of the installer, I saw this error:

    http://www.chrishajer.com/bbpress/installer-step-3.png

    As you can see, part of that key is displayed there (&Tj-) and I suspect it shouldn’t be, and was not being used properly in this case.

    I wonder if this is why so many people are having log in/log out issues with WordPress integration. I am going to try a plain vanilla key (alphanumeric only) and see how that works.

Viewing 25 results - 55,351 through 55,375 (of 64,431 total)
Skip to toolbar