Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,876 through 40,900 (of 64,515 total)
  • Author
    Search Results
  • #101470
    master5o1
    Participant

    How about this: Delete your .htaccess file in the /mobile-bbpress/ directory (or rename it to a.htaccess) and then we’ll see what happens.

    The links on the bbPress Mobile won’t work right now, but it could at least show the page.

    #35952
    ortixia
    Participant

    any idea why my bbpress site would say …

    Regisration disabled. This is a demo site. ?

    I have used the bbpress integration plug-in on my wordpress site.. the users come through fine…

    note: i have two sites:

    http://www.terralingua.org/bcdconservation

    (this is the one i have linked the database to)

    and

    http://www.terralingua.org

    (underconstruction, in ‘maintenance redirect mode’, meaning it is redirected to my old site, but i enabled registration anyways to test, (has shared users plug-in

    #96369
    ortixia
    Participant

    still same error, checking file paths, and that i have followed all your instructions properly.. as well as the way i have the other sites configured…

    #101469
    ortixia
    Participant

    still same error, checking file paths, and that i have followed all your instructions properly.. as well as the way i have the other sites configured…

    #96368
    master5o1
    Participant

    .htaccess file can be opened in any simply text editor as a regular text file. E.g.: Note pad, gedit, etc.

    Mine:

    $uri = "http://dump.master5o1.com/mobi";
    $brand = "bbPress Mobile";
    $host = "dump.master5o1.com";
    $directory = "/bbpr"; // if you bbPress is in a folder such as /forum

    // Make an object to represent our server.
    $server = new xmlrpc_client($directory.'/xmlrpc.patched.php?client='.urlencode($brand).'&client_uri='.urlencode($uri), $host, 80);

    See how I’m using the /xmlrpc.patched.php instead of modifying xmlrpc.php?

    Possibility for you:

    $uri = "http://www.terralingua.org/mobile-bbpress";
    $brand = "bbPress Mobile";
    $host = "terralingua.org";
    $directory = "/bbpress"; // if you bbPress is in a folder such as /forum

    // Make an object to represent our server.
    $server = new xmlrpc_client($directory.'/xmlrpc.php?client='.urlencode($brand).'&client_uri='.urlencode($uri), $host, 80);

    Edit your /mobile-bbpress/.htaccess so that it could look like this (maybe)

    # BEGIN bbPress Mobile
    Options -MultiViews
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /mobile-bbpress/
    RewriteRule ^new/post/([^/]+)/reply/([^/]+)/?$ /mobile-bbpress/index.php?new=post&id=$1&reply=$2 [L,QSA]
    RewriteRule ^new/post/([^/]+)/quote/([^/]+)/?$ /mobile-bbpress/index.php?new=post&id=$1&quote=$2 [L,QSA]
    RewriteRule ^new/([^/]+)/([^/]+)/?$ /mobile-bbpress/index.php?new=$1&id=$2 [L,QSA]
    RewriteRule ^forum/([^/]+)/?$ /mobile-bbpress/index.php?f=$1 [L,QSA]
    RewriteRule ^forum/?$ /mobile-bbpress/index.php [R=302,L,QSA]
    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /mobile-bbpress/index.php?t=$1&page=$2 [L,QSA]
    RewriteRule ^topic/([^/]+)/?$ /mobile-bbpress/index.php?t=$1 [L,QSA]
    RewriteRule ^topic/?$ / [R=302,L,QSA]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^.*$ /mobile-bbpress/index.php [L]
    </IfModule>

    # END bbPress Mobile

    The change was the RewriteBase being / to /mobile-bbpress/, etc.

    #101468
    master5o1
    Participant

    .htaccess file can be opened in any simply text editor as a regular text file. E.g.: Note pad, gedit, etc.

    Mine:

    $uri = "http://dump.master5o1.com/mobi";
    $brand = "bbPress Mobile";
    $host = "dump.master5o1.com";
    $directory = "/bbpr"; // if you bbPress is in a folder such as /forum

    // Make an object to represent our server.
    $server = new xmlrpc_client($directory.'/xmlrpc.patched.php?client='.urlencode($brand).'&client_uri='.urlencode($uri), $host, 80);

    See how I’m using the /xmlrpc.patched.php instead of modifying xmlrpc.php?

    Possibility for you:

    $uri = "http://www.terralingua.org/mobile-bbpress";
    $brand = "bbPress Mobile";
    $host = "terralingua.org";
    $directory = "/bbpress"; // if you bbPress is in a folder such as /forum

    // Make an object to represent our server.
    $server = new xmlrpc_client($directory.'/xmlrpc.php?client='.urlencode($brand).'&client_uri='.urlencode($uri), $host, 80);

    Edit your /mobile-bbpress/.htaccess so that it could look like this (maybe)

    # BEGIN bbPress Mobile
    Options -MultiViews
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /mobile-bbpress/
    RewriteRule ^new/post/([^/]+)/reply/([^/]+)/?$ /mobile-bbpress/index.php?new=post&id=$1&reply=$2 [L,QSA]
    RewriteRule ^new/post/([^/]+)/quote/([^/]+)/?$ /mobile-bbpress/index.php?new=post&id=$1&quote=$2 [L,QSA]
    RewriteRule ^new/([^/]+)/([^/]+)/?$ /mobile-bbpress/index.php?new=$1&id=$2 [L,QSA]
    RewriteRule ^forum/([^/]+)/?$ /mobile-bbpress/index.php?f=$1 [L,QSA]
    RewriteRule ^forum/?$ /mobile-bbpress/index.php [R=302,L,QSA]
    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /mobile-bbpress/index.php?t=$1&page=$2 [L,QSA]
    RewriteRule ^topic/([^/]+)/?$ /mobile-bbpress/index.php?t=$1 [L,QSA]
    RewriteRule ^topic/?$ / [R=302,L,QSA]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^.*$ /mobile-bbpress/index.php [L]
    </IfModule>

    # END bbPress Mobile

    The change was the RewriteBase being / to /mobile-bbpress/, etc.

    #96367
    ortixia
    Participant

    the xmlrpc is ticked, but i do not know how to open the .htaccess file

    thank you for the instantanious response!

    sorry, got it open with notepad..

    #101467
    ortixia
    Participant

    the xmlrpc is ticked, but i do not know how to open the .htaccess file

    thank you for the instantanious response!

    sorry, got it open with notepad..

    #96366
    master5o1
    Participant

    Oh yeah, .htaccess is something to edit in that mobile-bbpress folder. And tick the option in bbPress’ settings to allow the xmlrpc api* to be used.

    * /bb-admin/options-writing.php

    #101466
    master5o1
    Participant

    Oh yeah, .htaccess is something to edit in that mobile-bbpress folder. And tick the option in bbPress’ settings to allow the xmlrpc api* to be used.

    * /bb-admin/options-writing.php

    #96365
    ortixia
    Participant

    So to configure this baby..

    i have uploaded everything, including patch, activated plugin.

    at this point

    http://www.terralingua.org/mobile-bbpress/index.php

    i get the internal server error.

    of course, it has not been configured.

    i figure i work with this bit..

    $uri = “http://m.example.com&#8221;;

    $brand = “bbPress Mobile”;

    $host = “example.com”

    $directory = “”; // if you bbPress is in a folder such as /forum

    so i have tried…

    $uri = “http://m.terralingua.org&#8221;;

    $brand = “bbPress Mobile”;

    $host = “terralingua.org”

    $directory = “/bbpress”; // if you bbPress is in a folder such as /forum

    and i still the the same error message, i am assuming it is my filepaths…

    i can post this on your support forum you are setting up if you like to break it in…

    #101465
    ortixia
    Participant

    So to configure this baby..

    i have uploaded everything, including patch, activated plugin.

    at this point

    http://www.terralingua.org/mobile-bbpress/index.php

    i get the internal server error.

    of course, it has not been configured.

    i figure i work with this bit..

    $uri = “http://m.example.com&#8221;;

    $brand = “bbPress Mobile”;

    $host = “example.com”

    $directory = “”; // if you bbPress is in a folder such as /forum

    so i have tried…

    $uri = “http://m.terralingua.org&#8221;;

    $brand = “bbPress Mobile”;

    $host = “terralingua.org”

    $directory = “/bbpress”; // if you bbPress is in a folder such as /forum

    and i still the the same error message, i am assuming it is my filepaths…

    i can post this on your support forum you are setting up if you like to break it in…

    #96364
    master5o1
    Participant

    I have set up my own forum for testing and support purposes:

    http://dump.master5o1.com/bbpr/

    I have also pointed my bbPress Mobile instance to that forum:

    http://dump.master5o1.com/mobi/

    #101464
    master5o1
    Participant

    I have set up my own forum for testing and support purposes:

    http://dump.master5o1.com/bbpr/

    I have also pointed my bbPress Mobile instance to that forum:

    http://dump.master5o1.com/mobi/

    #97026
    master5o1
    Participant

    A mysql query could be helpful (phpmyadmin)

    SELECT DISTINCT meta_key, meta_value FROM bbpress_usermeta ORDER BY meta_key

    (replace bbpress_usermeta with what ever the usermeta table is in your db)

    #102126
    master5o1
    Participant

    A mysql query could be helpful (phpmyadmin)

    SELECT DISTINCT meta_key, meta_value FROM bbpress_usermeta ORDER BY meta_key

    (replace bbpress_usermeta with what ever the usermeta table is in your db)

    #96363
    master5o1
    Participant

    Plugin: example.com/bbpress/my-plugins/xml-client-info/

    Patch: example.com/bbpress/xmlrpc.php (patched) *

    Mobile: example.com/mobile-bbpress/index.php **

    * If you change the ‘xmlrpc.php’ filename in mobile-bbpress/index.php to ‘xmlrpc.patched.php’ then you can just copy xmlrpc.patched.php to your root bbpress directory instead of modifying the stock bbpress one.

    ** Mobile: m.example.com/index.php (subdomain)

    #101463
    master5o1
    Participant

    Plugin: example.com/bbpress/my-plugins/xml-client-info/

    Patch: example.com/bbpress/xmlrpc.php (patched) *

    Mobile: example.com/mobile-bbpress/index.php **

    * If you change the ‘xmlrpc.php’ filename in mobile-bbpress/index.php to ‘xmlrpc.patched.php’ then you can just copy xmlrpc.patched.php to your root bbpress directory instead of modifying the stock bbpress one.

    ** Mobile: m.example.com/index.php (subdomain)

    #96362
    ortixia
    Participant

    i have downloaded the files, and will mess around with them a bit. Just to be clear, i upload the mobile file outside of the bbpress installation, and the patches within the bbpress files?

    ie: address technically be http://www.example.com/mobile-bbpress

    rather than http://www.example.com/bbpress/mobile-bbpress

    #101462
    ortixia
    Participant

    i have downloaded the files, and will mess around with them a bit. Just to be clear, i upload the mobile file outside of the bbpress installation, and the patches within the bbpress files?

    ie: address technically be http://www.example.com/mobile-bbpress

    rather than http://www.example.com/bbpress/mobile-bbpress

    #35951
    hinchy
    Member

    I’m trying to import users from a previous forum install (non-bbPress). Where can I find a list of possible meta_key values for transferring information?

    #35949
    gamersbd
    Member

    Hi,

    I’m using WordPress 3.0.1 and bbPress 1.0.2. I installed both of them via softaculous.

    Now I’m trying to integrate bbPress with WordPress. In the bbPress configuration page, it says to input the AUTH_KEY, LOGGED_IN_KEY. It says to take the value from my wp-admin/options.php page

    However, there are different keys. The wp-admin/options.php page shows different keys while the wp-config.php file shows different keys. Which should I use?

    #35942

    please delete this user because he is spamming the bbpress forum with adds:

    http://bbpress.org/forums/profile/kiddbin

    if no forum moderator exist, I can handle this.. let’s clean out bbpress forums!

    #85162

    well i searched the profiles of admin and administrator, but couldn’t find any information to contact them!

    Recent Replies

    No more replies.

    Topics Started

    No more topics posted.

    #96913
    protofuse
    Member

    lucky you are :)

    using the striking theme from theme forest.

    but I found a big workaround: using my .org for blog + social parts.

    it means, not use bbpress but joomla + jomsocial + kakuna :)

Viewing 25 results - 40,876 through 40,900 (of 64,515 total)
Skip to toolbar