Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
last.fm (was Audioscrobbler ) integration into Member Profile Page Details »»
last.fm (was Audioscrobbler ) integration into Member Profile Page
Version: 1.1, by buro9 buro9 is offline
Developer Last Online: Jul 2012 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 3.5.0 Rating:
Released: 10-15-2005 Last Update: 10-17-2005 Installs: 4
Template Edits
Additional Files  
No support by the author.

No longer supported by the author.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 10-16-2005, 05:25 PM
buro9 buro9 is offline
 
Join Date: Feb 2002
Location: London, UK
Posts: 585
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First post reserved for updates, edits, announcements etc... because some of you guys browse around with the hack part minimised
Reply With Quote
  #3  
Old 10-16-2005, 06:02 PM
eNforce's Avatar
eNforce eNforce is offline
 
Join Date: Aug 2004
Location: Canada, AB
Posts: 341
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a way to check if this pear stuff is already installed and running on the server? Cause my list is not updating n the profile

XML_RSS & cache lite?
Reply With Quote
  #4  
Old 10-16-2005, 06:06 PM
michaelbenson's Avatar
michaelbenson michaelbenson is offline
 
Join Date: Feb 2005
Location: United Kingdom
Posts: 221
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Been looking for this for AGES!
Thanks a bunch
Reply With Quote
  #5  
Old 10-16-2005, 06:51 PM
buro9 buro9 is offline
 
Join Date: Feb 2002
Location: London, UK
Posts: 585
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by eNforce
Is there a way to check if this pear stuff is already installed and running on the server? Cause my list is not updating n the profile

XML_RSS & cache lite?
The simplest way is to upload the testPear.php file and call it.
It should tell you in green text that everything is fine... if you get a blank page, then you probably have an error (PEAR not existing) and errors got surpressed or something.
Reply With Quote
  #6  
Old 10-16-2005, 06:53 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great hack!
Reply With Quote
  #7  
Old 10-16-2005, 07:00 PM
eNforce's Avatar
eNforce eNforce is offline
 
Join Date: Aug 2004
Location: Canada, AB
Posts: 341
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by buro9
The simplest way is to upload this as a test PHP file and call it:

I've just knocked it together... but it should work. It just tries to call both PEAR objects

If it falls over, it's because the PEAR items don't exist.
It just comes up blank for me so I guess that means it isn't installed

I don't know how to install this junk through cpanel or ssh so I'll just wait for a plugin or something I dunno.

Great idea for a hack though!
Reply With Quote
  #8  
Old 10-16-2005, 07:11 PM
buro9 buro9 is offline
 
Join Date: Feb 2002
Location: London, UK
Posts: 585
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by eNforce
It just comes up blank for me so I guess that means it isn't installed

I don't know how to install this junk through cpanel or ssh so I'll just wait for a plugin or something I dunno.

Great idea for a hack though!
Try now with the testPear.php file I've just attached. I actually had a bug in my posted script for testing PEAR, but this one I've tested myself instead of being so cowboy.

It's rather simple, echo's along the way:
PHP Code:
<?php
echo 'About to include cache object<br />';
require_once(
'Cache/Lite.php');
$options = array(
  
'cacheDir' => '/tmp/',
  
'lifeTime' =>  5*60
);
echo 
'About to create cache object<br />';
$cacheLite = new Cache_Lite($options);
echo 
'About to include call cache object<br />';
if (
$cacheStructure $cacheLite->get('cacheTest')) {
  echo 
'<span style="color:green">Stuff in cache already, Cache_Lite must exist, as must XML_RSS.</span>';
} else {
  echo 
'Nothing in the cache, but cache object called successfully<br />';
  echo 
'About to include RSS object<br />';
  require_once 
"XML/RSS.php";
  echo 
'About to create and call RSS object<br />';
  
$rss =& new XML_RSS('http://ws.audioscrobbler.com/rss/recent.php?user=buro9'  );
  
$rss->parse();
  echo 
'About to save stuff to the cache<br />';
  
$cacheLite->save('textContent''cacheTest');
  echo 
'<span style="color:green">Able to put stuff into cache, Cache_Lite must exist, as must XML_RSS.</span>';
}
?>
Reply With Quote
  #9  
Old 10-16-2005, 07:19 PM
eNforce's Avatar
eNforce eNforce is offline
 
Join Date: Aug 2004
Location: Canada, AB
Posts: 341
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

About to include cache object
About to create cache object
About to include call cache object
Nothing in the cache, but cache object called successfully
About to include RSS object
About to create and call RSS object
About to save stuff to the cache
Able to put stuff into cache, Cache_Lite must exist, as must XML_RSS.

This post was edited alot

Edit: OMG it's working on my forum! /me installs
Reply With Quote
  #10  
Old 10-16-2005, 07:26 PM
buro9 buro9 is offline
 
Join Date: Feb 2002
Location: London, UK
Posts: 585
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by eNforce
This post was edited alot
Clearly It doesn't match what I got emailed

Glad it's working for you
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:32 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04654 seconds
  • Memory Usage 2,298KB
  • Queries Executed 23 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete