Re: WPMU 2.8.3 + BP 1.0.3 on lighttpd – Custom form fields not saved!
Ok i now have WPMU 2.8.4a + Buddypress 1.1 Beta on lighttpd running.
Profile fields can be saved but accepting group membership or friend requests always leads to a site: “Are you sure you want to do this? Please try again”
So it is the same problem as with 2.8.3 + bp1.0.3 on lighttpd server.
Must be an url-rewriting issue!?
The generated acceptance url looks like this “http://domain.com/members/admin/friends/requests/accept/1?_wpnonce=94e23dc003”
Please let’s find some lighttpd/lighty rewrite rules that work with wpmu+buddypress perfectly…
With these rules everything works fine instead of the problem i mentioned above:
server.error-handler-404 = “/index.php”
url.rewrite-once = (
“^/(.*/)?files/$” => “/index.php”,
“^/(.*/)?files/(.*)” => “/wp-content/blogs.php?file=$2”,
“^(/wp-admin/.*)” => “$1”,
“^/([_0-9a-zA-Z-]+/)?(wp-.*)” => “/$2”,
“^/([_0-9a-zA-Z-]+/)?(.*\.php)$” => “/$2”,
)
Which rules do you use with Bp (if you have lighttpd) ?