The "youtube.class.php on line 106" error on my site Alot of others using the Youtube API get it also. Here's the code ed
The level of error-messages setting in you php.ini does that. You could stop if from happening by either editing your php.ini, or, if you are on some shared hosting, add the following lines to your header or index-file (depending on the setup on the site): error_reporting(0); The reason why this shows up is because a variable in the class-function is undefined - it's a notice error, and not critical, so the mentioned error_reporting-setting will turn off these warnings.
Thanks PoPSiCLe, I found error_reporting(E_ALL); in the youtube.class.php file and switched it to error_reporting(0);....fixed it. ed