Search Results for '\"wordpress\"'
-
Search Results
-
Ok, I just installed two wordpress blogs that share the same users using this method:
They seem to work as far as logging in and out but i don’t believe they share the same cookies (due to the fact that i can log in/out of one and still be logged in/out of the other).
I’d like to make one forum installation to serve BOTH of these sites (having seperate forum sections for each blog)…is it possible to do the cookie integration between all three?
Hopefully that made sense and thank you to anyone who can help.
Hi, I’m trying to figure out how to display bbPress’ tag cloud from the sidebar in WordPress. I’ve googled a lot, but can’t seem to find anyone who’s done this.
I’ve hacked a temporary solution that displays the topic tags from bbpress as a list in the wordpress sidebar, but I’d really love to have the size formatting as well.
<?php
global $wpdb;
$taglist = $wpdb->get_results(“select name from bb_terms”,”ARRAY_N”);
$number_of_tags_to_show = 10;
for ($count = 0; $count < $number_of_tags_to_show; $count++)
{
if($taglist[$count][0])
{
$tag = str_replace( ” “, ” “, $taglist[$count][0]);
echo ‘
- <a href=”http://www.mysite.org/forum/tags.php?tag=’;
echo $tag;
echo ‘”>’.$tag.’
‘;
}
}
?>
Any suggestions for how to access bb_tag_heat_map from inside WordPress?
Topic: 404 for bbpress/install.php
hello;
i am trying to install bbpress on my website but i get a very early wear problem.
i dowenloaded the last version of bbpress >>unzipped >> uploaded to a new virtual directory(i use windows shared hosting) >>then i go to the path of installation >>
http://speakasp.net/asp-forum/
>> then i got a massage saying “There doesn’t seem to be a bb-config.php file. This usually means that you want to install bbPress.” >> i press go to step 1 >> then i got 404 on
http://speakasp.net/asp-forum/install.php
i am running windows server, shared hosting(so no access to iis) ,i have installed blog on http://speakasp.net/blog/
and i have one sub domain.
i really want to have this forum application , although i am an asp.net developer i am the biggest fan of wordpress and i think i will like bbpress too
but please answer me quickly as i am fighting for three days now with no results
thanks allot
Topic: User Integraion
I am having problems with bbPress-WordPressMU User Integration.
Under the WordPress Integration Settings, I have correctly set the User Role Map and User Integration Cookies like AUTH, Secure AUTH KEY, etc. according to my wp-config file.
My question is, how do I know whether I have integrated correctly? By what I know, if integrated correctly, user should be log-in from either bbPress or WordPressMU and have the same access throughout. But under Users tab, I see only my account, (admin log-in) and no one else. If I try to log-in to my bbPress using my WPMU account, it doesn’t work.
Hi folks,
I created a website for my wife ( http://www.tackypolice.com) which she, as a school teacher, is always too busy to moderate and update. Unfortunately, Joomla is a security nightmare if you have forums on it. Every update to its community builder produces 1500 attempts by russian hackers to register or worse. It seems that somehow they know immediately if an update is applied to patch something.
Fortunately, I can check these names against known forum spammers:
http://www.stopforumspam.com but it is not automatic.
I am so disgusted with this labor that I’d like to move to what seems to be more secure: WordPress. The interface would be easier to use for my wife.
But I have a few questions:
If you use a Forum on a WordPress site, are you any better off or are you going to encounter the same spam/hacker problem that will require constant manual oversight?
Is there a way to preserve and transfer your valid user database and forums and posts to the new service?
I wonder if joomla is targeted more just because it is a known security sieve…
Or would anyone recommend Drupal or something else instead for some of these issues?
After this experience, I would never recommend Joomla to anyone. What a time waster.
Thanks
Jeff
I`m not seeing these files in my word press config file(below), I have installed the integration plugin for WP and gone to configure it. I have deleted my cookies in firefox, I do see them in my BB_press config file. I upgraded my WP to 2.8.6 & have installed the 1.0.2 version of bb-press.
WordPress bbPress
AUTH_KEY <=> BB_AUTH_KEY
SECURE_AUTH_KEY <=> BB_SECURE_AUTH_KEY
LOGGED_IN_KEY <=> BB_LOGGED_IN_KEY
Also I have seen on the forum I should not use WWW in my urls, why is this & what should the format of the urls be, does this apply to all urls used in WP/BB press
Thanks
Cold in Canada
- <a href=”http://www.mysite.org/forum/tags.php?tag=’;
