Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 24,401 through 24,425 (of 26,836 total)
  • Author
    Search Results
  • #63191
    Trent Adams
    Member

    It can be done as I am using a custom avatar plugin that I use with my wpmu install that pulls the avatar from the wpmu side when comparing the user id from bbPress and the wpmu user (as they are the same with integration).

    In terms of normal wordpress, I am not sure if one exists. I know lots have used gravatar or mybloglog as their base avatar system (myself included) just to make integration easier :)

    Trent

    #63190
    stereopoly
    Member

    Users of our site should not upload their avatar twice and thats why i’d like to let them work together. any other simply idea?

    #2950

    Topic: php fail.

    in forum Troubleshooting
    saintmain
    Member

    Damnit, I was so looking forward to using bbpress. Im a big fan of wordpress, and I love that its so simple to mod. but there seems to be some problems with this board, and I can figure it out.

    On the wery first page when installing, I get this messege;

    Warning: Invalid argument supplied for foreach() in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-settings.php on line 169

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-admin/install.php on line 10

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/functions.php on line 1910

    Im able to install just fine, but when I try to log in, I get this;

    Warning: Invalid argument supplied for foreach() in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-settings.php on line 169

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 164

    Im lost when it comes to php, and its seems from this board, that there have been thiis problem for quite a wile, 6 month now. goodbuy bbpress, hello minibb??

    The forum is located on http://www.cobain.dk/bbpress

    PHP5

    The server has “PHP – Register globals” set to OFF

    bbPress and WordPress have different table prefixes

    bb_forums

    bb_posts

    bb_tagged

    bb_tags

    bb_topicmeta

    bb_topics

    bb_usermeta

    bb_users

    wp_comments

    wp_links

    wp_options

    wp_postmeta

    wp_posts

    wp_terms

    wp_term_relationships

    wp_term_taxonomy

    wp_usermeta

    wp_users

    #63189
    darkling235
    Member

    You probably could but I think retroengineering the plugin to work in both wordpress and bbpress would be more trouble than its worth. My site just uses two very simple avatar plugins that work basically the same, 68-gravatar and 4avatars. I know one plugin would be simpler to maintain but I think the amount of work required to make it function in both would be counter productive unless you had a really good reason to want the same one in both

    #63196

    In reply to: empty site

    saintmain
    Member

    Now, some text is pupping up:

    Warning: Invalid argument supplied for foreach() in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-settings.php on line 169

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 37

    Warning: Cannot modify header information – headers already sent by (output started at /customers/cobain.dk/cobain.dk/httpd.www/bbpress/config.php:1) in /customers/cobain.dk/cobain.dk/httpd.www/bbpress/bb-includes/pluggable.php on line 164


    bbPress and WordPress have different table prefixes

    bb_forums

    bb_posts

    bb_tagged

    bb_tags

    bb_topicmeta

    bb_topics

    bb_usermeta

    bb_users

    wp_comments

    wp_links

    wp_options

    wp_postmeta

    wp_posts

    wp_terms

    wp_term_relationships

    wp_term_taxonomy

    wp_usermeta

    wp_users

    #63195

    In reply to: empty site

    saintmain
    Member

    It is a standard installation, no language or mod.

    I have installed WordPress on the same server but not in the same folder, is that a problem?

    Im using PHP4, should I upgrade to PHP5 to make bbpress work?

    The server has “PHP – Register globals” set to OFF.

    *update. php5 is now installed on the server, still ampty site :(

    #63194

    In reply to: empty site

    chrishajer
    Participant

    That looks like a server error, probably error code 500. Hard to say since the errors are not shown in the browser. If you have access to error logs, finding the problem will be easier.

    Did you try to integrate bbPress and WordPress? Are you using a different language file? Anything else modified from a standard installation?

    chrishajer
    Participant

    I believe this new error has to do with translations when you try to combine WordPress and bbPress:

    wordpress integrate problem when enable BBLANG

    Searching these forums for streamreader turns up lots of similar error messages.

    #2942
    stereopoly
    Member

    Heya,

    i’ve installed a wordpress plugin for avatars which is integrated into my wordpress by the following code:

    <?php if(function_exists(cmd_show_avatar)) cmd_show_avatar(avatar); ?>

    Is there any possibility to embed this code into my bbpress just for showing the wordpress avatar (because of saying my bbpress to require wp-blog-header in the config.php)?

    #63139
    stereopoly
    Member

    this is what my htacces looks like in my root:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

    RewriteEngine on

    RewriteCond %{HTTP_HOST} !^www.stereopoly.de$

    RewriteRule ^(.*)$ http://www.stereopoly.de/$1 [L,R=301]

    Redirect /feed feed://feeds.feedburner.com/stereopoly

    #63138
    _ck_
    Participant

    Googling shows that error is caused when running PHP as a CGI and there is a mod_rewrite conflict (or a file does not exist).

    I suspect there is a conflict with mod_rewrite rules in the parent folder. Show us your rewrite rules in /.htaccess (probably wordpress stuff but there may be others).

    stereopoly
    Member

    Hey guys,

    i’d love to integrate my bbpress ( http://www.stereopoly.de/forum ) into my wordpress ( http://www.stereopoly.de ), but when saying to fetch the wp-blog-header (even when taking an absolute link, my bbpress is completely giving up its job and says

    Failed opening required ‘http://www.stereopoly.de/wp-blog-header.php&#8217;

    this is what my bbpress’ config.php last lines look like:

    /* Stop editing */

    if ( !defined('BBPATH') )
    define('BBPATH', dirname(__FILE__) . '/' );
    require_once( 'http://www.stereopoly.de/wp-config.php' );
    require_once( 'http://www.stereopoly.de/wp-blog-header.php' );
    require_once( BBPATH . 'bb-settings.php' );

    ?>

    can anyone please help!?

    #56983
    chrishajer
    Participant

    If you have access to a log file, check to see what the fatal error was, or temporarily configure your webserver to echo errors to the browser, or redirect them to a file. A fatal error can be anything: you need to know specifically what the error is to have a chance at fixing it.

    #2776
    stereopoly
    Member

    Hey guys,

    i’ve just installed a wordpress plugin makin it possible to upload a user avatar. the plugin is based on based on DanĀ“s Avatar plugin and was modified by clope.

    look at the comment of a user called julius in this wordpress-post: http://www.stereopoly.de/die-evolution-der-nintendo-helden/#comments

    Is it possible to easily embed a freaky code to my bbpress (http://www.stereopoly.de/forum) showing the avatar? PLEEEASE HELP!!!

    #56982
    stereopoly
    Member

    Trying to activate Vili’s Avatar Thingy, my wordpress says:

    “The plugin could not be activated for it’s causing a fatal error.”

    What now? :(

    #2939
    janellers
    Member

    Hi, iam Using bbPress with a WordPressinstallation. My WP install is in:

    /blog/

    and my bbPress in:

    /blog/forum/

    If I now log in in my WP with IE and go to the Forums all is fine. But if I do the same with FireFox I have to login again.

    I’am using WordPress Plugin bbpress Integration and the WordPress Integration Plugin for bbPress. Did i made something wrong?

    thanks,

    Jan

    Edit: If I’am logged in and go to the register.php with FireFox he mean that Iam already logged in… confusing…

    Edit#2: If I log out in bbPress my Iam logged out in WP too…

    #62394
    Vili
    Participant

    Brilliant, absolutely brilliant. I had already got to the stage of banging my head against the wall a few times because of this, but now it’s finally sorted out and my forums don’t throw up those nasty 404s when validating and being indexed by search engines.

    Thanks, beaulebens!

    #2937
    phy
    Member

    I found this so cool and wonder if it is ever possible with bbpress too. http://www.stuff.yellowswordfish.com/simple-forum/

    The only problem i find with that plugin is the speed. A little slow to load the forum page.

    Hope to hear from all of you soon.

    #2935
    janellers
    Member

    Hi,

    I just installed bbPress and integrated it to my WordPress Site. It’s wonderful! But i have a Problem…

    I want to create a second forum, so i go to content -> forums and fill in the two forms under “Add Forum”. After clicking the Add Button I get the Error Message that i dont have the permissions to create a Forum? How could this be? I’am logged in as admin, as key master. Do you have any ideas?

    thanks,

    Jan

    #63143
    chrishajer
    Participant

    Sounds like you’re looking for WordPress support:

    https://wordpress.org/support/

    That’s quite a bit of help you need there.

    #2934
    efiorello
    Member

    I’m new to WordPress. I need to build a website with multiple pages for a client of mine. Here are the elements I need to include:

    Biography (text, photos)

    News (text, photos)

    Tour Dates (event calendar)

    Discography (text, photos)

    Merchandise (text, photos)

    Links to other sites

    Blog

    Media (video, music clips)

    Contact Info

    I need help setting it up on a server. Can someone please help me? My client currently has a domain name and hosting.

    #2928
    darkling235
    Member

    I imported the wordpress functions I need but get_the_ID() from wordpress doesn;t seem to work in bbpress. Is there a bbpress function that does the same thing? It gives you the index number of posts or comments or whatever that is currently being printed by the system

    #2927
    darkling235
    Member

    Is there a normal process or formula for converting a wordpress plugin to a bbpress plugin? Let’s say that it uses all the same tables and everything? Is there a way to switch it over or do you just have to re-engineer it?

    #63115
    darkling235
    Member

    Ok I get it now thanks

    #63114
    chrishajer
    Participant

    DON’T do that!

    You want bbPress and WordPress to have different table prefixes in their respective config. bb_ and wp_ , the defaults, are fine. If you try to use the same table prefix, some of the WordPress tables get destroyed due to a collision between table names because both software packages now use the same table prefix (posts , usermeta and users tables, I believe.)

    What are you trying to accomplish that requires you to use the same tables for WordPress and bbPress? If you are looking for integration, this is not how you do it. With an integrated install, you still use a different table prefix for bbPress but you insert your WordPress table prefix in the bbPress config.php a little further down in the file. Then, bbPress modifies the existing wp_users and possibly wp_usermeta table.

Viewing 25 results - 24,401 through 24,425 (of 26,836 total)
Skip to toolbar