Fresh installation. That seemed to work and all the admin pages are active, but most links on the actual site are dead. Poked around and it appears to be a problem with permalinks — if I enter URL with the default ?page=nn syntax, they appear, but BuddyPress complains.
All conditions mentioned on the Using_Permalinks page hold:
Apache web server with the mod_rewrite module installed
In WordPress’s home directory,
The FollowSymLinks option enabled
FileInfo directives allowed (e.g. AllowOverride FileInfo
or AllowOverride All
)
An .htaccess file (if this file is missing, WordPress will try to create it when you activate “pretty” permalinks)
If you want WordPress to update the .htaccess file automatically, WordPress will need write access to the file.
Generated .htaccess file contains:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
What now?