Search Results for 'test'
-
AuthorSearch Results
-
February 24, 2007 at 1:45 am #54904
In reply to: Memberlist plugin: need a few testers
Trent Adams
MemberActually, if you test this new version of ardentfrost’s plugin and delete a bozo user, you will know if it didn’t work because when you go the ADMIN => USERS => BOZO page and get an error, it didn’t work. If it shows up, it did work as that was the problem with the last version of the plugin and the new upgrade of bbPress.
Trent
February 23, 2007 at 9:10 pm #54820In reply to: Rewriting URLs
marky
MemberWell, I’m still having trouble getting this working. Indeed, all I’d like to do is redirect existing links to the new topics; I don’t want to change the permalink structure or anything else.
I’ve tried escaping the dot and question mark, but it’s still not rewriting the URL. I’m wondering, at this point, if ModRewrite can handle urls with parameters in them. I’ve tried some other quick tests (
RewriteRule ^/forums/blah.foo$ /forums/topic/1/) and it worked no problem, so ModRewrite isn’t the problem itself.Any other suggestions?
February 23, 2007 at 7:06 pm #1465Topic: Memberlist plugin: need a few testers
in forum Pluginsardentfrost
MemberI’m trying to test a new deletion routine in the Memberlist plugin, but the problem is I don’t have a WPMU integrated site to test with. I usually use Trent as my tester, but he de-integrated.
So if a few of you who use the plugin and are integrated and are willing to test something, let me know. The problem being addressed is how currently the plugin does not delete usermeta data when deleting the user, which causes errors in the backend user pages (particularly when the user is a bozo). I have already tested it using non-integrated bbpress, I just need one or two people to let me email them an updated file to test with WPMU. You’ll need to know how to look in your database to make sure the data is being deleted.
Thanks!
February 23, 2007 at 3:13 pm #54328In reply to: Updated to Desmond But Theme Not Working
donnavitan
MemberHello chrishajer,
I’m definitely seeing the () error when I look at the source.
I have installed the latest xampp, wordpress and bbpress locally for testing purposes. My config is as follows:
$bb->wp_table_prefix = 'wp_';
$bb->wp_home = 'http://localhost';
$bb->wp_siteurl = 'http://localhost';
I really don’t think I should be getting this error, so must I configure something else? Any help would be greatly appreciated. Thank you.
February 23, 2007 at 10:32 am #54870In reply to: Sub-Categories?
Sam Bauers
ParticipantThere is another more vanilla implementation here.
You should use the patch that corresponds to your version. Check the ticket to find out which is which.
If you upgrade then you need to grab the latest patch (preferably made for that version) and re-apply it to your code.
February 23, 2007 at 3:47 am #54869In reply to: Sub-Categories?
macwise
MemberI believe that’s what I’m searching for…I saw the implementation at http://test.158th.com/forums. Are there any other examples of implementation for this plugin? Do I need to install the patch for bbpress v.80 if that’s my installed version, or can/should I use the latest patch?
Also, what happens when I upgrade to v1.0 or something? (I can only assume that I will need to patch it again, assuming it’s not integrated as an official feature yet.)
Thanks for the help!
February 23, 2007 at 1:05 am #1460Topic: Sub-Categories?
in forum Installationmacwise
MemberI’m looking into adding my categories for real now (testing’s pretty much over) and I am *thinking* I would like sub-categories. Is this a feature available through a plugin yet? I know this adds another level of complexity, and I apologize if in asking for this feature I am speaking heretically. Just trying to make this right before my major launch.
Thanks!
February 23, 2007 at 12:07 am #54267In reply to: Patch: Categories for version 0.8
Sam Bauers
ParticipantNew patch for 0.8.1 (build 719) just uploaded here. I have not tested this patch on a fresh install, but the changes from the last patch are minimal. Just a couple of line numbers and implementing the new attribute escape function in a couple of places.
spencerp – you should consider using an SVN client to update your live site, it is much easier to apply the changes to core using SVN, they generally don’t conflict with this patch.
February 22, 2007 at 11:44 pm #54670In reply to: Import SMF to bbPress
lonemadmax
MemberI’m very sorry. My SMF forum was not in UTF-8. If your try was in a test bbPress forum, try again deleting all
utf8_encodecalls in the script (leave the argument, of course).February 22, 2007 at 9:31 pm #54834In reply to: .htaccess/Cookie woes!
macwise
MemberSTATUS: RESOLVED
Ziyphr,
I’ll preface this by saying that I love Ahi Tuna dishes at restaurants. What is it about that huge hunk of raw fish meat that’s only seared to (probably) keep men’s wives from refusing to share a bed with a man who would eat a classic “dry heave” food. So, why do I like it? Well, it’s not the big chunk of meat that draws me in and pleases my palate. It’s the simple glaze that I often find on top; the light, sweet sauce that perfectly compliments the fish. As they say, “The secret’s in the sauce.”
So, the “sauce” for this problem was the secret, and the sauce ended up being all too simple. Ziyphr first directed my friend and I to wp-settings.php. (He said to check out line 185, but mine was around 151-160). I found the code that called the siteurl and home, both of which would have returned http://babyquestions101.com, as that is what I have listed in my admin panel. I thought I needed to modify those to somehow spit out two domains, with the www and sans.
My friend also informed me that he believed that cookie domains really need two dots, the first before the domain and the second after the domain but before the ‘com’. In my case it would be .babyquestions101.com. How to get ‘siteurl’ or ‘home’ to reflect that was a challenging thought.
One side-note for anyone trying this same thing, DON'T CHANGE YOUR SITE ADDRESS OR HOME ADDRESS TO ANYTHING OTHER THAN \"WWW.MYURL.COM\" OR \"MYURL.COM\" IN THE ADMIN PANEL.Doing so will cause you more headaches than when you meet your mother in law for the first time. (Ok, that was an exaggeration, but only slightly).Once I got that mess sorted out, we tried to hard code in the .babyquestions101.com, replacing
define('COOKIEPATH', preg_replace('|https?with
/[^/]+|i', '', get_settings('home') . '/' ) );define('COOKIEPATH', '.babyquestions101.com');This didn’t work, and all hope was lost. Curiosity getting the best of me, I opened up my preferences panel in Safari and pulled up the list of all my stored cookies to see if there were any similarities/discrepencies between my cookie and other sites’ cookies. This is where I saw my cookie had the value “www.babyquestions101.com” under the heading “website” where most other sites were listed as “.siteurl.com”, missing the www that seemed to be plaguing me. I decided that was what I needed changed, and when I looked back at the code in wp-settings.php, I discovered that line 160 was unique from the others.
if ( !defined('COOKIE_DOMAIN') )
define('COOKIE_DOMAIN', false);I decided to change this to this:
if ( !defined('COOKIE_DOMAIN') )
define('COOKIE_DOMAIN', '.babyquestions101.com');
What do you know…I dumped my cookies for my site, refreshed the page, logged in, checked the cookie, and there it was, ‘.babyquestions101.com’. Now for the true test, I got rid of the ‘www’ in the address bar, hit return, and VOILA! I was still logged in. Everything was seamless. I was now the owner of a spiffy wordpress/bbpress integrated site that shared cookies across sites and subdomains. No crazy .htaccess directives, no checking and double checking every last link in my site to reflect my choice of domains.
This is the way it should be done. I’m quite surprised it was such a simple solution, and that nobody seemed to be aware of how simple the solution is. I hope this is helpful to someone else trying to share cookies across multiple subdomains.
February 22, 2007 at 6:47 pm #53878In reply to: Bozo problem
Trent Adams
MemberHave you updated to the 0.8.1 version of bbPress yet? If you upgrade, you will see the checkbox to unedit the BOZO portion as chrishajer has suggested above with screenshots. Just make sure you overwrite all the files so that you are using the most recent version of each file and then test it again with and without the Akismet turned on.
Trent
February 22, 2007 at 6:11 pm #54690In reply to: Display latest post from WP
fel64
MemberAny update on that plugin?
February 22, 2007 at 6:02 pm #51970In reply to: Latest bbPress Posts In WordPress
fel64
MemberI like this plugin a great deal, because it works so nicely right off the bat

Since my forum is in a subdomain, I had to change the code a bit (just coded in the location of my forums instead of letting it grab my blog location and adding a path). But a very minor thing to do for a very nice plugin.
February 22, 2007 at 3:01 pm #53567In reply to: Plugin: Forum Restriction
skrimpy
Memberand I fixed the latest discussion issue with the front-page-topics.php plugin (https://bbpress.org/plugins/topic/3?replies=6) and it seems to be working fine. I had one user and my sock account help me test it lol, I will work on getting everything set up this afternoon and see if it all goes well.
February 22, 2007 at 2:42 pm #53566In reply to: Plugin: Forum Restriction
skrimpy
MemberOk I seem to have it working now. I did have display-name.php installed. I think the problem was with another plugin: bb-limit-latest-discussion.php. I took that plugin down and the forum restriction plugin began to work properly.
I still get an error when I put in my display name; however it does give me access to the forum category. This afternoon I’m going to work on getting all the forum categories set up the way I want and I’ll let you know if it seems to be working right for everyone.
I like the limit discussion plugin because it makes for a cleaner forum; however having restricted access to forum categories is more important to the purpose of my boards so I’m just going to leave the limited discussion plugin off for now.
thanks David
February 22, 2007 at 4:09 am #53874In reply to: Bozo problem
Trent Adams
MemberUnless I am missing something, I think radkitten’s issue is that they are a bozo when they head back into their profile and they see a checkmark in the box. They can correct me if I am wrong. It most likely has Akismet as the problem because the user is passed through Akismet filter when you view your profile and it may keep flagging them. That is why I wanted them to set Akismet to false in the config.php to make sure that it doesn’t get passed through and test it out.
Trent
February 22, 2007 at 4:06 am #54551Trent Adams
MemberThis is something that mdawaffe is working on to be implemented in the next version of bbPress because it is almost a ‘bug’ to have certain users even tested against Akismet and the topic check with Akismet will be obsolete here soon. This will definetely be in the next major release!
Trent
February 21, 2007 at 10:44 pm #53602In reply to: integrating bbpress with wordpress
fel64
MemberHey,
I just wanted to say that I just installed bbPress in a subdomain from my forum and got the cookie syncing to work fine.
Much thank to Trent, who provided half the solution:
$bb->cookiedomain = '.lumanation.com';
$bb->cookiepath = '/';made it so that forum-generated cookies worked for the entire website. I had to go into wordpress root and edit wp-settings.php line 190:
define(COOKIE_DOMAIN, '.example.com');I do not understand how it worked previously, as it defined it simply as false (I assume that the browser will automagically substitute the domain that the user is currently on?). However, hardcoding the domain worked for me, and as long as I remember to change this in future upgrades I should be fine.
I did have troubles, especially logging out, while testing all this, and found that it’s vital to clear your cookies manually as the wordpress/bbpress logouts were clearing different cookies and you could stay logged in despite trying to log out.
But yeah, I’m all good.
Thanks guys.
February 21, 2007 at 6:32 pm #54802In reply to: Create a new Custom Page (Like WordPress)?
macwise
MemberOk, this is the solution that worked for me. I did have to add the rewrite rule, as multiviews isn’t working on my server??? (I think I’m running on php4, is that why?) So, for others who want a wal-mart type bb build
here’s a recap of what I did:I created a page in my bbpress root called contest.php. Inside of that page I put:
<?php
require('./bb-load.php');
bb_load_template( 'contest.php' );
?>I then created my contest.php page with the content I needed (the template)
The last thing I did was to put these two lines in my .htaccess file IN MY FORUM ROOT FOLDER, (not my wordpress root folder):
RewriteRule ^contest/$ /forum/contest.php [L,QSA]
RewriteRule ^contest$ /forum/contest.php [L,QSA]This basically says that myurl.com/my/forum/directory/contest (without the trailing backslash)
and myurl.com/my/forum/directory/contest (with the trailing backslash)
will both point to the contest.php page in the root forum directory.
As so1o said, this last part in .htaccess may be unnecessary if you have multiviews enabled (if your .htaccess file in your FORUM directory has this line: “Options +MultiViews”). Maybe someone else can confirm/deny this, as my configuration is different.
Hope this helps someone else who needs some custom functionality out of bbpress.
February 21, 2007 at 5:18 pm #54801In reply to: Create a new Custom Page (Like WordPress)?
so1o
Participantmacwise..
if you are ok hacking the code.. create a page contest.php in the root forum folder
add
require_once('./bb-load.php');on the top of the page. and write whatever code you want in the page.. that should create a static page with bbpress functions..as far as rewrite is concerned.. im not 100% sure but i think multiviews will automatically translate
/contest.phpto/contest/. test it and see.February 21, 2007 at 1:29 pm #54800In reply to: Create a new Custom Page (Like WordPress)?
macwise
Memberbbolman,
thanks for the idea. I would probably prefer to do this. However, I have a few bbpress functions being called in the code on the page, and though I could probably dig about and find out how to replace it with wp code, it was not the most pleasant thought. I figured I’d just throw a page up on the bbpress side, and have it resolve at a myurl.com/directory/ as is common with wordpress. I found out how to take care of this…I achieved this by adding two lines in the .htaccess file…
RewriteRule ^contest/$ /forum/contest.php [L,QSA]
RewriteRule ^contest$ /forum/contest.php [L,QSA]I’m not trying to start a battle here, but I think your response, Null, might be a bit short-sighted and aggressive. After all, if I feel my software needs a static page, that may just be what it in fact does need.
I agree with bbolman that this would probably be more efficiently handled by wordpress. However, since bbpress is still in it’s infancy, and it’s not integrated fully yet with wordpress, (this is my way of trying to sound like I’m not a completely right-brained individual), I think it’s fair to say that these decisions aren’t so cut and dried. Anyway, I appreciate the responses all the same, and will post any further findings here…
February 21, 2007 at 11:55 am #53867In reply to: Bozo problem
Angie Bergmann
MemberI’m having this same issue. I deleted the table in phpmyadmin, and decided to test it and re-edit my profile. when I edited my profile I was again set as a bozo. anything I can do to stop this?
February 21, 2007 at 10:48 am #50414In reply to: Importing from vanilla
Ziyphr
MemberThe last phpBB to Vanilla converter doesn’t work perfectly with the latest Vanilla so needs some fiddling. Both Vanilla and bbPress could do with investing in a universal converter similar to what punBB has. It’s a lot of work but will be worthwhile.
February 21, 2007 at 10:40 am #54618In reply to: Plugin: bbMenu 1.0
Null
MemberHi,
What kind of items would you like to add? Is it a plugin page like the memberlist plugin, or a link to another website, or a link to your homepage.
The last one is technically hard to do cause of the way bbPress id’s there pages. bbMenu uses this to highlight the menu item when you are on a certain page. Since your homepage proberbly doesn’t support/use this, you can add an item in the menu, but it proberbly wouldn’t highlight when you are on that page.
Hope you understand what I mean…
If you want to add an “off-link” (the link goes to wikipedia or something) you could add this into bbmenu.php (not tested):
At the bottom find:
echo '<li ' . $first . '><a ' . $current . ' href="' . $rw['page'] . '">' . $rw['item'] . '</a></li>';Underneeth it add:
echo '<li><a href="link-to-your-thingy.com">Thingy-name</a></li>';(Ignore the this forum adds them when editing this topic)
This should add a new link ad the end in your menu, but you will not see it in the admin, or be able to put it anywhere else… It will also not be highlighted when you are on that page (in case you use it to go to your homepage)
February 21, 2007 at 9:34 am #54616In reply to: Plugin: bbMenu 1.0
Null
Membersuleiman, I would like you to test this version to see if this fixes the tabel install issues.
Follow these steps:
1- Go to your myplugins folder and delete bbmenu.php (you only need to remove this bbmenu-file, leave all others in). Now go to the admin menu and check if the Menu link in it is gone.
2- With phpmyadmin, remove the bb_menu table from your database.
3- Now upload the new bbmenu.php (test)version to your myplugins folder (see below for download)
4- Go to your admin page, press the menu link and refresh the page.
Let me know
The bbMenu testversion:
-
AuthorSearch Results