Search Results for 'bbpress'
-
AuthorSearch Results
-
November 1, 2010 at 5:46 am #101470
In 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.
November 1, 2010 at 5:41 am #35952Topic: registration disabled?
in forum Troubleshootingortixia
Participantany 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
(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
November 1, 2010 at 5:21 am #96369In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantstill 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…
November 1, 2010 at 5:21 am #101469In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantstill 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…
November 1, 2010 at 4:46 am #96368In reply to: Mobile bbPress (using XML-RPC api)
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"e=$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 MobileThe change was the RewriteBase being / to /mobile-bbpress/, etc.
November 1, 2010 at 4:46 am #101468In reply to: Mobile bbPress (using XML-RPC api)
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"e=$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 MobileThe change was the RewriteBase being / to /mobile-bbpress/, etc.
November 1, 2010 at 4:41 am #96367In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantthe 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..
November 1, 2010 at 4:41 am #101467In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participantthe 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..
November 1, 2010 at 4:35 am #96366In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantOh 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
November 1, 2010 at 4:35 am #101466In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantOh 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
November 1, 2010 at 4:32 am #96365In reply to: Mobile bbPress (using XML-RPC api)
ortixia
ParticipantSo 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”;
$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”;
$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…
November 1, 2010 at 4:32 am #101465In reply to: Mobile bbPress (using XML-RPC api)
ortixia
ParticipantSo 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”;
$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”;
$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…
November 1, 2010 at 2:44 am #96364In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantI 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:
November 1, 2010 at 2:44 am #101464In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantI 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:
November 1, 2010 at 1:40 am #97026In reply to: list of meta_key values?
master5o1
ParticipantA 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)
November 1, 2010 at 1:40 am #102126In reply to: list of meta_key values?
master5o1
ParticipantA 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)
October 31, 2010 at 10:57 pm #96363In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantPlugin: 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)
October 31, 2010 at 10:57 pm #101463In reply to: Mobile bbPress (using XML-RPC api)
master5o1
ParticipantPlugin: 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)
October 31, 2010 at 10:33 pm #96362In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participanti 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
October 31, 2010 at 10:33 pm #101462In reply to: Mobile bbPress (using XML-RPC api)
ortixia
Participanti 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
October 31, 2010 at 8:52 pm #35951Topic: list of meta_key values?
in forum Troubleshootinghinchy
MemberI’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?
October 31, 2010 at 2:11 pm #35949Topic: Which AUTH/LOGGED_IN Key to use?
in forum Installationgamersbd
MemberHi,
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?
October 31, 2010 at 12:14 pm #35942Topic: please ban this user: kiddbin
in forum TroubleshootingAbdessamad Idrissi
Memberplease 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!
October 31, 2010 at 8:17 am #85162In reply to: who is in charge of bbpress.org pages?
Abdessamad Idrissi
Memberwell 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.
October 30, 2010 at 9:24 pm #96913In reply to: annoying strange themes iteractions…
protofuse
Memberlucky 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
-
AuthorSearch Results