Forum Replies Created
-
In reply to: Plugin: Page links for bbPress
@fel64 – You don’t have to copy the styles into another style sheet, just edit the styles in the file page-links.css
@wittmania – I’ve updated the plugin to be compatible with “Front Page Topics”, it’s more a design problem with that plugin, but I’ve worked around it.
@Null – All that has to be done is copying the three files, one php, one css, one image into the my-plugins folder. If you want to change the styles then just edit them in the CSS file. I couldn’t have made it any easier given I wanted it to be easily styled for different layouts without having to modify templates.
In reply to: Plugin: Page links for bbPressWhat version of bbPress are you using. I have to admit that I haven’t tested against 0.8.1, only against the latest 1.0 alpha
I think I know what went wrong though. Download and try again, I’ve updated the version to 1.0.1
The links are text-only. If you don’t want the images/styles just remove them from the CSS file.
In reply to: Plugin: Page links for bbPressSo that’s the other place I saw it. I’ve updated that ticket.
In reply to: checking a email address comes from a domainYou inspired a quick plugin, that I then turned into a full plugin…
In reply to: Access to last page of TopicIn reply to: I think I need a fix …Some absolutely positioned and sized anchor tags over those buttons would do the trick for navigation.
In reply to: links to forums brokenAre you using mod_rewrite or multiviews?
Post your .htaccess file here and maybe we can find the problem.
In reply to: Patch: Categories for version 0.8There are lots of variables to take into account before I can answer your questions. You need to find out more about this stuff yourself. Unfortunately I don’t have the time to coach you through the whole thing. The short answer is that if you are using Windows locally and don’t have SSH (command line) access to your server, then you are probably out of luck.
In reply to: Slug based permalinksNo there is no permalink configuration in the admin area, and plans for that permalink functionality have been dropped for several reasons.
You have three choices for $bb->mod_rewrite:
- false = normal querystring based links
- true = permalinks based on ID
- ‘slugs’ = permalinks based on item names/titles
In reply to: Patch: Categories for version 0.8It would be easier with command line access, or do it locally then upload the result.
In reply to: Slug based permalinksIt’s in the core code, no need to patch. Just grab the very latest version via Subversion.
In reply to: Patch: Categories for version 0.8I’d recommend you don’t use this patch unless you want to have to change your forums again when 1.0 is released.
The way this patch works will be superseded in version 1.0
In reply to: bbMenu 1.1 programming problem (advanced!)Include the following at the top of the new file:
require_once('../bb-load.php');
You may have to adjust the path a little to correctly reference the file.
That should give you access to the whole API, including the $bbdb object for manipulating the database.
In reply to: What happened?Turn off permalinks in the config.php file
$bb->mod_rewrite = false
Or add the appropriate entries to your .htaccess file as described here
In reply to: bbMenu 1.1 programming problem (advanced!)The errors stem from the fact that plugins aren’t designed to be called in isolation. They are included into the rest of bbPress when they are loaded. Meaning that if you try to run the plugin in isolation, then you won’t have access to the whole bbPress API (including the add_action() function and all the bbdb class).
If you take a look at how tag addition works in the core, you will probably get an insight into the best way to do this.
In reply to: HTTP_AUTH plugin/how to ?New version added which seems to work. The whole implementation is a little unsavory though – passing HTTP auth to a PHP cookie – feels like double handling.
http://www.network.net.au/bbpress/plugins/http/http-authentication.latest.zip
Someone who cared a little more about how this works would bother to replace all the cookie based auth completely.
I’ll add this to the plugin repository too.
In reply to: bbPress on mac osxCheck your apache error log for PHP errors using tail.
tail -f /var/log/httpd/error_log
On the command line.
In reply to: HTTP_AUTH plugin/how to ?OK, I just tested this, and it deffinately doesn’t work like it should, you can login using http_auth and then login again with the same user/password and it works.
I have to cut out that middle-man in the process.
In reply to: HTTP_AUTH plugin/how to ?I’ve hacked together a first draft of “HTTP authentication for bbPress” using the LDAP authentication plugin as a model.
This is completely untested, but the basic premise is that you set up HTTP authentication on the entire bbPress install. The plugin handles the rest. You will need to install and turn on the plugin before setting up HTTP_AUTH though.
Download from here.
In reply to: web designingMe 1 – Akismet 0
In reply to: web designingDear Sirs,
My name is Umbutu Kerali and I am Collections Manager at Central Development Bank of Mgboto, Nigeria. Please excuse the unusual way of contacting, but this is a matter of great secrecy invovling one sum of one-zillion united states dollars (US$10000000000000000000000000000000000)…..
In reply to: Problem with the Support Forum pluginRTFM
; )
In reply to: Problem with the Support Forum pluginI hate to ask, but did you turn on the options to show icons in the admin pages?
You need to be logged in as a keymaster, then go to “Site Management” -> “Support Forum”.
Also make sure you have the latest version of the plugin.
Otherwise, do you get any errors in your logs that might help us?
In reply to: Patch: Categories for version 0.8There was a category table added and a category id column added to the forums table. You want to remove these when the time comes to upgrade.
In reply to: SVN procedure for checking out bbPress?I’m not sure what an SVN checkout over the top of an existing installation will do. Considering how clever SVN is, I’m guessing that it will just work and create a working SVN copy.
Check the very helpful subversion book http://svnbook.red-bean.com/