Search Results for 'bbpress'
-
AuthorSearch Results
-
November 1, 2010 at 6:48 am #96382
In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantCool. So in mobile-bbpress/index.php can you:
function page_title()
{
return “whatido”; // insert this line please
November 1, 2010 at 6:48 am #101482In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantCool. So in mobile-bbpress/index.php can you:
function page_title()
{
return “whatido”; // insert this line please
November 1, 2010 at 6:45 am #96381In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantsorry 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..
November 1, 2010 at 6:45 am #101481In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantsorry 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..
November 1, 2010 at 6:37 am #96380In reply to: Mobile bbPress (using XML-RPC api)
master5o1
Participantmmm. I hope.
November 1, 2010 at 6:37 am #101480In reply to: Mobile bbPress (using XML-RPC api)
master5o1
Participantmmm. I hope.
November 1, 2010 at 6:36 am #96379In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantmy god! i hope this is somewhat helpful to you!
November 1, 2010 at 6:36 am #101479In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantmy god! i hope this is somewhat helpful to you!
November 1, 2010 at 6:36 am #96378In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantI 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.
November 1, 2010 at 6:36 am #101478In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantI 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.
November 1, 2010 at 6:28 am #96377In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantHmm… 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
November 1, 2010 at 6:28 am #101477In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantHmm… 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
November 1, 2010 at 6:27 am #96376In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participanthowever this may also be due to some troubles i am having with bbpress itself at the moment..
November 1, 2010 at 6:27 am #101476In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participanthowever this may also be due to some troubles i am having with bbpress itself at the moment..
November 1, 2010 at 6:25 am #96375In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantinternal server error..
November 1, 2010 at 6:25 am #101475In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantinternal server error..
November 1, 2010 at 6:20 am #96374In reply to: Mobile bbPress (using XML-RPC api)
master5o1
Participanthttp://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="e= [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 MobileNovember 1, 2010 at 6:20 am #101474In reply to: Mobile bbPress (using XML-RPC api)
master5o1
Participanthttp://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="e= [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 MobileNovember 1, 2010 at 6:15 am #96373In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantyour up.
November 1, 2010 at 6:15 am #101473In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantyour up.
November 1, 2010 at 6:09 am #96372In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantXML-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);November 1, 2010 at 6:09 am #101472In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantXML-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);November 1, 2010 at 5:55 am #96371In reply to: Mobile bbPress (using XML-RPC api)
ortixia
ParticipantNovember 1, 2010 at 5:55 am #101471In reply to: Mobile bbPress (using XML-RPC api)
ortixia
ParticipantNovember 1, 2010 at 5:46 am #96370In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantHow 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.
-
AuthorSearch Results