Search Results for 'code'
-
Search Results
-
Hi all
Has anyone come across a fix for bbPress inregards to brute force attacks on passwords?
A brute force attack allows a user to attempt to login to the application with a valid user account using a dictionary of words for the password without the account being locked out.
bbPress allows multipul attempts at password entry without locking the user out. This means that someone can use a application to hack into a users account.
Has anyone made a fix/ plugin for this? Or know a way of solving this?
Help/ thoughts would be greatly appreciated!
Topic: Installing Software
I have uploaded the files to our server address, but when I go to the folder, I get errors noting the following:
__________________________________
The website declined to show this webpage
HTTP 403
Most likely causes:
•This website requires you to log in.
__________________________________
I also tried to add index.php to the end of the URL, but it returned the following:
__________________________________
The page cannot be found
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
Please try the following:
•Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
•If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
•Click the Back button to try another link.
HTTP Error 404 – File or directory not found.
Internet Information Services (IIS)
__________________________________
I’ve downloaded the files to a folder within our site. Any suggestions on what I may not be doing properly here??
Duane
xxx.com/rss is latest rss posts but how do i get latest rss topics ? without recent topic post.
i look at rss.php i found this
case 'all-topics':
if ( !$topics = get_latest_topics() )
die();
$posts = array();
foreach ($topics as $topic) {
$posts[] = bb_get_first_post($topic->topic_id);
}
$title = esc_html( sprintf( __( '%1$s » Recent Topics' ), bb_get_option( 'name' ) ) );
$link = bb_get_uri();
$link_self = bb_get_topics_rss_link();
break;so how i get that rss feed ?
thanks
Hi there,
I’m working on a bbpress 1.0.2, wordpress 3.0 beta and buddypress 1.2.3 setup, but now I’m having problems with my bbpress. I did the same setup with 2.9.2 and that worked great, but I’m guessing WordPress 3.0 changed a lot.
Here’s what happened.
I installed wordpress normally with a different username than “admin” with my own password, all went well. After that I installed buddypress as a plugin, this went like it should as well. Then when I reached the bbpress installation (step 2), I entered all the secret keys and salt as I had them in my wp-config.php and pressed next step, it said that everything was validated but then in step 3 it let me choose a keymaster username, which I find odd since 2.9.2 didn’t. I entered a username/e-mail and finished the setup without a problem. No problems encounterd in the setup was said in the setup logs. Now here’s the strange thing, it made the tables in my database (which is the database that holds wordpress as well) but it did not make a bb-config.php file, so when I went to the URL of the main forum page, it gave me an error (which is when I discovert that there was no bb-config.php). It also made “bb_users” and “bb_usermeta” in my database. I made bb-config.php myself after that with the same secret keys from wp-config and setup wp integration in bb-admin accordingly. This gave me shared cookie logins with my wordpress install (having bbpress intergration plugin installed in wordpress). But after having done all this, I cannot enter my bb-admin area anymore. I checked the files and figured out that the function bb_auth was causing me to be redirected to the main forum page.
So my question is, anyone solved this problem yet or can you help me solve it?
function bb_auth( $scheme = 'auth' ) { // Checks if a user has a valid cookie, if not redirects them to the main page
if ( !bb_validate_auth_cookie( '', $scheme ) ) {
nocache_headers();
if ( 'auth' === $scheme && !bb_is_user_logged_in() ) {
wp_redirect( bb_get_uri( 'bb-login.php', array( 're' => $_SERVER['REQUEST_URI'] ), BB_URI_CONTEXT_HEADER + BB_URI_CONTEXT_BB_USER_FORMS ) );
} else {
wp_redirect( bb_get_uri( null, null, BB_URI_CONTEXT_HEADER ) );
}
exit;
}
}