Forum Replies Created
-
I have resolved this problem if anyone else is having it:
These two lones were not correct at the top of bpdev-xml-rpc-classes.php, make sure it looks like this and you should be fine!
require_once( ‘/yourpath/wp-includes/class-IXR.php’ );
require_once( ‘/yourpath/wp-includes/plugin.php’ );
Now I can really get stuck in to the iPhone app, yay!
Wow what a fantastic idea, this could be a killer feature!
Hey guys,
Thanks for your feedback, this looks like exactly what I was after, I’ll try and put this together as a plugin as I think it could be pretty cool.
James
Thanks for your feedback, I have added this issue to Trac, so hopefully we will be able to find a resolution, I would like to get a beta preview out by the new year if possible.
Hi,
I’m not really sure of what the access to globals is, however from what I can see it would appear that APPSPATH and WPINC components are not being rendered and are simply being printed.
Here is the page where the error is happening if that helps:
http://yeahetc.com/wp-content/plugins/bpdev-xmlrpc/bpdev-xmlrpc.php
James
The plan is to make it pretty similar to the facebook app but on a more basic level.
There will be three primary tabs, newsfeed, messaging/notifications and friends.
It’s very frustrating though as I can’t get properly started until I resolve this XMLRPC error, still can’t figure it out, very frustrating!
Hey,
Yes I’ve located the file it seems to be looking in the current code:
require_once( ABSPATH . WPINC . ‘/class-IXR.php’ );
I tried changing it to:
require_once( ‘http://yeahetc.com/wp-includes/class-IXR.php’ );
but that stopped the whole site from functioning, just appearing blank, the file definitely is there in that folder. I can’t figure it out!
Hey,
Yeah I have looked in to Android, my priority is with the iPhone for the moment though, I think it would be really cool to get a customiseable client up, using some of the newly released Facebook three20 components from the facebook iPhone app.
I have got connection functioning to the standard xml-rpc.php file but still having problems with that error on the buddypress one, I hope I can figure this out soon.
James
Hi, this is exactly what I have been looking for! Thanks very much!
Hi Jeff,
Thanks for that, I suspected I might have to create a new table. I will download the skeleton module and have a play around and see what I can come up with.
I think I will focus on making it only log registered users, as I think there are other more simple ways of simply calculating page impressions, I think I’d also have to work out a way to clear entries more than a month old to prevent it becoming unmanagable, I will have to look in to this further!
James
Hi,
I’m currently running on WordPress MU 2.8.5.2 with BuddyPress 1.1.2.
James
Hi again everyone, thanks for all your pointers. I eventually ended up spending all day yesterday writing it by myself which took a very long tme! Here is the code in case it might help anyone else, it might not be prefect, I also had to do some editing in the userbar.php file to make it format how I wanted.
/*** User Navigation Bar *****************************************************/
#userbar {
width: 970px;
background: #FFFFFF;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
text-decoration: none;
padding: 3px 5px 5px 5px;
margin-bottom:5px;
height: 33px;
}
#userbar a { text-decoration: none; }
#userbar ul li {
margin-right: 0;
list-style: none;
float:left;
}
#userbar h3 {
font: normal 1em "Arial", Times, serif;
text-align: left;
padding: 0px 0 0px 0;
}
#userbar p.avatar {
text-align: left !important;
float: left;
margin-right: 1px;
}
#userbar img.avatar {
margin: 0;
width: 30px;
height: 30px;
float: none;
}
#userbar p#login-text {
margin-top:7px;
float: left;
vertical-align: middle
}
#userbar p#stuff {
margin-top:7px;
padding: 10px;
float: right;
}
#userbar form input#userbar_rememberme { width: auto; }
#userbar form input#wp-submit { width: auto; }
#userbar ul#bp-nav {
z-index: 0;
}
#userbar ul#bp-nav li.current {
background-color:#DDDDDD;
}
#userbar ul#bp-nav li a {
font-size:small;
color: #555;
padding: 0.55em 3em 0.55em 0;
display: block;
text-align: right;
margin-right: 1px;
font-family: Arial !important;
letter-spacing:-1px;
margin-left: 17px;
}
#userbar ul#bp-nav li.current a {
font-size:small;
margin-left: 17px;
color: #D6007F;
font-weight:bold;
font-family: Arial !important;
letter-spacing:-1px;
}
li a#user-profile, li a#my-profile {
background: url(../images/profile_bullet.gif) 67% 52% no-repeat;
}
li a#user-messages, li a#my-messages {
background: url(../images/messages_bullet.gif) 85% 52% no-repeat;
}
li a#user-blogs, li a#my-blogs {
background: url(../images/blog_bullet.gif) 64% 52% no-repeat;
}
li a#user-friends, li a#my-friends {
background: url(../images/friends_bullet.gif) 68% 52% no-repeat;
}
li a#user-groups, li a#my-groups {
background: url(../images/groups_bullet.gif) 70% 52% no-repeat;
}
li a#user-wire, li a#my-wire {
background: url(../images/wire_bullet.gif) 70% 52% no-repeat;
}
li a#user-activity, li a#my-activity {
background: url(../images/activity_bullet.gif) 70% 52% no-repeat;
}
li a#user-settings, li a#my-settings {
background: url(../images/settings_bullet.gif) 70% 52% no-repeat;
}
li a#wp-logout {
background: url(../images/logout_bullet.gif) 70% 52% no-repeat;
}
li a#group-home, li a#group-wire, li a#group-photos, li a#group-forum,
li a#group-members, li a#group-invite, li a#group-leave, li a#group-admin
li a#request-membership, li a#group-admin {
background: url(../images/groups_bullet.gif) 70% 52% no-repeat;
}
li a#group-forum {
background: url(../images/forum_bullet.gif) 70% 52% no-repeat;
}
li a#group-members {
background: url(../images/friends_bullet.gif) 70% 52% no-repeat;
}
li a#group-invite {
background: url(../images/invite_bullet.gif) 70% 52% no-repeat;
}
li a#group-leave {
background: url(../images/cross_bullet.gif) 70% 52% no-repeat;
}
li a#group-wire {
background: url(../images/wire_bullet.gif) 70% 52% no-repeat;
}
li a#group-admin {
background: url(../images/blogadmin_icon.gif) 70% 52% no-repeat;
}
li a#request-membership {
background: url(../images/request_bullet.gif) 70% 25% no-repeat;
}James
Hey,
Thanks for all your help, hopefully if I can get all this code together and working I will post it as I’m sure people will come accross this, I’m not that great at CSS yet though!
Thanks for the link I like your site!
Hey,
Thanks again for the advice, I’m having still having some issues around this it is quite tricky, here is a picture of how it is rendering now.
http://i34.tinypic.com/wklono.jpg
Is there any release of the code used on this site, the way it’s styled on here looks great!
It’s also at http://yeahetc.com on the member pages at the moment, still playing about.
James
Thanks for that I will give it a go and let you know how I get on!
Hey, Thanks for that, the site seemed to be calling up the old WPMU account creation page instead of the /register one mentioned in other posts, I still havnt manaed to fix this yet following the instructions, will have another try today!