|
Spiral Scripts Support Forum :: Featured Items Modules |
|
|
|
|
|
Subject :module stop working after upgrade..
11-08-2010 12:52:10
|
|
|
shihs |
|
Fresher |
|
Joined: 05-12-2009 01:40:30
Posts: 8
Location: |
|
|
|
the module stop showing imgs after i upgrade mighty resource to ver 1.5
i think this have to with the new file relocation system |
IP Logged
|
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
11-08-2010 18:32:32
|
|
|
boggler |
|
Spiral Scripts Support |
|
Joined: 18-08-2009 10:14:13
Posts: 213
Location: |
|
|
|
Hi yes you are right, this is due to a change in the way that Resources handles the picture field.
We are planning a new release of all the featured items modules in a few days. These will include a fix for this problem, as well as other new features including compatibility with Joomla 1.6.
If you are really desperate about this I can send you the update early, however if you wait a few days it is more likely to be bug free.
The other fields seem to work without problems, it is just the picture field as far as we are aware. |
IP Logged
|
susan subway boggler |
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
11-08-2010 20:53:14
|
|
|
clowreed |
|
Fresher |
|
Joined: 28-01-2010 13:48:07
Posts: 13
Location: |
|
|
|
Great support thank you |
IP Logged
|
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
13-08-2010 10:46:05
|
|
|
boggler |
|
Spiral Scripts Support |
|
Joined: 18-08-2009 10:14:13
Posts: 213
Location: |
|
|
|
The new release is out. It includes a fix for this problem.
It is also compatible with Joomla 1.6.
You should be able to download it again using your original download id. |
IP Logged
|
susan subway boggler |
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
13-08-2010 12:19:27
|
|
|
shihs |
|
Fresher |
|
Joined: 05-12-2009 01:40:30
Posts: 8
Location: |
|
|
|
i can't download it it say invaild id |
IP Logged
|
Last Edited On: 13-08-2010 12:25:43 By shihs for the Reason |
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
13-08-2010 15:05:51
|
|
|
boggler |
|
Spiral Scripts Support |
|
Joined: 18-08-2009 10:14:13
Posts: 213
Location: |
|
|
|
I have re-enabled your download, you should receive a new download id, or you can download by logging into your account. |
IP Logged
|
susan subway boggler |
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
14-08-2010 01:44:19
|
|
|
shihs |
|
Fresher |
|
Joined: 05-12-2009 01:40:30
Posts: 8
Location: |
|
|
|
thanks a lot really very great support |
IP Logged
|
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
01-09-2010 02:20:01
|
|
|
shihs |
|
Fresher |
|
Joined: 05-12-2009 01:40:30
Posts: 8
Location: |
|
|
|
it is not working after the upgrade i am getting the following error
Class 'JFile' not found in /webroot/t/v/tvdis001/primary/www/modules/mod_featureditems_carousel/includes/modFeaturedItemsCarouselResourcesHelper.php on line 401 |
IP Logged
|
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
01-09-2010 08:51:28
|
|
|
boggler |
|
Spiral Scripts Support |
|
Joined: 18-08-2009 10:14:13
Posts: 213
Location: |
|
|
|
What upgrade? From what to what? Really it would help a lot if you gave some information about what you actually did.
You may be able to solve this by editing the module file:-
includes/modFeaturedItemsCarouselResourcesHelper
add the line
Code:
jimport('joomla.filesystem.file');
at line 10,
so that the beginning of the file looks like this:-
Code:
<?php
/**
*
* @copyright Inspiration Web Design
* License GNU/GPL
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.filesystem.file');
class modFeaturedItemsCarouselResourcesHelper
{
If that does not solve the problem then I think that something went wrong with your upgrade, it is not a problem with the module. |
IP Logged
|
Last Edited On: 01-09-2010 08:52:20 By boggler for the Reason |
susan subway boggler |
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
01-09-2010 13:44:27
|
|
|
shihs |
|
Fresher |
|
Joined: 05-12-2009 01:40:30
Posts: 8
Location: |
|
|
|
i mean after upgrade with the new ver of module feature items pro
i try to insert the code on line 10 as you told me
but it didn't work
i notice that this problem happen with a specific type in joomla resource with a picture fieldd |
IP Logged
|
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
02-09-2010 09:27:39
|
|
|
boggler |
|
Spiral Scripts Support |
|
Joined: 18-08-2009 10:14:13
Posts: 213
Location: |
|
|
|
Then this has to be a problem with your Joomla installation, it would appear that part of the Joomla class library is missing.
The error message is happening because the code requires a Joomla class called JFile. The definition of that class in in the Joomla library - which appears to be missing.
I have come across people who deliberately remove the Joomla and other libraries that come with the standard installation. Really there is no sensible reason to do this, and can lead to these kinds of problems.
The best thing to do is to re-install Joomla properly.
If you really cannot do this then there is a workaround which involves using a standard php function instead of the Joomla class.
First remove the added code that I sent you, so that the file is back to how it was. Then edit line 556:-
if(JFile::exists($file2)) $file = $file2;
to
if(file_exists($file2)) $file = $file2; |
IP Logged
|
susan subway boggler |
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
02-09-2010 11:53:45
|
|
|
shihs |
|
Fresher |
|
Joined: 05-12-2009 01:40:30
Posts: 8
Location: |
|
|
|
ok i will give it a try i notice that the module is working on some pages and giveing this error on other pages |
IP Logged
|
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
02-09-2010 12:11:18
|
|
|
boggler |
|
Spiral Scripts Support |
|
Joined: 18-08-2009 10:14:13
Posts: 213
Location: |
|
|
|
It will only show the error when the picture field type is being used - otherwise that code is never executed so the problem does not arise.
There is no other possible cause for this, it is not a problem with the module. |
IP Logged
|
susan subway boggler |
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
03-09-2010 13:52:32
|
|
|
shihs |
|
Fresher |
|
Joined: 05-12-2009 01:40:30
Posts: 8
Location: |
|
|
|
it is working now
thanks again for your support |
IP Logged
|
|
|
|
|
|
|
Subject :Re:module stop working after upgrade..
03-09-2010 14:14:39
|
|
|
boggler |
|
Spiral Scripts Support |
|
Joined: 18-08-2009 10:14:13
Posts: 213
Location: |
|
|
|
You are welcome. |
IP Logged
|
susan subway boggler |
|
|
|
|