Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,851 through 40,875 (of 64,516 total)
  • Author
    Search Results
  • #101483
    ortixia
    Participant

    what was the patch.diff file that was included in the patch folder, does this matter?

    #96382
    master5o1
    Participant

    Cool. So in mobile-bbpress/index.php can you:

    function page_title()

    {

    return “whatido”; // insert this line please

    #101482
    master5o1
    Participant

    Cool. So in mobile-bbpress/index.php can you:

    function page_title()

    {

    return “whatido”; // insert this line please

    #96381
    ortixia
    Participant

    sorry cross post here…

    this on my server:

    bbpress/xmlrpc.php

    is your patched version…

    I have the original bbpress version on my computer.

    and the settings are checked.

    the plugin is activated..

    #101481
    ortixia
    Participant

    sorry cross post here…

    this on my server:

    bbpress/xmlrpc.php

    is your patched version…

    I have the original bbpress version on my computer.

    and the settings are checked.

    the plugin is activated..

    #96380
    master5o1
    Participant

    mmm. I hope.

    #101480
    master5o1
    Participant

    mmm. I hope.

    #96379
    ortixia
    Participant

    my god! i hope this is somewhat helpful to you!

    #101479
    ortixia
    Participant

    my god! i hope this is somewhat helpful to you!

    #96378
    master5o1
    Participant

    I will now suggest that you have this:

    bbpress/xmlrpc.php <– stock that came from the bbpress zip.

    bbpress/xmlrpc.patched.php <– the patched version that I have.

    And then make sure xmlrpc is allowed in the settings.

    #101478
    master5o1
    Participant

    I will now suggest that you have this:

    bbpress/xmlrpc.php <– stock that came from the bbpress zip.

    bbpress/xmlrpc.patched.php <– the patched version that I have.

    And then make sure xmlrpc is allowed in the settings.

    #96377
    master5o1
    Participant

    Hmm… Ok, remove the .htaccess again. I’m working on getting links to be non-pretty so no .htaccess is needed.

    Also, I have http://dump.master5o1.com/mobi/ pointed to your bbpress install:

    Correct them if they’re wrong:

    $host = "www.terralingua.org"; //http://www.terralingua.org/bbpress/
    $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);

    Like this, it doesn’t work either :S

    #101477
    master5o1
    Participant

    Hmm… Ok, remove the .htaccess again. I’m working on getting links to be non-pretty so no .htaccess is needed.

    Also, I have http://dump.master5o1.com/mobi/ pointed to your bbpress install:

    Correct them if they’re wrong:

    $host = "www.terralingua.org"; //http://www.terralingua.org/bbpress/
    $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);

    Like this, it doesn’t work either :S

    #96376
    ortixia
    Participant

    however this may also be due to some troubles i am having with bbpress itself at the moment..

    #101476
    ortixia
    Participant

    however this may also be due to some troubles i am having with bbpress itself at the moment..

    #96375
    ortixia
    Participant

    internal server error..

    #101475
    ortixia
    Participant

    internal server error..

    #96374
    master5o1
    Participant

    http://www.terralingua.org/mobile-bbpress/index.php?t=1

    So that’s a topic on my forum. We will now try with .htaccess in there.

    I suggest this for the content of your .htaccess file:

    # 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=&reply= [L,QSA]
    RewriteRule ^new/post/([^/]+)/quote/([^/]+)/?$ /mobile-bbpress/index.php?new=post&id=&quote= [L,QSA]
    RewriteRule ^new/([^/]+)/([^/]+)/?$ /mobile-bbpress/index.php?new=&id= [L,QSA]
    RewriteRule ^forum/([^/]+)/?$ /mobile-bbpress/index.php?f= [L,QSA]
    RewriteRule ^forum/?$ /mobile-bbpress/index.php [R=302,L,QSA]
    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /mobile-bbpress/index.php?t=&page= [L,QSA]
    RewriteRule ^topic/([^/]+)/?$ /mobile-bbpress/index.php?t= [L,QSA]
    RewriteRule ^topic/?$ /mobile-bbpress/index.php [R=302,L,QSA]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^.*$ /mobile-bbpress/index.php [L]
    </IfModule>
    # END bbPress Mobile

    #101474
    master5o1
    Participant

    http://www.terralingua.org/mobile-bbpress/index.php?t=1

    So that’s a topic on my forum. We will now try with .htaccess in there.

    I suggest this for the content of your .htaccess file:

    # 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=&reply= [L,QSA]
    RewriteRule ^new/post/([^/]+)/quote/([^/]+)/?$ /mobile-bbpress/index.php?new=post&id=&quote= [L,QSA]
    RewriteRule ^new/([^/]+)/([^/]+)/?$ /mobile-bbpress/index.php?new=&id= [L,QSA]
    RewriteRule ^forum/([^/]+)/?$ /mobile-bbpress/index.php?f= [L,QSA]
    RewriteRule ^forum/?$ /mobile-bbpress/index.php [R=302,L,QSA]
    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /mobile-bbpress/index.php?t=&page= [L,QSA]
    RewriteRule ^topic/([^/]+)/?$ /mobile-bbpress/index.php?t= [L,QSA]
    RewriteRule ^topic/?$ /mobile-bbpress/index.php [R=302,L,QSA]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^.*$ /mobile-bbpress/index.php [L]
    </IfModule>
    # END bbPress Mobile

    #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
Viewing 25 results - 40,851 through 40,875 (of 64,516 total)
Skip to toolbar