Search Results for 'bbpress'
-
AuthorSearch Results
-
November 1, 2010 at 4:46 am #96368
In 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 #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: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: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: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: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 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 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 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 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 #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: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: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 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 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 #102013In 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
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
October 30, 2010 at 9:09 pm #102091In reply to: oh dear! bbpress already installed
bbailie
Memberplanetmosh,
Thank You! for the tip getting it to install. Worked perfectly.
However, my-plugins and my-templates are still owned by apache and restricted so that I cannot do anything with them.
Using FileZilla, and it has been a decent ftp program, and it is freely available too. But no software can get me past not being the Owner of the file, though, to change the permissions on it. I don’t know how apache got ownership in the first place.
Any additional help would be appreciated!
October 30, 2010 at 9:09 pm #96991In reply to: oh dear! bbpress already installed
bbailie
Memberplanetmosh,
Thank You! for the tip getting it to install. Worked perfectly.
However, my-plugins and my-templates are still owned by apache and restricted so that I cannot do anything with them.
Using FileZilla, and it has been a decent ftp program, and it is freely available too. But no software can get me past not being the Owner of the file, though, to change the permissions on it. I don’t know how apache got ownership in the first place.
Any additional help would be appreciated!
October 30, 2010 at 8:21 pm #85161In reply to: who is in charge of bbpress.org pages?
jackspin007
Memberthe in charge of bbpress.org pages is administrator.
October 30, 2010 at 9:08 am #102090In reply to: oh dear! bbpress already installed
planetmosh
Memberyou installation is not looking at the files/folders that you have installed, its looking at the database.
open your database in your plesk interface
delete/drop any tables that start with bb_
now you should be able to install bbpress.
I would also recommend using winSCP for file manipulation rather than using the limited plesk file manager.
hope this helps
-
AuthorSearch Results