Forum Replies Created
-
@ray Thanks, mate.
Oh, that’s the reason.
Is there any way that I can show all activities as a widget?
Because my WP is webzine and there’re many users using Buddypress.Does everyone have the widget as default?
Oh, I didn’t know that.
I thought there were some notification messages in .pot?
Is there available plugin?
It’s not working. I’m supposed to change default.css right?
Do I have to delete some lines after adding that?
I keep wondering why
<?php if ( bp_get_activity_count() == bp_get_activity_per_page() ) : ?>
<li class=”load-more”>
<?php _e( ‘<img src=”something something’, ‘buddypress’ ) ?> <span class=”ajax-loader”></span>
<?php endif; ?>
doesn’t work. The images shows up but the link doesn’t work. Puzzling.
I am trying to modify sign-up.php but not successful so far..
Anybody?
Hey I solved this problem.
There were two problems:
1) no .htaccess
2) Text editor in Mac
You should have .htaccess in your FTP.
Maybe it’s hidden, but if it is not, you should make one.
You can make it with a simple text editor:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
copy and paste this and save it as .htaccess and upload it your root wp folder.
Another problem for me was that I used the text editor in mac.
Its RTF format put some information in the beginning of the file which is invisible in the text editor.
That caused 500 error problem.
So I made .htacess in Dreamweaver (the memo app in Windows would be OK I guess), and uploaded it, IT WORKED.
I hope this would help for other people.
The reason my FTP did not have .htacess in the first place is beyond me.
Oops! I’m using a single WP.
What’s the .htaccess for a single WP?
Is it normal to get a 500 error with that .htaccess in a single WP?
RewriteEngine On
RewriteBase BASE/
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
Ok. I put this on .htaccess and it comes back with 500 internal server error.
Now, not only buddypress but also WordPress does not work.
The whole site is tangled with 500 error.
If I delete .htaccess, WP works but BP comes with 404 error.
Maybe that’s the problem.
I don’t have .htaccess file.
What do I have to write on the file?
Wow. I digged this problem really hard but not successful so far.
I know there are several topics regarding this issue but haven’t found definite solution.
WP 2.9.2 + BP 1.2.
WP works perfectly but every link connected with BP comes up with 404 error.
I don’t use any other plug-in.
Yes, I tried a fresh install, several times.
I’ve got exactly the same problem.
Anyone’s got a solution for this one?