PDA

View Full Version : Using MySpace Default as Profile Picture


Conner85
04-14-2008, 08:39 AM
I've been searching aimlessly to find a way to link the default picture on MySpace to the profile picture area in my users' profiles. Pretty much all they have to do is type in their MySpace user name and their default picture shows up. As well as auto-updating every time they change their default picture on MySpace. I finally came across PHP code, but I have NO CLUE how to turn it into a plugin. If anyone could help, it would be awesome.

<?php

function grab_main_pic($url)
{
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

if (preg_match('/<a\s+id="ctl00_Main_ctl00_UserBasicInformation1_hlDefaultIm age"[^>]+><img\s+src="([^"]+)"/si', curl_exec($ch), $mainpic))
{
return $mainpic[1];
}

return 'Failed to grab main pic.';
}


echo grab_main_pic('http://www.myspace.com/$userinfo[field24]');


?>

Conner85
04-16-2008, 12:49 PM
Not meaning to bump.. but.. no one at all?

MoT3rror
04-16-2008, 07:46 PM
If you want to show the myspace profile picture on everypage for the user signed in.

Hook: global_start


function grab_main_pic($url)
{
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

if (preg_match('/<a\s+id="ctl00_Main_ctl00_UserBasicInformation1_hlDefaultIm age"[^>]+><img\s+src="([^"]+)"/si', curl_exec($ch), $mainpic))
{
return $mainpic[1];
}

return 'Failed to grab main pic.';
}


$myspaceimage = grab_main_pic('http://www.myspace.com/' . $vbulletin->userinfo['field24']);


Then in your template the variable $myspaceimage will include what your function is returning.

Also single and double quotes mean different things.

$variable = 1;
echo '$varaible'; //will return $variable
echo "$variable"; //will return 1

Conner85
04-16-2008, 09:16 PM
That seems to atleast get the plugin to respond. The way I was setting the plugin up was causing a bunch of errors. But now all it says is Failed to grab main pic. Is there anything I'm doing wrong?

By the way, thank you very much.

SEOvB
04-16-2008, 09:31 PM
make sure curl is intalled and compiled on your server

Conner85
04-16-2008, 09:35 PM
It's installed. Is there anything else it could be?

Conner85
04-17-2008, 10:48 PM
Hmmmm.. Still saying Failed to grab main pic. Maybe the link needs to be changed into something like images.myspace.com? I've been trying to play around with it all I can. But as always, failed attempts.