- Posts: 1
COMMUNITY FORUM
AllVideos does not work in Joomla 1.6
- bjohnson1964
-
Topic Author
- Offline
- New Member
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.
- Katia
-
- Offline
- Platinum Member
- Posts: 4696
Please Log in or Create an account to join the conversation.
- atchijov
-
- Offline
- New Member
- Posts: 1
Andrei
Please Log in or Create an account to join the conversation.
- Andrew Smith
-
- Offline
- New Member
- Posts: 11
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.
- marcinszczyg
-
- Offline
- New Member
- Posts: 10
Please Log in or Create an account to join the conversation.
- unbugged
-
- Offline
- New Member
- Posts: 3
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.
- abemedia
-
- Offline
- New Member
- Posts: 1
jimport( 'joomla.html.parameter' );
Please Log in or Create an account to join the conversation.
- Katia
-
- Offline
- Platinum Member
- Posts: 4696
Please Log in or Create an account to join the conversation.
- efra
-
- Offline
- New Member
- Posts: 2
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.
- efra
-
- Offline
- New Member
- Posts: 2
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.