Keyword

AllVideos does not work in Joomla 1.6

  • bjohnson1964
  • bjohnson1964's Avatar Topic Author
  • Offline
  • New Member
More
15 years 3 weeks ago #32623 by bjohnson1964
AllVideos does not work in Joomla 1.6 was created by bjohnson1964
I've installed the latest build of Joomla 1.6 and had some errors using AllVideos.
Fatal error: Class 'JParameter' not found in \wwwroot\plugins\content\jw_allvideos\jw_allvideos.php on line 52. It turns out that JParameter is deprecated in Joomla 1.6.
docs.joomla.org/Framework

Is there a work around or a plan to fix this in an upcoming release?

Please Log in or Create an account to join the conversation.

More
15 years 3 weeks ago #32624 by Katia
Replied by Katia on topic Re: AllVideos does not work in Joomla 1.6
Joomla 1.6 is at an A stage... So we don't built extension for it yet!

Please Log in or Create an account to join the conversation.

More
15 years 2 weeks ago #32625 by atchijov
Replied by atchijov on topic Re: AllVideos does not work in Joomla 1.6
I did some quick and dirty fix for allvideos.  Attached version does work for me on Joomla 1.6 nightly build.

Andrei
Attachments:

Please Log in or Create an account to join the conversation.

More
14 years 9 months ago #32626 by Andrew Smith
Replied by Andrew Smith on topic Re: AllVideos does not work in Joomla 1.6
Thanks for the quick and dirty hack of the AllVideos plugin.

I've just tried it against Joomla 1.6 beta 7 and whilst it installs, it's not even biting when it comes to playing a file.  No player being invoked to the browser screen and the tag code is displayed as text instead.

Thanks anyway.

Andrew

Please Log in or Create an account to join the conversation.

More
14 years 6 months ago #32627 by marcinszczyg
Replied by marcinszczyg on topic Re: AllVideos does not work in Joomla 1.6
Will Joomla 1.6 be compatybile with your components, plugins etc? (when stable)?

Please Log in or Create an account to join the conversation.

More
14 years 3 months ago - 14 years 3 months ago #32628 by unbugged
Replied by unbugged on topic Re: AllVideos does not work in Joomla 1.6
I don't know in which topic to ask, I decided to ask here, Joomla 1.6 stable is released, and already several years I am using allvideo plugin, so I am interested when will come allvideo for Joomla 1.6?
I have my site in Joomla 1.0.15, 1.5.22 and 1.6, but still there is no allvideo for 1.6, maybe it will come soon?

I have one more question, is it necessary to upgrade from 2.5.3 version to 3.3 or it is safe to use 2.5.3 in Joomla 1.0.15 and 1.5.22? version 2.5.3 function very good for me, and I don't like to change if it is function good. I would change it only if it is necessary for security reasons.

Please Log in or Create an account to join the conversation.

More
13 years 3 months ago #32629 by abemedia
Replied by abemedia on topic Re: AllVideos does not work in Joomla 1.6
To anyone who still has this problem (I was having it on J! 2.5) I solved it by editing plugins/content/jw_allvideos/jw_allvideos.php and adding the following line just after jimport('joomla.plugin.plugin');
jimport( 'joomla.html.parameter' );

Please Log in or Create an account to join the conversation.

More
13 years 3 months ago - 13 years 3 months ago #32630 by Katia
Replied by Katia on topic Re: AllVideos does not work in Joomla 1.6
AllVideos 4.3 version is fully compatible with joomla 1.5-2.5.

Please Log in or Create an account to join the conversation.

More
12 years 11 months ago #32631 by efra

To anyone who still has this problem (I was having it on J! 2.5) I solved it by editing plugins/content/jw_allvideos/jw_allvideos.php and adding the following line just after jimport('joomla.plugin.plugin');

jimport( 'joomla.html.parameter' );


i have this problem, and i did you did, but still  the problem..
<?php
/**
 * @version		4.4
 * @package		AllVideos (plugin)
 * @author    JoomlaWorks - https://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2012 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );

jimport('joomla.html.parameter');
jimport('joomla.plugin.plugin');

class plgContentJw_allvideos extends JPlugin {

  // JoomlaWorks reference parameters
	var $plg_name								= "jw_allvideos";
	var $plg_copyrights_start		= "\n\n<!-- JoomlaWorks \"AllVideos\" Plugin (v4.4) starts here -->\n";
	var $plg_copyrights_end			= "\n<!-- JoomlaWorks \"AllVideos\" Plugin (v4.4) ends here -->\n\n";

Warning: preg_replace(): Unknown modifier 'f' in /web/htdocs/www.myweb.com/home/plugins/content/jw_allvideos/jw_allvideos.php on line 354

Please Log in or Create an account to join the conversation.

More
12 years 11 months ago #32632 by efra
now i know what the problem is....

Don´t do add line like another user said...

It´s easy, the problem is inside your article. You must be open the article, and press HTML botton and you can read beetwen the code for allavideos something like this...
<p style="text-align: center;"><span style="color: #ff0000;">
</span></p>
<p style="text-align: center;"><span style="color: #ff0000;">{mp3}stories/audio/campa/<span style="color: #ff0000;">my_music{/mp3}</span></p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>


and must be...
<p style="text-align: center;"><span style="color: #ff0000;">
</span></p>
<p style="text-align: center;"><span style="color: #ff0000;">{mp3}stories/audio/campa/my_music{/mp3}</span></p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>

you can read some code inside this line.. {mp3}stories/audio/campa/my_music{/mp3}, delete that code and keep clear and save...

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum