Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 26,226 through 26,250 (of 26,672 total)
  • Author
    Search Results
  • #52785
    cgavin
    Member

    Right, cant fix the timezone as I have no idea what time zone it is in. Its 3000 miles away.

    Cant be bothered with this – clicking a topic redirects me to my WordPress homepage? Eh?

    Then it says the admin user I created and logged in as 10 mins ago doesnt exhist anymore. Riight.

    Think I’ll stick with something more mature.

    See you when bbpress gets there init. ;)

    Thanks again, but I dont have anymore time to waste ..

    I just spunked 3 hrs on this! Thats more than enough ..

    #1140
    #52778
    cgavin
    Member

    I took the config down because it was publishing the entire file before the function error – ie all my passwords were freely advertised! :)

    Anyway I tried again with a fresh config:

    http://www.cjgavin.com/bbpress/bb-admin/install.php

    Parse error: syntax error, unexpected T_VARIABLE in /home/virtual/site122/fst/var/www/html/bbpress/config.php on line 53

    Better than undefined function. :)

    (line 53) $bb->wp_home = ‘http://www.cjgavin.com’; // WordPress – Options->General: Blog address (URL) // No trailing slash

    Whats wrong with that??

    Lines 52 > 54:

    $bb->;wp_table_prefix = ‘wp_;’

    $bb->;wp_home = ‘http://www.cjgavin.com’;

    $bb->;wp_siteurl = ‘http://www.cjgavin.com’;

    #1138
    cgavin
    Member

    Fatal error: Call to undefined function: _e() in /home/virtual/site122/fst/var/www/html/bbpress/bb-admin/install.php on line 17

    Here’s my config:

    <?php

    // ** MySQL settings ** //

    define(‘BBDB_NAME’, ‘edited’); // The name of the database

    define(‘BBDB_USER’, ‘out’); // Your MySQL username

    define(‘BBDB_PASSWORD’, ‘ok’); // …and password

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.

    // Adjust the domain and path to suit your actual URL.

    // Just the domain name; no directories or path. There should be no trailing slash here.

    $bb->domain = ‘http://www.cjgavin.com&#8217;; // Example: ‘http://bbpress.example.com&#8217;

    // There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.

    $bb->path = ‘/bbpress/’; // Example: ‘/forums/’

    // What are you going to call me?

    $bb->name = ‘CJGAVIN.com’;

    // This must be set before running the install script.

    $bb->admin_email = ‘edited@out.com’;

    // Set to true if you want pretty permalinks.

    $bb->mod_rewrite = false;

    // The number of topics that show on each page.

    $bb->page_topics = 30;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 60;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = 0;

    // Change this to localize bbPress. A corresponding MO file for the

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = false;

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave the rest as it is.

    // $bb->wp_table_prefix = false; // WordPress table prefix. Example: ‘wp_’;

    // $bb->wp_home = ‘http://www.cjgavin.com&#8217;; // WordPress – Options->General: Blog address (URL) // No trailing slash

    // $bb->wp_siteurl = ‘http://www.cjgavin.com&#8217;; // WordPress – Options->General: WordPress address (URL) // No trailing slash

    /* Stop editing */

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?>

    I get this error even if I dont comment out the wp integration stuff.

    I have no idea why, I have checked to make sure the permissions are correct.

    It isnt working and I dont know why – more worrying – I can’t find anyone else who’s experienced this issue.

    #52762
    Trent Adams
    Member

    You can login to trac using a login from wordpress.org as that is the only login system. Once logged in, then you will see the link for submission.

    Trent

    #52755
    Trent Adams
    Member

    Not very had to write plugins if you are a coder and look at pluggable.php as it uses a similar structure as WordPress. Right out of the box, bbPress may never work straight away with WP plugins without a core change in code.

    Trent

    #49548

    I have successfully setup my site to integrate registrations/logins between wordpress on its own DB and domain (blog.bakedlog.com) and bbpress on its own DB and domain (forum.bakedlog.com).

    Files:

    WP: wp-content/plugins/bbpress-integration.php

    BBP: my-plugins/wordpress-integration.php

    • I can create a user in wordpress and log into bbpress with it.
    • I can create a user in bbpress and log into wordpress with it.(although the default role set for wordpress does not let me write (how do i change this?))

    However, I too cannot get cookies to authenticate between the two systems.

    I have included the following in bbpress’s config.php:

    $bb->cookiedomain = 'bakedlog.com';

    $bb->cookiepath = '/';

    I monitored the cookies created on my computer as I logged into each system, and noticed that bbpress was creating the cookie correctly, domain: bakedlog.com, while when I logged into wordpress it would set the domain on the cookie to blog.bakedlog.com.

    So the problem is with WordPress..

    Looking in WordPress’ wp-settings.php I see:

    if ( !defined('USER_COOKIE') )

    define('USER_COOKIE', 'wordpressuser');

    if ( !defined('PASS_COOKIE') )

    define('PASS_COOKIE', 'wordpresspass');

    if ( !defined('COOKIEPATH') )

    define('COOKIEPATH', $current_site->path );

    if ( !defined('SITECOOKIEPATH') )

    define('SITECOOKIEPATH', $current_site->path );

    if ( !defined('COOKIE_DOMAIN') )

    define('COOKIE_DOMAIN', '.' . $current_site->domain);

    So, in WordPress’ wp-config.php I inserted:

    // BBPRESS INTEGRATION

    define('COOKIE_DOMAIN', 'bakedlog.com');

    Clearing my cookies and logging into WordPress, I see the cookie domain is correct and matches my BBPress’.

    But, there is still another problem, the cookies set by BBPress appends an md5 hash based on the site url and table prefix to the cookie’s name (ie: wordpressuser_bf17f59023eb22f…..) while WordPress’ cookie name is only: wordpressuser

    I looked around in bb-settings.php and found:

    define('BBHASH', $bb->wp_siteurl ? md5($bb->wp_siteurl) : md5($bb_table_prefix) );

    if ( !isset( $bb->usercookie ) )

    $bb->usercookie = ( $bb->wp_table_prefix ? 'wordpressuser_' : 'bb_user_' ) . BBHASH;

    if ( !isset( $bb->passcookie ) )

    $bb->passcookie = ( $bb->wp_table_prefix ? 'wordpresspass_' : 'bb_pass_' ) . BBHASH;

    So, the next step is to define $bb->usercookie and $bb->passcookie in BBPress’ config.php:

    // COOKIE SHARING WITH WORDPRESS

    $bb->cookiedomain = 'bakedlog.com';

    $bb->cookiepath = '/';

    $bb->usercookie = 'wordpressuser';

    $bb->passcookie = 'wordpresspass';

    I cleared my cookies and tested it, VOILA! I can log into either section (bbpress or wordpress) and switch to the other without losing authentication!

    ==========SOLUTION===========

    BBPRESS CONFIG.PHP:

    // COOKIE SHARING WITH WORDPRESS

    $bb->usercookie = 'wordpressuser';

    $bb->passcookie = 'wordpresspass';

    WORDPRESS WP-CONFIG.PHP:

    // COOKIE SHARING WITH BBPRESS

    define('COOKIE_DOMAIN', 'bakedlog.com');

    ==========********===========

    Thats it I believe, let me know if it works for you or if you see anything I have done that could crash either program.

    -BHensley.com

    -Bakedlog.com

    #52753
    Trent Adams
    Member

    Rod,

    Right now, the integration with wordpress is strictly login related. The plugins for WordPress currently do not work with bbPress because of the differences in how they work with the system. I have requested the YouTube plugin for bbPress from the author of the Anarchy Media Plugin for WP and I hope this gets out there soon! Plugins don’t take too much to convert over to bbPress, but they still have to be converted to work with the system.

    Trent

    #1128

    Topic: Theme – Bloody Gray

    in forum Themes
    so1o
    Participant

    This is a wordpress/bbpress integrated theme. This theme will work only when you have integrated wordpress and bbpress. for details visit

    http://www.adityanaik.com/blog/bbpress-and-wordpress-integration/

    Screenshots

    http://www.adityanaik.com/projects/themes/bloody-gray-theme/#bbpress-ss

    download the bbpress theme from here

    http://www.adityanaik.com/download/bb-my-template.zip

    download the wordpress theme here

    http://www.adityanaik.com/projects/themes/bloody-gray-theme/

    Note: the header in wordpress will need to be changed to add link to forum

    #1125
    Rod
    Member

    BBPress and WordPress = same creators … so a simple question : why, during the install, would be not possible to have 2 buttons radios with …

    Option One : create a new DB users

    Option Two : use the actual WP DB users

    ?!

    #52626
    drtech
    Participant

    Yes it’s working now.

    #52266
    suleiman
    Member

    hmmm…I’m having the same problem, where I get the error about the bbpress database not existing. I’m integrating with WPMU instead of regular wordpress but that shouldn’t really cause an issue should it?

    Is there a place we can hardcode it to wp_ instead of bb_?

    #1123
    Trent Adams
    Member

    I have been using Alex King’s Mobile edition for WordPress for quite some time and love it! I was wondering if someone would like to look at the plugin and see how it could work with bbPress. It seems pretty straight forward.

    http://alexking.org/projects/wordpress/plugins/wp-mobile.zip

    Another plugin called WordPress PDA is similar and might be easy as well.

    http://imthi.com/wp-pda/

    Interesting stuff! Any takers?

    Trent

    #52625
    Trent Adams
    Member

    So it is working the way you want now?

    Trent

    #52613
    Trent Adams
    Member

    In terms of integrating site with calling WP functions, it is a little out of my realm. If you search this site and can’t find anything useful, you can always head over to the forums with massive information!

    https://wordpress.org/tags/bbpress

    Trent

    #52624
    drtech
    Participant

    I think i have it. By removing the www from the wordpress link fixed it . (http://koma-inu.org/bbpress) Now comes up with welcome header if you are logged in.

    #1121
    #52569
    weirdtherapy
    Member

    @ear1grey

    I read something about problems with the google policy but I am not really at home with this whole policy stuff … do you know what I have to change so that there wont be trouble?

    @Trent

    “The more templates the better!”

    I think so too :o)

    It really helped me with WordPress that there have been so many themes when I started.

    I have made another one btw

    Screenshot

    http://www.weirdtherapy.com/images/crayzdarkshot.jpg

    Downloadlink

    http://www.weirdtherapy.com/zip/CrazyDark.zip

    Simple template – just made some changes on the main template.

    #1119
    aleko
    Member

    I’ve installed bbpress 0.73 and i integrate it with wordpress also in styles.

    I add <?php require_once(‘/Path to wordpress/wp-blog-header.php’) ?> for use “get_header”, or “get_footer” in bbpress templates.

    Now i discover that it’s incompatible with BBLANG because if i try to set it on it_IT (my language) i get this error Fatal error: Cannot redeclare class streamreader in /…./forum/bb-includes/streams.php on line 26

    Anyway if i remove the first lines i added in config.php the language work correctly but i cannot use “get_header” “get_footer” in bbress template.

    Anyone can help me ?

    #1118

    Topic: Lyceum

    in forum Plugins

    I was considering using Lyceum instead of wordpress-mu… would the integration with bbPress still be possible and *easy*?

    -Thanks

    -BHensley.com

    -Bakedlog.com

    #1113
    aleko
    Member

    I’ve installed bbpress with wordpress integration, the database integration works correctly thanks your guide. But… when i try to see my posts i have this error:

    (

    Parse error: syntax error, unexpected $end in /home/mhd-01/www.alessandropagano.net/htdocs/blog/wp-includes/gettext.php(307) : eval()’d code on line 1

    1 post)

    you can try to show this at http://www.alessandropagano.net/blog/forum/

    I’ve heard that this could be related with language settings… but my config.php have the default setting (define(‘BBLANG’, ”);)

    Thanks in advance, i hope to hear you soon!

    #52075

    In reply to: Simply doesn’t work

    plus64
    Member

    You need to change all links for bbpress and put bbpress in front of them, so they look like

    ^bbpress/tags

    etc…. and removed

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /bbpress

    as you can only ever have one of those in an .htaccess file, and connect it to your wordpress one as well. If you get all of that :X

    #52468
    Trent Adams
    Member

    If you mean adding forum as WP page, maybe check out:

    https://bbpress.org/forums/topic/166?replies=6

    As well, do a search in the wordpress.org forums because I am sure there is more examples in that forums.

    Trent

    #50135

    In reply to: UTW Error

    peiqinglong
    Member

    UTW for tags in WordPress.

    #52487
    Zambu
    Member

    Yes, I think I have them set correct in the config file as:

    // Set to true if you want pretty permalinks.

    $bb->mod_rewrite = true;

    My links look like the following example:

    http://www.domain.com/forum/topic/70?replies=3

    I think these are what they call “pretty permalinks”. But still Google ignores the entire /forum/ subfolder and does not index it. On the other hand, Google indexes the rest of the website very well including my blog which is using WordPress.

    For the record, I have already checked to be sure the robots.txt file is not blocking spider access to the /forum/ subfolder.

    Any other ideas anyone???

Viewing 25 results - 26,226 through 26,250 (of 26,672 total)
Skip to toolbar