Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 25,451 through 25,475 (of 26,679 total)
  • Author
    Search Results
  • #49934

    In reply to: En español

    ganzua
    Member

    “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 D:wampwwwwordpressbbpressbb-includesstreams.php on line 163

    Trent Adams
    Member

    Do you have the bbPress and WP integration plugin for WP?

    https://wordpress.org/extend/plugins/bbpress-integration/

    Trent

    fel64
    Member

    Pop 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.

    gjaw88
    Member

    I’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

    #49933

    In reply to: En español

    Covi
    Member

    Tengo 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 ;)

    #57960
    gjaw88
    Member

    Here 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&#8217;; // Example: ‘http://bbpress.example.com&#8217;

    // 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&#8217;; // WordPress – Options->General: Blog address (URL) // No trailing slash. Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ‘http://www.saladtossers.org/wp&#8217;; // WordPress – Options->General: WordPress address (URL) // No trailing slash. Example: ‘http://example.com&#8217;

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?> ‘code’

    #57959
    Trent Adams
    Member

    Put 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

    #57958
    gjaw88
    Member

    I have both bbpress and wordpress in the same database. What else can I do??

    #1922
    gjaw88
    Member

    http://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

    #56700

    In reply to: Plugin: Avatar Upload

    fel64
    Member

    You 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.

    #57881

    In reply to: Changing the header

    LwEEs
    Member

    Back to LuMen Home Page

    Same one I use in the footer, the problem is that my theme header is not a normal header found across wordpress installations. Any clue?

    #56521

    In reply to: Strut Your bbPress!

    c00l2sv
    Member

    Here’s another forum on bbPress. The rest of website is WordPress.

    Thanks guys!

    http://www.primariamedias.ro/forum/

    #55374
    Sam Bauers
    Participant

    It 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.

    #55373
    drift82
    Member

    I 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.

    #55372
    djuggler
    Member

    It 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.

    #1905
    LwEEs
    Member

    I’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?

    #56520

    In reply to: Strut Your bbPress!

    inrepose
    Member

    Very simple forum install for a UK hobby site here: http://www.rottenlead.com/wordpress

    #57488
    Trent Adams
    Member

    Asking 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

    #56980
    kreestal
    Member

    Hi 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!

    #55833
    chrishajer
    Participant
    #57866
    chrishajer
    Participant

    How about this for including the latest bbPress posts in your WordPress sidebar?

    https://bbpress.org/forums/topic/359?replies=30

    #56979
    Bloggsbe
    Member

    Hi!

    If you use the avatar plugin from Suleiman (here) on a WPMU install, you can use this plugin. I’m using it with bbpress 0.8.1 and the Crystal theme. Instructions in the file.

    HTH

    Regards,

    Rune

    #57856
    LwEEs
    Member

    I 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.

    #55832
    bbx
    Member

    I 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

    #57857

    In reply to: Help with SMTP

    gdelossantos
    Member

    I have resolved this issue, found this http://en.72pines.org/wordpress-mu/

Viewing 25 results - 25,451 through 25,475 (of 26,679 total)
Skip to toolbar