Forum Replies Created
-
In reply to: bbSync
Thanks. I now get this error.
Fatal error: Cannot redeclare get_tag() (previously declared in /xxxx/xxxxxx/xxxx/wp-includes/category.php:155) in /xxxx/xxxxxx/xxxx/community/bb-includes/functions.php on line 1608
In reply to: bbSyncThat didn’t seem to work too well for me. I got a heap of fatal errors along the lines of
Warning: require(/xxxx/xxxx/public_html/) [function.require]: failed to open stream: No such file or directory in /home/xxxx/xxxx/community/config.php on line 49
In reply to: bbSyncI have this error after upgrading to latest wpmu.
Fatal error: Cannot redeclare update_user_status() (previously declared in /xxx/xxx/public_html/wp-admin/includes/mu.php:303) in /xxx/xxx/public_html/community/bb-includes/functions.php on line 817
what does it mean?
I get it when publishing and/or editing a post from wp-admin and I also get it when using the bbsync functions on the profile tab.
In reply to: bbSyncare there any issues with bbsync and WPMU?
In reply to: wpmu/bbpress logins work, forums don’t!Thanks guys.
Permalinks set to off in config fixes the problem so I better have a better look at how to set that up properly.
In reply to: wpmu/bbpress logins work, forums don’t!I have .htaccess in my community directory for permalinks that says:
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteBase /community/
RewriteRule ^community/([0-9]+)/page/([0-9]+)$ /community/forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^community/([0-9]+)$ /community/forum.php?id=$1 [L,QSA]
RewriteRule ^topic/([0-9]+)/page/([0-9]+)$ /community/topic.php?id=$1&page=$2 [L,QSA]
RewriteRule ^topic/([0-9]+)$ /community/topic.php?id=$1 [L,QSA]
RewriteRule ^tags/(.+)/page/([0-9]+)$ /community/tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/(.+)/?$ /community/tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ /community/tags.php [L,QSA]
RewriteRule ^profile/([0-9]+)/page/([0-9]+)$ /community/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([0-9]+)/([a-z]+)$ /community/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([0-9]+)/([a-z]+)/page/([0-9]+)$ /community/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([0-9]+)$ /community/profile.php?id=$1 [L,QSA]
RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /community/view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([a-z-]+)$ /community/view.php?view=$1 [L,QSA]
RewriteRule ^rss/$ /community/rss.php [L,QSA]
RewriteRule ^rss/community/([0-9]+)$ /community/rss.php?community=$1 [L,QSA]
RewriteRule ^rss/topic/([0-9]+)$ /community/rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([a-z]+)$ /community/rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/profile/([0-9]+)$ /community/rss.php?profile=$1 [L,QSA]
</ifmodule>
I have .htaccess in my root that says:
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [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]
and .htaccess.dist in root that says
RewriteEngine On
RewriteBase BASE/
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [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]