Search Results for 'bbpress'
-
Search Results
-
Topic: No Stylesheet
I recently installed bbPress to localhost to experiment before I put it on a live site. Strangely, the stylesheet was being ignored. Looking at the source brought up this:
<link rel="stylesheet" href="http://localhost#support/bb-templates/kakumei/style.css" type="text/css" />
Edit: OK, I can’t seem to type a backslash here, but the # symbol in the above code snippet is actually a backslash (opposite of /)
I have no idea why the slash after localhost is backwards. It appears correctly in all other locations. For what it’s worth, here is the relevant section of my config.php file:
// If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.
// Adjust the domain and path to suit your actual URL.
// Just the domain name; no directories or path. There should be no trailing slash here.
$bb->domain = 'http://localhost'; // Example: 'http://bbpress.example.com'
// There should be both a leading and trailing slash here. '/' is fine if the site is in root.
$bb->path = '/support/'; // Example: '/forums/'Any help?
Topic: Navigation Theme
Topic: Why not stick to “theme”
…like in WordPress? The additional use of “template” will tend to divide and confuse, no?
Like how, across software, plugins are either “mods”, “modules”, “extensions” or “addons”.
Now’s the time! We can still consolidate the concept into one term.
I’m splitting hairs, I know
. bbPress is wonderful. Thanks so much to the developers. I’m a phpBB veteran (admin), and bbPress is so nice I want to cry.
Topic: Step two errors
Installation went smoothly thru step one.
When the step two page came up it displayed the following errors.
bbPress database error: [Incorrect table definition; There can only be one auto column and it must be defined as a key]
ALTER TABLE bb_users ADD COLUMN ID bigint(20) unsigned NOT NULL auto_increment
bbPress database error: [Key column 'ID' doesn't exist in table]
ALTER TABLE bb_users ADD PRIMARY KEY (ID)
1. Added index bb_users PRIMARY KEY (ID)
bbPress database error: [Unknown column 'ID' in 'where clause']
SELECT * FROM bb_users WHERE ID = 1
bbPress database error: [Unknown column 'ID' in 'where clause']
SELECT * FROM bb_users WHERE ID = 0
I checked via MyphpAdmin and have been unable to determine how to correct the errors, or even understand what they are.
Below the error list it appears as though step two partially worked, i.e. it displays a login link and user name and P-word.
However the login link returns (paraphrased) “it appears you have not installed bbpress” and a link to the install page.
The database used was one from a bbpress install of over one year ago.
I also made a second, but new, database with the same results as described above.