Magento module installation not found

I am trying to install the Magento Clever CMS module https://github.com/jreinke/magento-clever-cms to install Magento 1.7.0.2.

In my development environment, I can install it without any problems, but in production I get an internal server error.

PHP Fatal Error:

Class 'JR_CleverCms_Model_Resource_Setup' not found in / web / includes / src / Mage _Core_Model_Resource_Setup.php on line 234

So, Mage_Core_Model_Resource_Setup is not extended by setting the JR_CleverCms resource. I installed the module with modgit and double-checked if there are all files and file permissions. Has anyone understood what the problem is?

+4
source share
1 answer

This is because compilation is enabled in your working environment, but this file has not been compiled (copied to include / src).

See this answer for a solution.

+4
source

All Articles