| Re: Xootube Problems |
| by Mamba on 2015/5/27 6:34:42 Quote: xoopstube is not the same as the xootube. Oops! Sorry for that, I missed that! Did you think about switching to XoopsTube then? |
| Re: Xootube Problems |
| by hipoonios on 2015/5/27 4:24:24 That seem to be a different module. xoopstube is not the same as the xootube. The problem is that the module does not show any content anymore. For example: /modules/xootube/user.php?uname=google "Failed to get the information" |
| Re: Xootube Problems |
| by Mamba on 2015/5/27 4:00:07 Quote: Noticed that this module has stopped working today :( Can you define what you mean by "stopped working today"? Also, as we always ask, can provide your PHP and XOOPS versions? I just checked, and for me it works just fine: http://westend-cincinnati.org/modules/xoopstube/ Does anybody else experience problems with XoopsTube module? NB: you can help us with writing a tutorial for XoopsTube! :) |
| Re: Xootube Problems |
| by hipoonios on 2015/5/26 19:22:23 Noticed that this module has stopped working today :( I think it has to do that Google has updated their Data-API. See: http://youtube-eng.blogspot.se/2015/04/bye-bye-youtube-data-api-v2.html |
| Re: Xootube Problems |
| by Mkjones on 2013/1/25 21:53:37 Had to make a few more alterations: 1. altered the user.php file and added the same code under $id = $_GET['id']; which can be found at the top of the file. The code then should read like this: le="color: #000000"><?php $id = $_GET['id']; $vidid = $_GET['id']; $str = $vidid; $str=str_replace('_player', '', $str); $xoopsTpl->assign('vidid', $str); 2. the youtube player code found in xootube_user.html should then be removed and replaced with this: le="color: #000000"><?php <iframe width="<{$width}>" height="<{$height}>" src="http://www.youtube.com/embed/<{$vidid}>" frameborder="0" allowfullscreen></iframe> 3. sometimes certain tags fail to load and it causes an error message to screw up the graphics so I removed the error message from the langauge/english/main.php file. The entry should look like this once the error message is removed ( 3rd from top ): le="color: #000000"><?php define("_MD_XOOTUBE_NOTID",""); If you are using any other language then the same file in their respective directories need to be altered too. |