Magento1 createBlock method returns “bool(false)” in livehostFatal error when I enable filter => true in addColumnFresh install, no plug ins, fatal error on category management pageMagento - Invalid block typeMagento Custom HeaderCheckout redirecting to the cart pageError Call to a member function getDescription()I got this error in magento1.9?How to resolve it?Magento 1.9 - Invalid block type error in exception logGetting error “Call to a member function setTitle()” after install extensiongetting error after run compilation magento 1!

How can an organ that provides biological immortality be unable to regenerate?

Writing in a Christian voice

Have the tides ever turned twice on any open problem?

Describing a chess game in a novel

Why is indicated airspeed rather than ground speed used during the takeoff roll?

How are passwords stolen from companies if they only store hashes?

Why are there no stars visible in cislunar space?

Do US professors/group leaders only get a salary, but no group budget?

두음법칙 - When did North and South diverge in pronunciation of initial ㄹ?

Relation between independence and correlation of uniform random variables

How do hiring committees for research positions view getting "scooped"?

Can other pieces capture a threatening piece and prevent a checkmate?

How to generate binary array whose elements with values 1 are randomly drawn

Geography in 3D perspective

Would it be believable to defy demographics in a story?

Do native speakers use "ultima" and "proxima" frequently in spoken English?

Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?

Deletion of copy-ctor & copy-assignment - public, private or protected?

Variable completely messes up echoed string

Existence of a celestial body big enough for early civilization to be thought of as a second moon

What can I do if I am asked to learn different programming languages very frequently?

Fewest number of steps to reach 200 using special calculator

Loading the leaflet Map in Lightning Web Component

How is the partial sum of a geometric sequence calculated?



Magento1 createBlock method returns “bool(false)” in livehost


Fatal error when I enable filter => true in addColumnFresh install, no plug ins, fatal error on category management pageMagento - Invalid block typeMagento Custom HeaderCheckout redirecting to the cart pageError Call to a member function getDescription()I got this error in magento1.9?How to resolve it?Magento 1.9 - Invalid block type error in exception logGetting error “Call to a member function setTitle()” after install extensiongetting error after run compilation magento 1!













5















I've made a module that, in my localhost works fine.. The block shows up and ok, but in "livehost" the block don't appear, so I created a controller to make some tests and see what is the problem.



public function minhaactionAction()
$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();



In my localhost the block continue, but in site var_dump($block); returns bool(false). I search for a light by days and nothing yet, I hope so someone can help me to solve this problem.



If I use the $block->setTemplate('...'); it gives an error:




"Fatal error: Call to a member function setTemplate() on boolean in /home/httpd/htdocs/..."




Obviously, its because the createBlock function returns false.



config.xml



<?xml version="1.0">
<config>
<modules>
<AndersonGustavo_SlideProducts>
<version>1.0</version>
</AndersonGustavo_SlideProducts>
</modules>
<frontend>
<routers>
<andersongustavo_slideproducts>
<use>standard</use>
<args>
<module>AndersonGustavo_SlideProducts</module>
<frontName>teste</frontName>
</args>
</andersongustavo_slideproducts>
</routers>
<layout>
<updates>
<AndersonGustavo_SlideProducts>
<file>slideproducts.xml</file>
</AndersonGustavo_SlideProducts>
</updates>
</layout>
</frontend>
<global>
<models>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Model_System_Config_Source</class>
</slideproducts>
</models>
<blocks>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Block</class>
</slideproducts>
</blocks>
<helpers>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Helper</class>
</slideproducts>
</helpers>
</global>




SlideProducts.php



class AndersonGustavo_SlideProducts_Block_SlideProducts extends Mage_Core_Block_Template 

public function __construct(array $args)

$this->setTemplate('slideproducts/slideproducts.phtml');


public function isEnabled()
return Mage::getStoreConfig('andersongustavo/category/enabled');


private function getCategories()
return Mage::getStoreConfig('andersongustavo/category/category_groups');


public function getHeader()
return Mage::getStoreConfig('andersongustavo/category/header');


public function getCategoriesId()
$enabledCategories = explode(',',$this->getCategories());
return $enabledCategories;


public function getCategoryProducts($enabledCategoryId)
$categoryProducts = Mage::getModel('catalog/category')
->load($enabledCategoryId)
->getProductCollection()
->addAttributeToSelect("*")
->addAttributeToFilter('status',1);
return $categoryProducts;


public function getProductImage($id)
$product = Mage::getModel('catalog/product')->load($id);

foreach ($product->getMediaGalleryImages() as $image)
return $image->getUrl();





exception.log




exception 'Mage_Core_Exception' with message 'Tipo de bloco inválido: AndersonGustavo_SlideProducts_Block_Slideproducts' in /home/httpd/htdocs/ovaralbr/public/app/Mage.php:595
Stack trace:
#0 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(495): Mage::throwException('Tipo de bloco i...')
#1 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(437): Mage_Core_Model_Layout->_getBlockInstance('slideproducts/s...', Array)
#2 /home/httpd/htdocs/ovaralbr/public/app/code/local/AndersonGustavo/SlideProducts/controllers/IndexController.php(24): Mage_Core_Model_Layout->createBlock('slideproducts/s...')
#3 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Action.php(418): AndersonGustavo_SlideProducts_IndexController->minhaactionAction()
#4 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('minhaaction')
#5 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#6 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#7 /home/httpd/htdocs/ovaralbr/public/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#8 /home/httpd/htdocs/ovaralbr/public/index.php(93): Mage::run('', 'store')
#9 main


(Tipo de bloco inválido:) is, Invalid block type










share|improve this question
























  • can you please paste your block class as well?

    – Shyam
    May 27 '17 at 10:11











  • Ok! I paste the block class. Do you think, it's necessary to paste my template .phtml file too?

    – Anderson Gustavo
    May 27 '17 at 10:57
















5















I've made a module that, in my localhost works fine.. The block shows up and ok, but in "livehost" the block don't appear, so I created a controller to make some tests and see what is the problem.



public function minhaactionAction()
$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();



In my localhost the block continue, but in site var_dump($block); returns bool(false). I search for a light by days and nothing yet, I hope so someone can help me to solve this problem.



If I use the $block->setTemplate('...'); it gives an error:




"Fatal error: Call to a member function setTemplate() on boolean in /home/httpd/htdocs/..."




Obviously, its because the createBlock function returns false.



config.xml



<?xml version="1.0">
<config>
<modules>
<AndersonGustavo_SlideProducts>
<version>1.0</version>
</AndersonGustavo_SlideProducts>
</modules>
<frontend>
<routers>
<andersongustavo_slideproducts>
<use>standard</use>
<args>
<module>AndersonGustavo_SlideProducts</module>
<frontName>teste</frontName>
</args>
</andersongustavo_slideproducts>
</routers>
<layout>
<updates>
<AndersonGustavo_SlideProducts>
<file>slideproducts.xml</file>
</AndersonGustavo_SlideProducts>
</updates>
</layout>
</frontend>
<global>
<models>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Model_System_Config_Source</class>
</slideproducts>
</models>
<blocks>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Block</class>
</slideproducts>
</blocks>
<helpers>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Helper</class>
</slideproducts>
</helpers>
</global>




SlideProducts.php



class AndersonGustavo_SlideProducts_Block_SlideProducts extends Mage_Core_Block_Template 

public function __construct(array $args)

$this->setTemplate('slideproducts/slideproducts.phtml');


public function isEnabled()
return Mage::getStoreConfig('andersongustavo/category/enabled');


private function getCategories()
return Mage::getStoreConfig('andersongustavo/category/category_groups');


public function getHeader()
return Mage::getStoreConfig('andersongustavo/category/header');


public function getCategoriesId()
$enabledCategories = explode(',',$this->getCategories());
return $enabledCategories;


public function getCategoryProducts($enabledCategoryId)
$categoryProducts = Mage::getModel('catalog/category')
->load($enabledCategoryId)
->getProductCollection()
->addAttributeToSelect("*")
->addAttributeToFilter('status',1);
return $categoryProducts;


public function getProductImage($id)
$product = Mage::getModel('catalog/product')->load($id);

foreach ($product->getMediaGalleryImages() as $image)
return $image->getUrl();





exception.log




exception 'Mage_Core_Exception' with message 'Tipo de bloco inválido: AndersonGustavo_SlideProducts_Block_Slideproducts' in /home/httpd/htdocs/ovaralbr/public/app/Mage.php:595
Stack trace:
#0 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(495): Mage::throwException('Tipo de bloco i...')
#1 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(437): Mage_Core_Model_Layout->_getBlockInstance('slideproducts/s...', Array)
#2 /home/httpd/htdocs/ovaralbr/public/app/code/local/AndersonGustavo/SlideProducts/controllers/IndexController.php(24): Mage_Core_Model_Layout->createBlock('slideproducts/s...')
#3 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Action.php(418): AndersonGustavo_SlideProducts_IndexController->minhaactionAction()
#4 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('minhaaction')
#5 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#6 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#7 /home/httpd/htdocs/ovaralbr/public/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#8 /home/httpd/htdocs/ovaralbr/public/index.php(93): Mage::run('', 'store')
#9 main


(Tipo de bloco inválido:) is, Invalid block type










share|improve this question
























  • can you please paste your block class as well?

    – Shyam
    May 27 '17 at 10:11











  • Ok! I paste the block class. Do you think, it's necessary to paste my template .phtml file too?

    – Anderson Gustavo
    May 27 '17 at 10:57














5












5








5


1






I've made a module that, in my localhost works fine.. The block shows up and ok, but in "livehost" the block don't appear, so I created a controller to make some tests and see what is the problem.



public function minhaactionAction()
$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();



In my localhost the block continue, but in site var_dump($block); returns bool(false). I search for a light by days and nothing yet, I hope so someone can help me to solve this problem.



If I use the $block->setTemplate('...'); it gives an error:




"Fatal error: Call to a member function setTemplate() on boolean in /home/httpd/htdocs/..."




Obviously, its because the createBlock function returns false.



config.xml



<?xml version="1.0">
<config>
<modules>
<AndersonGustavo_SlideProducts>
<version>1.0</version>
</AndersonGustavo_SlideProducts>
</modules>
<frontend>
<routers>
<andersongustavo_slideproducts>
<use>standard</use>
<args>
<module>AndersonGustavo_SlideProducts</module>
<frontName>teste</frontName>
</args>
</andersongustavo_slideproducts>
</routers>
<layout>
<updates>
<AndersonGustavo_SlideProducts>
<file>slideproducts.xml</file>
</AndersonGustavo_SlideProducts>
</updates>
</layout>
</frontend>
<global>
<models>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Model_System_Config_Source</class>
</slideproducts>
</models>
<blocks>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Block</class>
</slideproducts>
</blocks>
<helpers>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Helper</class>
</slideproducts>
</helpers>
</global>




SlideProducts.php



class AndersonGustavo_SlideProducts_Block_SlideProducts extends Mage_Core_Block_Template 

public function __construct(array $args)

$this->setTemplate('slideproducts/slideproducts.phtml');


public function isEnabled()
return Mage::getStoreConfig('andersongustavo/category/enabled');


private function getCategories()
return Mage::getStoreConfig('andersongustavo/category/category_groups');


public function getHeader()
return Mage::getStoreConfig('andersongustavo/category/header');


public function getCategoriesId()
$enabledCategories = explode(',',$this->getCategories());
return $enabledCategories;


public function getCategoryProducts($enabledCategoryId)
$categoryProducts = Mage::getModel('catalog/category')
->load($enabledCategoryId)
->getProductCollection()
->addAttributeToSelect("*")
->addAttributeToFilter('status',1);
return $categoryProducts;


public function getProductImage($id)
$product = Mage::getModel('catalog/product')->load($id);

foreach ($product->getMediaGalleryImages() as $image)
return $image->getUrl();





exception.log




exception 'Mage_Core_Exception' with message 'Tipo de bloco inválido: AndersonGustavo_SlideProducts_Block_Slideproducts' in /home/httpd/htdocs/ovaralbr/public/app/Mage.php:595
Stack trace:
#0 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(495): Mage::throwException('Tipo de bloco i...')
#1 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(437): Mage_Core_Model_Layout->_getBlockInstance('slideproducts/s...', Array)
#2 /home/httpd/htdocs/ovaralbr/public/app/code/local/AndersonGustavo/SlideProducts/controllers/IndexController.php(24): Mage_Core_Model_Layout->createBlock('slideproducts/s...')
#3 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Action.php(418): AndersonGustavo_SlideProducts_IndexController->minhaactionAction()
#4 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('minhaaction')
#5 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#6 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#7 /home/httpd/htdocs/ovaralbr/public/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#8 /home/httpd/htdocs/ovaralbr/public/index.php(93): Mage::run('', 'store')
#9 main


(Tipo de bloco inválido:) is, Invalid block type










share|improve this question
















I've made a module that, in my localhost works fine.. The block shows up and ok, but in "livehost" the block don't appear, so I created a controller to make some tests and see what is the problem.



public function minhaactionAction()
$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();



In my localhost the block continue, but in site var_dump($block); returns bool(false). I search for a light by days and nothing yet, I hope so someone can help me to solve this problem.



If I use the $block->setTemplate('...'); it gives an error:




"Fatal error: Call to a member function setTemplate() on boolean in /home/httpd/htdocs/..."




Obviously, its because the createBlock function returns false.



config.xml



<?xml version="1.0">
<config>
<modules>
<AndersonGustavo_SlideProducts>
<version>1.0</version>
</AndersonGustavo_SlideProducts>
</modules>
<frontend>
<routers>
<andersongustavo_slideproducts>
<use>standard</use>
<args>
<module>AndersonGustavo_SlideProducts</module>
<frontName>teste</frontName>
</args>
</andersongustavo_slideproducts>
</routers>
<layout>
<updates>
<AndersonGustavo_SlideProducts>
<file>slideproducts.xml</file>
</AndersonGustavo_SlideProducts>
</updates>
</layout>
</frontend>
<global>
<models>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Model_System_Config_Source</class>
</slideproducts>
</models>
<blocks>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Block</class>
</slideproducts>
</blocks>
<helpers>
<slideproducts>
<class>AndersonGustavo_SlideProducts_Helper</class>
</slideproducts>
</helpers>
</global>




SlideProducts.php



class AndersonGustavo_SlideProducts_Block_SlideProducts extends Mage_Core_Block_Template 

public function __construct(array $args)

$this->setTemplate('slideproducts/slideproducts.phtml');


public function isEnabled()
return Mage::getStoreConfig('andersongustavo/category/enabled');


private function getCategories()
return Mage::getStoreConfig('andersongustavo/category/category_groups');


public function getHeader()
return Mage::getStoreConfig('andersongustavo/category/header');


public function getCategoriesId()
$enabledCategories = explode(',',$this->getCategories());
return $enabledCategories;


public function getCategoryProducts($enabledCategoryId)
$categoryProducts = Mage::getModel('catalog/category')
->load($enabledCategoryId)
->getProductCollection()
->addAttributeToSelect("*")
->addAttributeToFilter('status',1);
return $categoryProducts;


public function getProductImage($id)
$product = Mage::getModel('catalog/product')->load($id);

foreach ($product->getMediaGalleryImages() as $image)
return $image->getUrl();





exception.log




exception 'Mage_Core_Exception' with message 'Tipo de bloco inválido: AndersonGustavo_SlideProducts_Block_Slideproducts' in /home/httpd/htdocs/ovaralbr/public/app/Mage.php:595
Stack trace:
#0 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(495): Mage::throwException('Tipo de bloco i...')
#1 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/Layout.php(437): Mage_Core_Model_Layout->_getBlockInstance('slideproducts/s...', Array)
#2 /home/httpd/htdocs/ovaralbr/public/app/code/local/AndersonGustavo/SlideProducts/controllers/IndexController.php(24): Mage_Core_Model_Layout->createBlock('slideproducts/s...')
#3 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Action.php(418): AndersonGustavo_SlideProducts_IndexController->minhaactionAction()
#4 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('minhaaction')
#5 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#6 /home/httpd/htdocs/ovaralbr/public/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#7 /home/httpd/htdocs/ovaralbr/public/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#8 /home/httpd/htdocs/ovaralbr/public/index.php(93): Mage::run('', 'store')
#9 main


(Tipo de bloco inválido:) is, Invalid block type







magento-1.9 fatal-error custom-block






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 36 mins ago









Teja Bhagavan Kollepara

3,00641949




3,00641949










asked May 27 '17 at 9:58









Anderson GustavoAnderson Gustavo

286




286












  • can you please paste your block class as well?

    – Shyam
    May 27 '17 at 10:11











  • Ok! I paste the block class. Do you think, it's necessary to paste my template .phtml file too?

    – Anderson Gustavo
    May 27 '17 at 10:57


















  • can you please paste your block class as well?

    – Shyam
    May 27 '17 at 10:11











  • Ok! I paste the block class. Do you think, it's necessary to paste my template .phtml file too?

    – Anderson Gustavo
    May 27 '17 at 10:57

















can you please paste your block class as well?

– Shyam
May 27 '17 at 10:11





can you please paste your block class as well?

– Shyam
May 27 '17 at 10:11













Ok! I paste the block class. Do you think, it's necessary to paste my template .phtml file too?

– Anderson Gustavo
May 27 '17 at 10:57






Ok! I paste the block class. Do you think, it's necessary to paste my template .phtml file too?

– Anderson Gustavo
May 27 '17 at 10:57











2 Answers
2






active

oldest

votes


















3














I suspect that versions of your Magento in localhost and live versions are different.



After Magento version 1.9.1, Magento introduced a new feature of block permissions.



Now if you are introducing a new block class in Magento system, you need to allow it from:



System -> Permissions -> Blocks



Click add new block where block name slideproducts/slideproducts and isAllowed -> Yes



Now save. Clear cache. Hope this will solve your problem.






share|improve this answer























  • Yes, the versions are different.. but, my localhost is 1.9.3.1 and the livehost is 1.9.2.2. Unfortunately the problem continues.

    – Anderson Gustavo
    May 27 '17 at 11:13











  • Have you done what I have written in my answer? Please enable Magento's log from System -> Configuration -> Advanced (Developer) -> Log Settings and then check /var/log folder after reloading page.

    – Mohit Kumar Arora
    May 27 '17 at 12:15












  • Yep.. I'll edit the post and paste the log

    – Anderson Gustavo
    May 27 '17 at 12:35






  • 1





    In the exception.log I could see that the magento is searching for a Slideproducts.php, but the file's name is SlideProducts.php.. Do you know why, and how can I make magento search for the file in camel case.. by the way, you solve my problem!!! I'm very grateful, you save the day.. or bette..r the week =P Thank you!

    – Anderson Gustavo
    May 27 '17 at 12:57


















3














Your action code should be




public function minhaactionAction()

$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();






share|improve this answer























  • Sorry, my bad!!!! I forgot to paste this code line, have a lot of comment lines here.. I'll edit my question post and thank you.

    – Anderson Gustavo
    May 27 '17 at 11:05












  • Did you clear cache? It works fine here.

    – Sohel Rana
    May 27 '17 at 11:25











  • Yes, I clear all caches and disabled them.

    – Anderson Gustavo
    May 27 '17 at 11:30











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f176317%2fmagento1-createblock-method-returns-boolfalse-in-livehost%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














I suspect that versions of your Magento in localhost and live versions are different.



After Magento version 1.9.1, Magento introduced a new feature of block permissions.



Now if you are introducing a new block class in Magento system, you need to allow it from:



System -> Permissions -> Blocks



Click add new block where block name slideproducts/slideproducts and isAllowed -> Yes



Now save. Clear cache. Hope this will solve your problem.






share|improve this answer























  • Yes, the versions are different.. but, my localhost is 1.9.3.1 and the livehost is 1.9.2.2. Unfortunately the problem continues.

    – Anderson Gustavo
    May 27 '17 at 11:13











  • Have you done what I have written in my answer? Please enable Magento's log from System -> Configuration -> Advanced (Developer) -> Log Settings and then check /var/log folder after reloading page.

    – Mohit Kumar Arora
    May 27 '17 at 12:15












  • Yep.. I'll edit the post and paste the log

    – Anderson Gustavo
    May 27 '17 at 12:35






  • 1





    In the exception.log I could see that the magento is searching for a Slideproducts.php, but the file's name is SlideProducts.php.. Do you know why, and how can I make magento search for the file in camel case.. by the way, you solve my problem!!! I'm very grateful, you save the day.. or bette..r the week =P Thank you!

    – Anderson Gustavo
    May 27 '17 at 12:57















3














I suspect that versions of your Magento in localhost and live versions are different.



After Magento version 1.9.1, Magento introduced a new feature of block permissions.



Now if you are introducing a new block class in Magento system, you need to allow it from:



System -> Permissions -> Blocks



Click add new block where block name slideproducts/slideproducts and isAllowed -> Yes



Now save. Clear cache. Hope this will solve your problem.






share|improve this answer























  • Yes, the versions are different.. but, my localhost is 1.9.3.1 and the livehost is 1.9.2.2. Unfortunately the problem continues.

    – Anderson Gustavo
    May 27 '17 at 11:13











  • Have you done what I have written in my answer? Please enable Magento's log from System -> Configuration -> Advanced (Developer) -> Log Settings and then check /var/log folder after reloading page.

    – Mohit Kumar Arora
    May 27 '17 at 12:15












  • Yep.. I'll edit the post and paste the log

    – Anderson Gustavo
    May 27 '17 at 12:35






  • 1





    In the exception.log I could see that the magento is searching for a Slideproducts.php, but the file's name is SlideProducts.php.. Do you know why, and how can I make magento search for the file in camel case.. by the way, you solve my problem!!! I'm very grateful, you save the day.. or bette..r the week =P Thank you!

    – Anderson Gustavo
    May 27 '17 at 12:57













3












3








3







I suspect that versions of your Magento in localhost and live versions are different.



After Magento version 1.9.1, Magento introduced a new feature of block permissions.



Now if you are introducing a new block class in Magento system, you need to allow it from:



System -> Permissions -> Blocks



Click add new block where block name slideproducts/slideproducts and isAllowed -> Yes



Now save. Clear cache. Hope this will solve your problem.






share|improve this answer













I suspect that versions of your Magento in localhost and live versions are different.



After Magento version 1.9.1, Magento introduced a new feature of block permissions.



Now if you are introducing a new block class in Magento system, you need to allow it from:



System -> Permissions -> Blocks



Click add new block where block name slideproducts/slideproducts and isAllowed -> Yes



Now save. Clear cache. Hope this will solve your problem.







share|improve this answer












share|improve this answer



share|improve this answer










answered May 27 '17 at 11:04









Mohit Kumar AroraMohit Kumar Arora

6,66151632




6,66151632












  • Yes, the versions are different.. but, my localhost is 1.9.3.1 and the livehost is 1.9.2.2. Unfortunately the problem continues.

    – Anderson Gustavo
    May 27 '17 at 11:13











  • Have you done what I have written in my answer? Please enable Magento's log from System -> Configuration -> Advanced (Developer) -> Log Settings and then check /var/log folder after reloading page.

    – Mohit Kumar Arora
    May 27 '17 at 12:15












  • Yep.. I'll edit the post and paste the log

    – Anderson Gustavo
    May 27 '17 at 12:35






  • 1





    In the exception.log I could see that the magento is searching for a Slideproducts.php, but the file's name is SlideProducts.php.. Do you know why, and how can I make magento search for the file in camel case.. by the way, you solve my problem!!! I'm very grateful, you save the day.. or bette..r the week =P Thank you!

    – Anderson Gustavo
    May 27 '17 at 12:57

















  • Yes, the versions are different.. but, my localhost is 1.9.3.1 and the livehost is 1.9.2.2. Unfortunately the problem continues.

    – Anderson Gustavo
    May 27 '17 at 11:13











  • Have you done what I have written in my answer? Please enable Magento's log from System -> Configuration -> Advanced (Developer) -> Log Settings and then check /var/log folder after reloading page.

    – Mohit Kumar Arora
    May 27 '17 at 12:15












  • Yep.. I'll edit the post and paste the log

    – Anderson Gustavo
    May 27 '17 at 12:35






  • 1





    In the exception.log I could see that the magento is searching for a Slideproducts.php, but the file's name is SlideProducts.php.. Do you know why, and how can I make magento search for the file in camel case.. by the way, you solve my problem!!! I'm very grateful, you save the day.. or bette..r the week =P Thank you!

    – Anderson Gustavo
    May 27 '17 at 12:57
















Yes, the versions are different.. but, my localhost is 1.9.3.1 and the livehost is 1.9.2.2. Unfortunately the problem continues.

– Anderson Gustavo
May 27 '17 at 11:13





Yes, the versions are different.. but, my localhost is 1.9.3.1 and the livehost is 1.9.2.2. Unfortunately the problem continues.

– Anderson Gustavo
May 27 '17 at 11:13













Have you done what I have written in my answer? Please enable Magento's log from System -> Configuration -> Advanced (Developer) -> Log Settings and then check /var/log folder after reloading page.

– Mohit Kumar Arora
May 27 '17 at 12:15






Have you done what I have written in my answer? Please enable Magento's log from System -> Configuration -> Advanced (Developer) -> Log Settings and then check /var/log folder after reloading page.

– Mohit Kumar Arora
May 27 '17 at 12:15














Yep.. I'll edit the post and paste the log

– Anderson Gustavo
May 27 '17 at 12:35





Yep.. I'll edit the post and paste the log

– Anderson Gustavo
May 27 '17 at 12:35




1




1





In the exception.log I could see that the magento is searching for a Slideproducts.php, but the file's name is SlideProducts.php.. Do you know why, and how can I make magento search for the file in camel case.. by the way, you solve my problem!!! I'm very grateful, you save the day.. or bette..r the week =P Thank you!

– Anderson Gustavo
May 27 '17 at 12:57





In the exception.log I could see that the magento is searching for a Slideproducts.php, but the file's name is SlideProducts.php.. Do you know why, and how can I make magento search for the file in camel case.. by the way, you solve my problem!!! I'm very grateful, you save the day.. or bette..r the week =P Thank you!

– Anderson Gustavo
May 27 '17 at 12:57













3














Your action code should be




public function minhaactionAction()

$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();






share|improve this answer























  • Sorry, my bad!!!! I forgot to paste this code line, have a lot of comment lines here.. I'll edit my question post and thank you.

    – Anderson Gustavo
    May 27 '17 at 11:05












  • Did you clear cache? It works fine here.

    – Sohel Rana
    May 27 '17 at 11:25











  • Yes, I clear all caches and disabled them.

    – Anderson Gustavo
    May 27 '17 at 11:30
















3














Your action code should be




public function minhaactionAction()

$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();






share|improve this answer























  • Sorry, my bad!!!! I forgot to paste this code line, have a lot of comment lines here.. I'll edit my question post and thank you.

    – Anderson Gustavo
    May 27 '17 at 11:05












  • Did you clear cache? It works fine here.

    – Sohel Rana
    May 27 '17 at 11:25











  • Yes, I clear all caches and disabled them.

    – Anderson Gustavo
    May 27 '17 at 11:30














3












3








3







Your action code should be




public function minhaactionAction()

$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();






share|improve this answer













Your action code should be




public function minhaactionAction()

$this->loadLayout();
$block = $this->getLayout()->createBlock('slideproducts/slideproducts');
var_dump($block);
$block->setTemplate('slideproducts/slideproducts.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();







share|improve this answer












share|improve this answer



share|improve this answer










answered May 27 '17 at 10:59









Sohel RanaSohel Rana

22.7k34460




22.7k34460












  • Sorry, my bad!!!! I forgot to paste this code line, have a lot of comment lines here.. I'll edit my question post and thank you.

    – Anderson Gustavo
    May 27 '17 at 11:05












  • Did you clear cache? It works fine here.

    – Sohel Rana
    May 27 '17 at 11:25











  • Yes, I clear all caches and disabled them.

    – Anderson Gustavo
    May 27 '17 at 11:30


















  • Sorry, my bad!!!! I forgot to paste this code line, have a lot of comment lines here.. I'll edit my question post and thank you.

    – Anderson Gustavo
    May 27 '17 at 11:05












  • Did you clear cache? It works fine here.

    – Sohel Rana
    May 27 '17 at 11:25











  • Yes, I clear all caches and disabled them.

    – Anderson Gustavo
    May 27 '17 at 11:30

















Sorry, my bad!!!! I forgot to paste this code line, have a lot of comment lines here.. I'll edit my question post and thank you.

– Anderson Gustavo
May 27 '17 at 11:05






Sorry, my bad!!!! I forgot to paste this code line, have a lot of comment lines here.. I'll edit my question post and thank you.

– Anderson Gustavo
May 27 '17 at 11:05














Did you clear cache? It works fine here.

– Sohel Rana
May 27 '17 at 11:25





Did you clear cache? It works fine here.

– Sohel Rana
May 27 '17 at 11:25













Yes, I clear all caches and disabled them.

– Anderson Gustavo
May 27 '17 at 11:30






Yes, I clear all caches and disabled them.

– Anderson Gustavo
May 27 '17 at 11:30


















draft saved

draft discarded
















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f176317%2fmagento1-createblock-method-returns-boolfalse-in-livehost%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

Fil:Tokke komm.svg

Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?