PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, August 31, 2022

[FIXED] How to install a plugin in symfony 1.4 with or without PEAR?

 August 31, 2022     pear, php, symfony-1.4, symfony1     No comments   

Issue

I know it is not good question to ask, but I don't find any satisfactory answer from Google that we able to install plugin in symfony 1.4 with or without PEAR.

If yes then why? and if no then how do we install it manually.


Solution

After a quick search on Google, one result shows you how to install a plugin manually, without PEAR (which I recommend):

  1. Download the plugin from the symfony site.
  2. unzip the file and if the folder has version number, remove that.
  3. Copy the plugin to the projectpath/plugins
  4. Edit config/ProjectConfiguration.class.php to add

    $this->enablePlugins('pluginName');
    
  5. Run symfony plugin:publish-assets in the command line.



Answered By - j0k
Answer Checked By - Cary Denson (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing