We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Troy
  2. General Discussion
  3. Thursday, 06 February 2014
  4.  Subscribe via email
After updated to Joomla 3.2.2 on my test site, I"m unable to open the template from backend. Not seeing any issue on the front-end. A blank page is returned. Turning on Error reporting shows this message:

Fatal error: Call to undefined method TemplatesHelper::getActions() in /var/www/vhosts/[url]/httpdocs/plugins/system/t3/admin/tpls/default.php on line 22

Issue appears with both 2.0.2 and 2.1.0
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Same problem here
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
Same :(
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Help please!!!
  Turin, Italy
Visit 
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 3
Accepted Answer Pending Moderation
1
Votes
Undo
Hi,

This is a new issue of incompatible of T3 and Joomla v3.2.2

Please check solutions here:
https://github.com/t3framework/t3/commit/f8e2238f9687de3491e6f5cf1be5743c03bb7a05

https://github.com/t3framework/t3/issues/249

Regards
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 4
Accepted Answer Pending Moderation
0
Votes
Undo
I tried it, no help, but this time, I got was a blank page when I edited the template. no errors for me.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 5
Accepted Answer Pending Moderation
0
Votes
Undo
I have the same problem, and I wanted to copy the code to another template as I have customised it so I am a bit stuck. Any help would be great, thank you!
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 6
Accepted Answer Pending Moderation
0
Votes
Undo
Fatal error here, too! :(

Fatal error: Call to undefined method TemplatesHelper::getActions() in /home1/****/public_html/****/plugins/system/t3/admin/tpls/default.php on line 22
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 7
Accepted Answer Pending Moderation
0
Votes
Undo
I had the same problem and the solution posted here worked for me
Thanks ;) :)

Hi,

This is a new issue of incompatible of T3 and Joomla v3.2.2

Please check solutions here:
https://github.com/t3framework/t3/commit/f8e2238f9687de3491e6f5cf1be5743c03bb7a05

https://github.com/t3framework/t3/issues/249

Regards
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 8
Accepted Answer Pending Moderation
0
Votes
Undo
YUP!! I'm good again! :D :D

The fix worked!

Thanks, guys!
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 9
Accepted Answer Pending Moderation
0
Votes
Undo
SOLVED THKS :)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 10
Accepted Answer Pending Moderation
0
Votes
Undo
Great.... I works again using Title

By the moment it seems that works only changing that line. Its mandatory other changes like the one in https://github.com/t3framework/t3/issues/249
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 11
Accepted Answer Pending Moderation
0
Votes
Undo
well yea, but changing that line didnt work for me. still getting a blank page. I tried the other suggestion, but I don't know how to 'comment' the line.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 12
Accepted Answer Pending Moderation
0
Votes
Undo
comment line with PHP
<?php
/****eho 'Exemple'; ****/ //or //this
?>
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 13
Accepted Answer Pending Moderation
0
Votes
Undo
i did commented it, still no help. Still getting a blank page with no errors. :( well luckuly I'm downloading a 3.2.1 version to clear it off. That'll keep it like that until the plugin as well as the template is fixed with a new version.

UPDATE: Tried it, STILL no happening, still a blank page.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 14
Accepted Answer Pending Moderation
0
Votes
Undo
The solution awaitting news version of t3 if your are not webmaster...
And the author of t3 'll update it with news version
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 15
Accepted Answer Pending Moderation
0
Votes
Undo
I deleted the line 22 ($canDo = TemplatesHelper::getActions();)
and added +$canDo = version_compare( JVERSION, '3.2.2', 'ge' ) ? JHelperContent::getActions('com_templates') : TemplatesHelper::getActions();

  I run the risk of having security issue?
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 16
Accepted Answer Pending Moderation
0
Votes
Undo
May be simple put back missing function at /administrator/components/com_templates/helpers/templates.php ?


public static function getActions()
{
$user = JFactory::getUser();
$result = new JObject;

$actions = JAccess::getActions('com_templates');

foreach ($actions as $action)
{
$result->set($action->name, $user->authorise($action->name, 'com_templates'));
}

return $result;
}
By the way why it disappeared after the update of Joomla?
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 17
Accepted Answer Pending Moderation
0
Votes
Undo
It works! Thank you! :D
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 18
Accepted Answer Pending Moderation
0
Votes
Undo
IT WORKS!!!!!! That's the answer!!!!
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 19
Accepted Answer Pending Moderation
0
Votes
Undo
Github fix posted by admin worked for me too!


This is a new issue of incompatible of T3 and Joomla v3.2.2

Please check solutions here:
https://github.com/t3framework/t3/commit/f8e2238f9687de3491e6f5cf1be5743c03bb7a05

https://github.com/t3framework/t3/issues/249
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 20
  • Page :
  • 1
  • 2


There are no replies made for this post yet.
However, you are not allowed to reply to this post.