The All New OcUK PS3 User Database With Game & Headset Tracking

Nice addition to your signature! Useful for those who have a 360 AND a PS3 :).

p.s. I can't see any of your new gamercards on my profile page (I just see my 7 House related ones on loop, presumably as they are custom ones you added for me) Can you display them in this thread?


rp2000

Where are you looking mate?
 
Hmm I just cant seem to get the new sigs working for some reason - I can see yours TSG but not mine, even if its random or static...

Probably an IE6 issue on my end...

ps3ud0 :cool:

It's because your xbox live data is empty. Use this one for now:




Code:
[img]http://gamercard.happygamers.co.uk/?psn=polynomial007&xbl=&f=jpg&b=random[/img ]

The page has gone now, but before when it was just PSN sigs you had a page where you could see a preview of your signature with every single background. On that page I always just saw my 7 images, multiple times.

Just wanted to see all 100 or so backgrounds in 1 page really, no particular reason.


rp2000


There are around 300 signatures available now, so its a little intensive for the server and or browser to handle :) hence the drop down menu on the generator.
 
FAO Sid
Code:
var redirectURL=getpublicprofileURL();  
  		document.getElementById('profileFrame').src='/playstation/psn/profiles/'+redirectURL;
  
        
  function getpublicprofileURL ( ) {
  var  parameterName="onlinename=";  
  var queryString = window.top.location.search.substring(parameterName.length+1);    
  if(queryString!=null && (queryString.length>0) )return queryString; 
 
  return null;

This loads the source into an iframe and uses something along the lines of
"/playstation/psn/profiles/?onlinename=Thesnipergecko" for the iframe src.

However I cannot directly access the iframe page it keeps telling me page cannot be found.

http://us.playstation.com/playstation/psn/profiles/?onlinename=Thesnipergecko

Such a PITA, I wouldn't mind but the new website is CRAP!
This loads into an iframe on the page
 
The signatures are displaying now but showing no statistics for PS3 games/trophies.

Still looking to find a way to break into the PS3 website to get the data needed.
 
I am sure there is otehr sites that offer signatures with PSN/trophy information embedded (apart from the official Sony Portable IDs, which (presumably) still work.

Have all 3rd party ones stopped working?


rp2000

Just had a quick look and it appears I'm not the only one experiencing issues, I am going to spend a few hours on this tonight to try and crack it.
 
FAO Sid

Code:
$referer = "http://us.playstation.com/";
#$url = "http://us.playstation.com/publictrophy/index.htm?onlinename=Thesnipergecko";
$url = "http://us.playstation.com/playstation/psn/profiles/Thesnipergecko";

$ch = curl_init();
curl_setopt($ch, CURLOPT_REFERER, $referer);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$in = curl_exec($ch);
curl_close($ch);
echo $in;

This is as far as I have got mate:
http://gamercard.happygamers.co.uk/test.php

It doesn't redirect! but it doesn't return a profile either.
 
They are my stats :)

My script is now set up and scheduled to run at 6am on a daily basis. Have to wait and see if it works in the morning now so fingers crossed.

I have separated the PS3 and 360 stats updater so if the PS3 script times out the 360 cards will still update.

Because the 360 API website is very stable the cards will update every 10 minutes, however the PS3 website is crap so I am only going to be able to update this once a day.

Let's wait and see what happens in the morning. The site is being very slow and unresponsive at the minute so I am unable to run the script now.

I have put a fail safe on the script so if it cannot retrieve no new data it will not update.
 
Back
Top Bottom