Free Web Hosting Forum
(#1 (permalink))
Old
Junior Member
sash_007 is on a distinguished road
 
Posts: 5
Join Date: May 2010
Question Buddypress not working - 06-06-2010, 07:12 AM

Hello friends,

I just installed buddypress but its not working when u click other links




here is the link http://webdesigncut.freeiz.com/
Reply With Quote
Sponsored Links
(#2 (permalink))
Old
lobrc's Avatar
Administrator
lobrc will become famous soon enough
 
Posts: 5,112
Join Date: Jan 2010
Default 06-06-2010, 08:58 AM

http://webdesigncut.freeiz.com/ works fine for me.


If you're having problems with your account, please submit a ticket from your members area.

--

Free Script Installation Service
Reply With Quote
(#3 (permalink))
Old
d3iti's Avatar
Super Moderator
d3iti is on a distinguished road
 
Posts: 6,620
Join Date: Jul 2009
Location: Spain
Default 06-06-2010, 09:59 AM

Hi,

The website link you post also works well in my web browser. You can try to clean your browser cache and then refresh the page.

Edit
Reading Wulkan91 response, I realize I had not read your message and it did not understand your problem.

You have a problem with permalink. Permalink When you change the default one, you must create one .htaccess file and add the code that tells you to work wordpress links to sections of your forum.

Besides giving you information Wulkan91, wordpress Permalink explain something about the htaccess file and you must create. http://codex.wordpress.org/Using_Permalinks


Recuerda realizar copias de seguridad de tus sitios web. Si este mensaje te ayudó puedes pulsar sobre el botón karma

Last edited by d3iti; 06-06-2010 at 11:18 AM. Reason: Correcting an error
Reply With Quote
(#4 (permalink))
Old
Wulkan91's Avatar
Senior Member
Wulkan91 is on a distinguished road
 
Posts: 143
Join Date: Nov 2009
Send a message via MSN to Wulkan91
Default 06-06-2010, 10:33 AM

I had a similar problem with my article directory.

The problem turned out to be this line in the .htaccess

RewriteRule .* index.php [QSA,L]

which I changed to

RewriteRule .* /index.php [QSA,L]


Learn how to make money online with our free guides.
~A blog containing guides and tips for everyone~
Reply With Quote
(#5 (permalink))
Old
Junior Member
sash_007 is on a distinguished road
 
Posts: 5
Join Date: May 2010
Default 06-07-2010, 08:17 AM

Quote:
Originally Posted by d3iti View Post
Hi,

The website link you post also works well in my web browser. You can try to clean your browser cache and then refresh the page.

Edit
Reading Wulkan91 response, I realize I had not read your message and it did not understand your problem.

You have a problem with permalink. Permalink When you change the default one, you must create one .htaccess file and add the code that tells you to work wordpress links to sections of your forum.

Besides giving you information Wulkan91, wordpress Permalink explain something about the htaccess file and you must create. http://codex.wordpress.org/Using_Permalinks
hello there thanks

but i already changed my permalink structure while installing buddypress

to
http://webdesigncut.freeiz.com/2010/06/sample-post/

but i didnt had any .htaccess file in my root i created it and added this

HTML Code:
RewriteRule .* /index.php [QSA,L]
to it and still i hve te problem when i click on any other link i land in this page
http://err.000webhost.com/
which i was facing before
Reply With Quote
(#6 (permalink))
Old
Bad Karma[CORE]'s Avatar
333 - only half evil
Bad Karma[CORE] is on a distinguished road
 
Posts: 6,495
Join Date: May 2008
Default 06-07-2010, 01:22 PM

Did you add
Code:
RewriteEngine On
to your .htaccess?

The original buddypress .htaccess looks like this
Code:
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>

Last edited by Bad Karma[CORE]; 06-07-2010 at 01:28 PM.
Reply With Quote
(#7 (permalink))
Old
Junior Member
sash_007 is on a distinguished road
 
Posts: 5
Join Date: May 2010
Default 06-07-2010, 10:23 PM

Quote:
Originally Posted by Bad Karma[CORE] View Post
Did you add
Code:
RewriteEngine On
to your .htaccess?

The original buddypress .htaccess looks like this
Code:
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>
hello

as you said i just created a.htaccess fuile within buddypress folder and pasted ur code now see what happens to the page http://webdesigncut.freeiz.com/ ? it breaks
Reply With Quote
(#8 (permalink))
Old
d3iti's Avatar
Super Moderator
d3iti is on a distinguished road
 
Posts: 6,620
Join Date: Jul 2009
Location: Spain
Default 06-08-2010, 06:40 AM

Hi sash_007

The content you have to be right that you run the wordpress is that you find in wordpress.

Log in as administrator within wordpress and Options-> Permalink, at the bottom you see the exact content that you must have your file .htaccess


Recuerda realizar copias de seguridad de tus sitios web. Si este mensaje te ayudó puedes pulsar sobre el botón karma
Reply With Quote
(#9 (permalink))
Old
Junior Member
sash_007 is on a distinguished road
 
Posts: 5
Join Date: May 2010
Default 06-08-2010, 07:58 AM

Quote:
Originally Posted by d3iti View Post
Hi sash_007

The content you have to be right that you run the wordpress is that you find in wordpress.

Log in as administrator within wordpress and Options-> Permalink, at the bottom you see the exact content that you must have your file .htaccess
thanks but ur method dint worked i copied the .htaccess code
Quote:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
from admin permalink and pasted in the .htaccess file in buddypress folder still when u clcik on any other link u land in this page
http://err.000webhost.com/ i guess something has gone wrong with my account
Reply With Quote
(#10 (permalink))
Old
Bad Karma[CORE]'s Avatar
333 - only half evil
Bad Karma[CORE] is on a distinguished road
 
Posts: 6,495
Join Date: May 2008
Default 06-08-2010, 09:39 AM

I just did a clean install of WordPress 2.9.2 and buddypress at http://just2test.freeiz.com/ and it works flawless. As .htaccess i used the WP default which is
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
You can check for yourself, the links work fine and do not redirect to some error page at all. Would you mind setting up a temp admin account for me to check your WP and buddypress install? Also, did you put the .htaccess file in the public_html directory and set permissions or checked permission for being 0644?
Reply With Quote
Reply

Tags
buddypress install

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.5.2
vBulletin Skin developed by: vBStyles.com