-
AuthorPosts
-
conforturis Friend
conforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
October 24, 2013 at 3:23 pm #191680Hi,
Module JA Slideshow cannot Save, Save & Close, Save & New or Save as Copy.Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
October 28, 2013 at 7:02 am #510343In this case, you can pm me URL of your, admin details account and FTP account of your hosting. I shall check and fix this problem directly on your site.
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
October 28, 2013 at 10:52 am #510389Hi,
Please check your private message.Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
October 29, 2013 at 8:54 am #510504<em>@conforturis 395463 wrote:</em><blockquote>Hi,
Please check your private message.</blockquote>This is bug of our product, we will fix and release the fix in next version but I have fixed it directly on your site as below
Open modules/mod_jaslideshow/admin/japrofile/helper.php file
From
$japp->initialise(array('language' => $japp->getUserState('application.lang', 'lang')));
change to
$plugins = JPluginHelper::getPlugin('system');
foreach($plugins as $plugin)
{
$plugin->type = 'temp_removed';
}
$japp->initialise(array('language' => $japp->getUserState('application.lang', 'lang')));Please check it on your site again. Let me know if it helps
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
October 29, 2013 at 4:42 pm #510566The same happens with the module JA News Pro Module.
I am afraid it is happening with all the other modules JA in joomla 3.1.
Is it happening because I updated my site to J2.5 J3.1?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
October 30, 2013 at 10:33 am #510661I have reported this problem to development team. They will check and fix it in next version.
Problem of JA News Pro Module can be fixed with my solution :
+ Open modules/mod_janewspro/admin/japrofile/helper.php file
From
$japp->initialise(array('language' => $japp->getUserState('application.lang', 'lang')));
Change to
$plugins = JPluginHelper::getPlugin('system');
foreach($plugins as $plugin)
{
$plugin->type = 'temp_removed';
}
$japp->initialise(array('language' => $japp->getUserState('application.lang', 'lang')));Don’t forget to clear cache from Admin area after making changes
1 user says Thank You to Ninja Lead for this useful post
November 11, 2013 at 2:22 pm #511842<em>@Ninja Lead 395815 wrote:</em><blockquote>I have reported this problem to development team. They will check and fix it in next version.
Problem of JA News Pro Module can be fixed with my solution :
+ Open modules/mod_janewspro/admin/japrofile/helper.php file
From
$japp->initialise(array('language' => $japp->getUserState('application.lang', 'lang')));
Change to
$plugins = JPluginHelper::getPlugin('system');
foreach($plugins as $plugin)
{
$plugin->type = 'temp_removed';
}
$japp->initialise(array('language' => $japp->getUserState('application.lang', 'lang')));Don’t forget to clear cache from Admin area after making changes</blockquote>
Hi,
I’m having the same problem. So I made these adjustments as was posted, but still only solved the first time and after that returned to give the same problem. I’ll have to get by clearing the cache every time I go to save any changes?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
November 13, 2013 at 10:40 am #512091Hi
I updated the module JA News Pro for latest version and this:
[PHP]$japp->initialise(array(‘language’ => $japp->getUserState(‘application.lang’, ‘lang’)));[/PHP]
is missing in modules/mod_janewspro/admin/japrofile/helper.php file.You told me this issue would be fix in next version and next version came and it was not fixed.
Can you please check your Private Messages with access website.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 14, 2013 at 10:37 am #512190@conforturis: I did fixed this problem on JA Newspro module, you can check my fixes on your site
+ Download and extract my attached file
+ move to modules/mod_janewspro/admin/japrofile/helper.php
+ Remember to back-up old file before doing
Let me know if it helps
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
November 14, 2013 at 12:09 pm #512201Review the file you are sending me. This file has no change from the original. It is the same as the original.
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
November 14, 2013 at 12:28 pm #512203I updated the module JA Slideshow then I inserted
[PHP]plugins = JPluginHelper::getPlugin(‘system’);
foreach($plugins as $plugin)
{
$plugin->type = ‘temp_removed’;
}[/PHP]
before:
[PHP]$japp->initialise(array(‘language’ => $japp->getUserState(‘application.lang’, ‘lang’)));[/PHP]
modules/mod_jaslideshow/admin/japrofile/helper.php file
like you told me and I cannot see Save button working :((Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 16, 2013 at 4:36 am #512409@conforturis: You can apply solution on this link
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
November 18, 2013 at 11:36 am #512584This file that you have attached have not changes compared with the original and cannot solve issue.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 19, 2013 at 10:36 am #512707I saw the problem from back-end on your site:
<br />
<b>Parse error</b>: syntax error, unexpected '=' in <b>/home/confor/public_html/hotelsalala3/modules/mod_jaslideshow/admin/japrofile/helper.php</b> on line <b>45</b><br />Please pm me FTP account of your site. I shall help you to debug this problem.
-
AuthorPosts
This topic contains 21 replies, has 6 voices, and was last updated by Nazario A 10 years, 10 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum