Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 11,326 through 11,350 (of 11,508 total)
  • Author
    Search Results
  • #52862
    spencerp
    Member

    Ah, ok.. I’ll have to try/test that then Josh.. thanks for pointing that out.. ;) :)

    spencerp

    #52858

    In reply to: My forums template :)

    ardentfrost
    Member

    Signature isn’t working most likely because you have the latest version of Avatar. The change you made in functions.php for signature need to be made in bb-avatar.php instead (in your my-plugins directory). Check out Line 34… that’s where you need to make the adjustement.

    #1155

    Topic: My forums template :)

    in forum Themes
    vaelrith
    Member

    I made a theme for my forums, and found it rather easy. It was mostly just all css, and a few changes to the front-page.php file.

    http://zenhelix.us.to/forums/

    I’m using a few plugins also:

    • Allow Images
    • bb-avatar
    • bb-limit-latest-discussion
    • bb-memberlist
    • bb-postcount
    • bb-privatemessage
    • bb-signature – this one isn’t working for some reason, but i didn’t really look into it
    • display-name
    • forum-moderators – don’t know if this one is working either
    • notification
    • onlinelist

    Thanks to all who made those :)

    I’ll make the theme more user-friendly and remove the front-page.php changes so that it is more standard and release it to public whenever I change to a new theme. I don’t want other people to be using my theme at the same time I am =D

    #52856
    Null
    Member

    Hmmm… ok going to do a clean install on my test forum, perhaps another plugin is jamming…

    Thx

    Got it fixed, it was another plugin, fixed the error, thx again

    zip is removed

    #52854
    Null
    Member

    Checked it, but that’s not it. Also get this error when login in (same as when posting):

    Warning: Cannot modify header information – headers already sent by (output started at /xxx/bbpress/my-plugins/bbPortal.php:2) in /xxx/bbpress/bb-includes/pluggable.php on line 39

    Any other ideas?

    Made a zip of the current plugin, just put it into your plugin folder. Now try to post a new post or anything and the error will occur. The new form in adminpage/content/bbportal works great.

    NOTE:

    This is for testing ONLY. The plugin aint done yet or compleet!!!!

    http://www.sourceskins.com/bbPortal-BETA.zip

    #994
    Nicki Faulk
    Member

    I’ve tried to match it up as close as possible to the main site without looking too “off” and feel that I’ve done a pretty good job. :)

    http://www.nowwerecookin.org/bbpress/

    You’ll need a p/w and username: test/test

    Plugins used:

    • Allow Images 0.7.1
    • Avatar .73a
    • bbEmoticons version 0.72
    • Memberlist .73a
    • Google Sitemap Generator .6
    • BBPress Private Messaging 0.73
    • Use Display Name 0.7.2
    • Online List 1.3-fix
    • WordPress Integration .7

    (all plugs found via these forums :))

    Feedback would be greatly appreciated. I’ve checked on Firefox 2.0 and IE 6.0 but would love to hear from users of other browsers! :)

    Thanks in advance, and a huge thanks to those who’ve posted these plugins, as well as the FAQ and other solutions. Skinning this thing has been a bear, but everything else has been relatively easy as pie. :D

    #49481
    griso
    Member

    Hi there…

    i nearly completed an italian translation for bbPress (using the last SVN, so it should be the most updated).

    I’m keeping it updated and i’m going near completion today or tomorrow.

    If you want to have a look at it or use it, feel free to check HERE

    This is just a test forum… it’s not yet released to users

    Bye!

    #52743
    spencerp
    Member

    YES! Once again gerd damn-its, testing a bunch of crap out the arse.. for Josh there.. it’s FINALLY working both ways now.. whee!!

    http://spencerp.net/forums/

    http://spencerp.net/forums/mlist/

    http://spencerp.net/forums/mlist.php

    Now, maybe, hopefully, some time soon here.. I’ll be able to actually work on MY theme’s for the blogs… because I’m already 7 months behind on the crap.. sigh.. =P

    spencerp

    /It’s fun though.. being the guinea pig .. of a bbpress plugin pimp! lmao

    #52736
    ardentfrost
    Member

    What makes you think I’m a professional programmer? I do this for free, you don’t have to use it. Plus, it’s open source, you’re more than welcome to change the error message.

    That message should only be shown if it can’t find memberlist.php in your my-templates directory. Also, if you don’t have pretty permalinks turned on, it is supposed to see that and add the .php to the end of mlist.

    Could you tell me your server information? (version of php most notably) Do you have pretty permalinks turned on? If you don’t know your server info, are you on dreamhost or something?

    This has been tested on multiple server configurations and works on them, but there’s no way to test on every server config. But I’ll try to make it more compatible if possible.

    #50596
    promesbanda
    Member

    Hi, donĀ“t take care of much about it. I am testing what this software does.

    #52822
    Trent Adams
    Member

    The standalone version doesn’t have the ability to log, so it is difficult to test it without having someone do something that Bad Behavior doesn’t like! That being said, I am 99.9% sure it would be working if you are still able to bring up your forums because if you install it incorrectly, it will not let you access your pages and block everything until you get it right.

    The good thing about Bad Behavior is, install and forget about it!

    Trent

    #52819
    Trent Adams
    Member

    I would suggest using the following to stop the avatar plugin from working in the mobile version until I can figure out a way to make all images smaller or non-existant with this plugin.

    Put this over the code for the avatar plugin in post.php in /my-templates/

    <!-- Diable Avatar for BB-Mobile -->

    <?php if ( mobile_check() ) : ?>

    <!-- <?php post_avatar(); ?> -->

    <?php else : ?>

    <small><?php post_avatar(); ?></small>

    <?php endif; ?>

    <!-- Diable Avatar for BB-Mobile -->

    I have now tested this out and know that it works on my site.

    In fact, any code that you do not want shown or changed in the mobile version of your site can be elminated or changed with the following structure!

    <!-- Code for BB-Mobile -->

    <?php if ( mobile_check() ) : ?>

    CODE YOU WANT SHOWN ON MOBILE

    <?php else : ?>

    CODE YOU WANT SHOWN ON MAIN SITE

    <?php endif; ?>

    <!-- Code for BB-Mobile -->

    Trent

    #52846
    ardentfrost
    Member

    Where are you changing that? I assume you’re using my Private Messages plugin (hope you like it), and if you’re changing something in functions.php or template-functions.php you could have an adverse effect on plugins.

    I also don’t exactly understand why you would test if the current user has an ID. You might want to, instead, test if the current user can do something instead of having an ID.

    Plus, I don’t think you want to use || in that setup. You probably want to use && so that if the profile exists AND something else, then it’ll display it.

    Possibly all or none of the above :)

    #52821
    chrishajer
    Participant

    Trent, I installed this and the install went smoothly. How can I test this or know that it’s actually working? What differences would I see? I didn’t see any testing procedure in the FAQ at http://www.homelandstupidity.us

    Thanks for sharing the procedure.

    #52812
    chrishajer
    Participant

    Works for me too. Now to do something like “WP Since Last Visit” from Alex King.

    Also, I made the same change in forum.php on lines 16 and 25 for consistency.

    edit: Oops, just looked through the files and that need to be changed in lots of places. I lost track already…

    #52817
    Trent Adams
    Member

    It would seem that this is going to need some testing!

    Could everyone try this out if you can and report back? It would be good to test my blog as well (so we can see if one works and one doesn’t).

    Forum – http://forum.trentadams.ca

    Blog – http://blog.trentadams.ca

    I use a Treo 700 Smartphone, so it might have a little better browser than most….

    Trent

    #1145
    Trent Adams
    Member

    I had to borrow a function from the great Alex King and his mobile edition for WP, but I have created a plugin that will allow mobile phones and other common mobile devices to access a page designed for them.

    Download: BB-Mobile

    All the directions are in the readme.txt file in the download file, so it should be quite self explanatory. It has 2 files and you need to edit your header.php file in your templates, but has no core changes.

    NOTE: I don’t think the mobile CSS will validate and I need people to test this out to find any bugs and corrections, but it seems to work well enough for me.

    If you need a demo, you can view my forum with a mobile:

    http://forum.trentadams.ca

    Trent

    #52811
    vaelrith
    Member

    thanks :)

    #52810

    I think there is no plugin needed for this. It only requires a small template change in front-page.php.

    Just replace in line 37:

    topic_link();

    with

    echo get_topic_last_post_link($topic->topic_id);

    … I think it should work.

    #1144
    vaelrith
    Member

    I was thinking a plugin that when you click on the topic title in the “Latest Discusison” section, it takes you to the last post, or the last unread post by you (which I think would require cookies, I don’t know much about that). I’m sure you have seen this on forums like IPB or phpBB, you click on the topic title, and it takes you to the last unread post. This would be good for threads which have more than one page, so that once you go to the thread, you then won’t have to navigate to the correct page.

    #52731
    ardentfrost
    Member

    naw, it’s ok. Spencer just gets the weirdest problems with stuff, but I still got it tested ;)

    #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

    #52728
    ardentfrost
    Member

    Yes. It should be WPMU friendly. I had Spencer help me test it out.

    #51674

    @chrishajer:

    This Plugin doesn’t care if you’re admin or not. So you should only receive emails on your favorite topics.

    Maybe you’ve downloaded the wrong version? There is one, which sends an email on every post!

    You had an great Idea! I just put this into it. Now it displays the last posters name in the mail.

    Download latest Version here:

    http://la-school.com/2006/bbpress-notification/

    #51818

    In reply to: Plugin – Member List

    ardentfrost
    Member

    Trent: I’ll be updating memberlist soon to add a couple features, but I need to talk to you about fixes for wp integration (I think there are 2 that need to be applied, but I need your input and testing). IM me when you read this.

Viewing 25 results - 11,326 through 11,350 (of 11,508 total)
Skip to toolbar