Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,876 through 40,900 (of 64,522 total)
  • Author
    Search Results
  • #96373
    ortixia
    Participant

    your up.

    #101473
    ortixia
    Participant

    your up.

    #96372
    master5o1
    Participant

    XML-RPC Fault #6: No data received from server.

    Can you please point your bbPress Mobile to my test forum:

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

    #101472
    master5o1
    Participant

    XML-RPC Fault #6: No data received from server.

    Can you please point your bbPress Mobile to my test forum:

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

    #96371
    ortixia
    Participant
    #101471
    ortixia
    Participant
    #96370
    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.

    #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)

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