Search Results for '"wordpress'
-
AuthorSearch Results
-
June 4, 2007 at 1:08 am #49934
In reply to: En español
ganzuaMember“Ahora mismo pienso que la solución real es incluir la traducción del foro en el archivo .mo de WordPress.”
-> Hola! ¿Como se configura bbpress para que lea el archivo .mo de wordpress?
Esto;
define(‘BBLANG’, ‘es_ES’);
en el config.php me da este error;
Fatal error: Cannot redeclare class CachedFileReader in wampwwwwordpressbbpressbb-includesstreams.php on line 163
June 4, 2007 at 12:37 am #57967Trent AdamsMemberDo you have the bbPress and WP integration plugin for WP?
https://wordpress.org/extend/plugins/bbpress-integration/
Trent
June 3, 2007 at 10:36 pm #57966fel64MemberPop this in at the top of your register.php file:
header("Location: http://www.example.com/"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;In the long term it might be good to solve why bb users don’t work with WP, but I can’t think of anything off the top of my head.
June 3, 2007 at 8:59 pm #1924gjaw88MemberI’m not a php coder yet and am learning. How would I go about making when I click “register” on bbpress to shoot it to my wordpress registration instead?
The reason why is because I have it setup so that WP users can also log on the forum, but bbpress signups don’t work with WP.
Thanks
June 3, 2007 at 7:24 pm #49933In reply to: En español
CoviMemberTengo un problema con la integración con WordPress… por cierto, hola, creo que es la primera vez que escribo ^^
Pues eso, a ver si a alguién más le ha pasado, más que la integración el problema es sin intentamos usar las funciones de WordPress incluyendo
wp-blog-header
y además traducimos a cualquier idioma, por eso creo que la mayoría de la comunidad no se habrá dado cuenta ya que, quizás, no especifican un lenguaje (BBLANG).Lo que ocurre es:
Al especificar la variable BBLANG se activa la traducción incluyendo algunos archivos desde bb-settings.php:
if ( defined('BBLANG') && '' != constant('BBLANG') ) { // Covi:Don't include these when WP TRANSLATION is running: BBLANG defined
include_once(BBPATH . BBINC . 'streams.php');
include_once(BBPATH . BBINC . 'gettext.php');
}
if ( !( defined('DB_NAME') || defined('WP_BB') && WP_BB ) ) { // Don't include these when WP is running.
require( BBPATH . BBINC . 'kses.php');
require( BBPATH . BBINC . 'l10n.php');
}Estos archivos también los incluye WordPress y provoca un error (funciones repetidas).
La solución, como indica el archivo, aunque no en la traducción sobre BBLANG, es no incluirlos y lo soluciona en parte pero nos quedamos sin traducción porque usa el .mo de WordPress creo.
Ahora mismo pienso que la solución real es incluir la traducción del foro en el archivo .mo de WordPress.
Un saludo
June 3, 2007 at 7:23 pm #57960In reply to: Integration won’t work??
gjaw88MemberHere is the site. NO I’m not using this for my site, this is just a test and is what domain name my friend offered haha. Nothing is inappropiate on this site, it is just for testing purposes before I buy my own domain.
http://www.saladtossers.org/wp/bbpress/
‘code'<?php
// ** MySQL settings ** //
define(‘BBDB_NAME’, ‘mike_i126wor’); // The name of the database
define(‘BBDB_USER’, ‘mike_i126wor’); // Your MySQL username
define(‘BBDB_PASSWORD’, passwordhere’); // …and password
define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
// Change the prefix if you want to have multiple forums in a single database.
$bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!
// 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://saladtossers.org’; // 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 = ‘/bbpress/’; // Example: ‘/forums/’
// What are you going to call me?
$bb->name = ‘test site’;
// This must be set before running the install script.
$bb->admin_email = ’email@gmail.com’;
// Set to true if you want pretty permalinks.
$bb->mod_rewrite = false;
// The number of topics that show on each page.
$bb->page_topics = 30;
// A user can edit a post for this many minutes after submitting.
$bb->edit_lock = 60;
// Your timezone offset. Example: -7 for Pacific Daylight Time.
$bb->gmt_offset = 0;
// Change this to localize bbPress. A corresponding MO file for the
// chosen language must be installed to bb-includes/languages.
// For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’
// to enable German language support.
define(‘BBLANG’, ”);
// Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage
// of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at
// http://wordpress.com/api-keys/
$bb->akismet_key = ”; // Example: ‘0123456789ab’
// The rest is only useful if you are integrating bbPress with WordPress.
// If you’re not, just leave the rest as it is.
$bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;
$bb->wp_home = ‘http://www.saladtossers.org/wp’; // WordPress – Options->General: Blog address (URL) // No trailing slash. Example: ‘http://example.com’
$bb->wp_siteurl = ‘http://www.saladtossers.org/wp’; // WordPress – Options->General: WordPress address (URL) // No trailing slash. Example: ‘http://example.com’
/* Stop editing */
if ( !defined(‘BBPATH’) )
define(‘BBPATH’, dirname(__FILE__) . ‘/’ );
require_once( BBPATH . ‘bb-settings.php’ );
?> ‘code’
June 3, 2007 at 1:01 am #57959In reply to: Integration won’t work??
Trent AdamsMemberPut up a copy of your config.php with the integration portions in it. Tell us what your wordpress database prefix is and we can try and work this out. Just saying it doesn’t work will not help us help you. We need details of what you have tried and what your have entered. Just make sure you don’t put any password or other information in.
For reference, my WP integrated config.php has these entries:
$bb->wp_table_prefix = 'wp_'; // WordPress table prefix. Example: 'wp_';
$bb->wp_home = 'http://trentadams.com'; // WordPress - Options->General: Blog address (URL) // No trailing slash. Example: 'http://example.com'
$bb->wp_siteurl = 'http://trentadams.com'; // WordPress - Options->General: WordPress address (URL) // No trailing slash. Example: 'http://example.com'It is important to have bbPress in the same database as wordpress. As well, give us your URL to check this out for ourselves and try and see if we can help.
Trent
June 3, 2007 at 1:00 am #57958In reply to: Integration won’t work??
gjaw88MemberI have both bbpress and wordpress in the same database. What else can I do??
June 2, 2007 at 11:57 pm #1922Topic: Integration won’t work??
in forum Pluginsgjaw88Memberhttp://bbpress.org/documentation/integration-with-wordpress/
Reference to this, I have set my pointers to my wp directory and it doesn’t take anything from it.
Is this the correct way for this part??
$bb->wp_table_prefix = ‘wp_table_prefix’; // WordPress table prefix. Example: ‘wp_’;
It’s very frustrating that this two great packages can’t be implemented easier.
Thanks
May 31, 2007 at 9:10 pm #56700In reply to: Plugin: Avatar Upload
fel64MemberYou need to change the permissions of the avatars folder I think.
http://faq.wordpress.net/view.php?p=54
The avatars cross the next poster’s names because they’re that’s how the CSS is set up. You could change the HTML and CSS structure, or if that’s perhaps too much you could open kakumei’s style.css, find
#thread li { ... }
and add this to it:min-height: 120px;
That should make sure the post box is big enough that the next post box doesn’t interfere with the avatar. Change the number if you want it differently.
May 31, 2007 at 12:18 pm #57881In reply to: Changing the header
LwEEsMemberSame one I use in the footer, the problem is that my theme header is not a normal header found across wordpress installations. Any clue?
May 31, 2007 at 6:35 am #56521In reply to: Strut Your bbPress!
c00l2svMemberHere’s another forum on bbPress. The rest of website is WordPress.
Thanks guys!
May 30, 2007 at 3:32 pm #55374In reply to: Pretty Permalinks Not Working
Sam BauersParticipantIt is important to note that if your bbpress install is in a subdirectory of your wordpress install, then the directives in your wordpress .htaccess file also apply to your bbpress directory. So you need to check to make sure there isn’t some mod_rewrite rule in the base .htaccess file munging up your later rewrites in the bbpress .htaccess file.
I suggest anyone trying to attempt enabling mod_rewrite features be familiar with how it works. Apache has very good documentation for the mod_rewrite module.
There is little or no difference between the way bbPress uses mod_rewrite and wordpress uses mod_rewrite.
It is all down to your configuration and sometimes is impossible because of your host. I am happy to attempt to help anyone who wants to send me their .htaccess files and a detailed description of their setup. I will need full path names and urls and the site structure you are trying to achieve. Send to the username “sam” at the domain name “viveka * net * au”. I will send you back what should be a working set of files and will also attempt to report the resolution here.
May 30, 2007 at 2:26 pm #55373In reply to: Pretty Permalinks Not Working
drift82MemberI agree with djuggler. I have the same configuration as serimu on my self-hosted server. a .htaccess file at the root (/) for wordpress and a .htaccess file at /forum/ for bbpress. I have AllowOverride All enabled. Yet still no luck. I have had absolutely no problems with my 30+ installs of WordPress. But I’ve had no luck getting permalinks in BBPress working.
This is the only thing holding me back from using BBPress and I’m getting pretty sick of running XDForum.
May 30, 2007 at 1:32 pm #55372In reply to: Pretty Permalinks Not Working
djugglerMemberIt is confounding that so many people have difficulty with the pretty permalinks.
In my case, WordPress works great. It’s .htaccess rewrites appropriately. On the same server Drupal uses mod_rewrite successfully and without effort. But I have spent hours upon hours trying different configurations and tricks to get BBPress to have pretty urls and it just won’t work. I do not use GoDaddy. I use 1and1 ( http://www.1and1.com/?k_id=6598272 )
For so many people to have the same experience and say “wordpress permalinks work but bbpress’ don’t” just cries that there is something flawed in BBPress’ approach to clean urls.
May 30, 2007 at 12:13 pm #1905Topic: Changing the header
in forum TroubleshootingLwEEsMemberI’m trying to add things to the header but is not working out for me, I have modified headers in the past on wordpress, but bbpress header is different. Everytime I try I get an error. I just want to add a shortcut back to my homepage but html is not working for a simple shortcut on bbpress header. Can anyone help me on this?
May 28, 2007 at 5:52 pm #56520In reply to: Strut Your bbPress!
inreposeMemberVery simple forum install for a UK hobby site here: http://www.rottenlead.com/wordpress
May 28, 2007 at 5:15 pm #57488In reply to: Paid Help, custom permalinks structure
Trent AdamsMemberAsking for paid support in a support forum is a no-no. I can suggest that you leave your contact information and then I can close the thread and/or drop a line over at the paid support list at:
https://codex.wordpress.org/Mailing_Lists#Professional
I know that is WP list, but there are people that might help there as well.
Trent
May 28, 2007 at 1:48 pm #56980In reply to: bbpress / wordpress avatar?
kreestalMemberHi guys,
“Small” problem: when I try to activate Vili’s plugin in my WordPress plugin admin pannel, I get the following message:
“The plugin could not be activated for it’s causing a fatal error.”
:'( Any clue what the problem might be?
I’m using Wordpres 2.2 and BBpress 0.8.1, French install.
I didn’t change anything in Vili’s PHP, but maybe I should have?
I’m not programmer, so please help me Thank you so much in advance!
May 28, 2007 at 4:33 am #55833In reply to: display latest posts from someone elses wordpress?
May 28, 2007 at 4:33 am #57866In reply to: Show Latest Discussions on WP HomePage
chrishajerParticipantHow about this for including the latest bbPress posts in your WordPress sidebar?
May 28, 2007 at 12:23 am #56979In reply to: bbpress / wordpress avatar?
BloggsbeMemberMay 27, 2007 at 5:57 pm #57856In reply to: Yet another WP – BB integration question
LwEEsMemberI have been hacking my wordpress files for months and for some reason bbpress files do not work the same. The bbpress header has no information, it looks like points to somewhere, does anyone know where to?
Thanks.
May 27, 2007 at 5:51 pm #55832In reply to: display latest posts from someone elses wordpress?
bbxMemberI have a question related to this.
If I can use a RSS feed on my WP Home Page, is there maybe a “Latest Discussions” feed from my bbPress forum that I could use?
bbx
May 27, 2007 at 5:51 pm #57857In reply to: Help with SMTP
gdelossantosMemberI have resolved this issue, found this http://en.72pines.org/wordpress-mu/
-
AuthorSearch Results