Fatal error: Uncaught exception 'InvalidArgumentException' with message 'The plugin "sfAssetsLibraryPlugin" does not exist.' in C:\development\sfprojects\myproject\lib\vendor\symfony\lib\config\sfProjectConfiguration.class.php:460 Stack trace: #0 C:\development\sfprojects\myproject\lib\vendor\symfony\lib\config\sfApplicationConfiguration.class.php(483): sfProjectConfiguration->getPluginPaths() #1 C:\development\sfprojects\myproject\lib\vendor\symfony\lib\config\sfProjectConfiguration.class.php(80): sfApplicationConfiguration->getPluginPaths() #2 C:\development\sfprojects\myproject\lib\vendor\symfony\lib\config\sfProjectConfiguration.class.php(62): sfProjectConfiguration->loadPlugins() #3 C:\development\sfprojects\myproject\lib\vendor\symfony\lib\config\sfApplicationConfiguration.class.php(47): sfProjectConfiguration->__construct('C:\development\...', NULL) #4 C:\development\sfprojects\myproject\lib\vendor\symfony\lib\config\sfProjectConfiguration.class.php(614): sfApplicationConfi in C:\development\sfprojects\myproject\lib\vendor\symfony\lib\config\sfProjectConfiguration.class.php on line 460
I followed the configuration for sfAssets library too.
Here is my ProjectConfiguration.class.php file...
- Code: Select all
<?php
require_once dirname(__FILE__).'/..\lib\vendor\symfony\lib/autoload/sfCoreAutoload.class.php';
sfCoreAutoload::register();
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
$this->enablePlugins(array('sfDoctrinePlugin', 'sfAssetsLibraryPlugin'));
}
}
When I tried it in the command line I get this type of feedback...
C:\development\sfprojects\myproject>php symfony plugin:install sfAssetsLi
braryPlugin
>> plugin installing plugin "sfAssetsLibraryPlugin"
It gives me no confirmation that it has in fact been installed. I actually tried this method first and expected the plugin to appear in the plugins folder, but non had...that's when I went and downloaded and extracted it there.
Am I totally missing something with this installation process? What is going wrong?
