I have a site built in symfony 1.4. In the develop machine everything works ok, but when upload to production machine, plugins stop to load. This is my project conf:
require_once dirname(__FILE__).'/../lib/vendor/symfony/lib/autoload/sfCoreAutoload.class.php';
sfCoreAutoload::register();
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
$this->setWebDir($this->getRootDir().'/public_html');
$this->enablePlugins('sfDoctrinePlugin');
$this->enablePlugins('sfFormExtraPlugin');
$this->enablePlugins('sfDoctrineGuardPlugin');
$this->enablePlugins('bootstrapAdminThemePlugin');
}
}
I can see the js files loaded, for example: tiny_mce.js. But my textarea does not become text editor. Same thing with dates and autocompletes. I have the same code in both servers. Please any help? Thank you.
What is the actual issue ? symfony Modules or JS files not loaded ?
Maybe you forgot to publish the plugin assets ?
Have you tried