<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Amphee Web Tech Pvt. Ltd. &#187; plugins</title>
	<atom:link href="http://blog.amphee.com/index.php/tag/plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amphee.com</link>
	<description></description>
	<lastBuildDate>Wed, 04 May 2011 05:34:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:3px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "A6C9E2";
		google_color_link = "FF3019"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "7EB544";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Interesting symfony plugins: sfSyncContentPlugin</title>
		<link>http://blog.amphee.com/index.php/2010/06/21/interesting-symfony-plugins-sfsynccontentplugin/</link>
		<comments>http://blog.amphee.com/index.php/2010/06/21/interesting-symfony-plugins-sfsynccontentplugin/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 06:07:07 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[symfony]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[symfony development]]></category>
		<category><![CDATA[symfony plugins]]></category>

		<guid isPermaLink="false">http://blog.amphee.com/?p=163</guid>
		<description><![CDATA[With the amount of plugins published in the symfony site, many great plugins get lost in the maze. With this series of posts, we would like to bring some attention to plugins we use every day or that we think are essential for any symfony developer.
sfSyncContentPlugin
Deploying symfony applications is always a key part of developing [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>With the amount of plugins published in the symfony site, many great plugins get lost in the maze. With this series of posts, we would like to bring some attention to plugins we use every day or that we think are essential for any symfony developer.</p>
<h2>sfSyncContentPlugin</h2>
<p>Deploying symfony applications is always a key part of developing and maintaining websites that run on symfony. It is always a recommended practice to do development on a local environment or dedicated development server. It is also recommended to have a QA/staging server that is as close as possible to your production server. Using this well proven method you can spot problems and bugs before everybody else sees or experiences them, you know, those bugs that “only” happen in production, don’t tell me that it never happened to you, I won’t believe you.</p>
<p>Anyway, making changes in a live site is not only not recommended, it should never be done!</p>
<p>When developing and testing symfony applications, a lot of times you need to have a copy of the live data. Or you may have a staging server where you make changes before pushing them to a live site in a production server. symfony already provides a way to deploy code changes to a remote server, but what about uploaded and data files? And database content?</p>
<p>Since we discovered and started using it, we can’t live without the<a href="http://www.symfony-project.org/plugins/sfSyncContentPlugin">sfSyncContentPlugin plugin</a> by Tom Boutell and Alex Gilbert, also developers of<a href="http://www.apostrophenow.com/">Apostrophe CMS</a>. This plugin helps with all the tasks and needs described above. Using it is quite simple. All you need to do is define your servers in config/properties.ini like this:</p>
<pre>[qa]
  host=qa.example.com
  port=22
  user=user
  dir=/var/www/mysite

[prod]
  host=www.example.com
  port=22
  user=user
  dir=/var/www/mysite

[staging]
  host=staging.example.com
  port=22
  user=user
  dir=/var/www/mysite</pre>
<p>Make sure to use SSH keys to authenticate to your remote servers, so you don’t get asked again and again for passwords. Then just run the following symfony tasks:</p>
<pre>
<pre># Migrate files and DB from development to qa
./symfony project:sync-content frontend dev to qa@qa

# Migrate files and DB to production (always make a backup of production before doing this!)
./symfony project:sync-content frontend dev to prod@prod

# Migrate files and DB from QA into development
./symfony project:sync-content frontend dev from prod@prod</pre>
</pre>
<p>Files and DB content are copied accordingly, almost magically. It saves so much time, but please make sure you understand and check the order that you apply in the symfony task. With the power this plugin provides, is very easy, by mistake, to overwrite production data, so again, always make a backup!</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2010/06/21/interesting-symfony-plugins-sfsynccontentplugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some useful wordpress plugins</title>
		<link>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/</link>
		<comments>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 07:31:57 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[cms plugin]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[woprdpress]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=141</guid>
		<description><![CDATA[here is the list of some useful wordpress plugins. i hope  everyone like tht
Advanced Tagline
Advanced Tagline gives the option to have multiple taglines for your blog and display them at random or sequentially with each page view.
Sodahead Polls
Want to create a poll for your readers and see live results? Bloggers use polls more than any [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>here is the list of some useful wordpress plugins. i hope  everyone like tht</p>
<p><a href="http://kmorey.net/downloads/advanced-tagline-wordpress-plugin/" target="_blank">Advanced Tagline</a></p>
<p>Advanced Tagline gives the option to have multiple taglines for your blog and display them at random or sequentially with each page view.</p>
<p><a href="http://wordpress.org/extend/plugins/sodahead-polls/" target="_blank">Sodahead Polls</a></p>
<p>Want to create a poll for your readers and see live results? Bloggers use polls more than any other interactive application to engage their readers. Create an engaging experience for your audience today and keep them coming back for more.</p>
<p><a href="http://yoast.com/wordpress/minimum-comment-length/" target="_blank">Minimum Comment Length</a></p>
<p>Don’t you find it annoying when someone comments with just a smiley? Or a “thanks”? On quite a few forums you have to leave a comment with a minimum of 15 characters to be able to comment, but WordPress doesn’t allow you to set such a threshold. With this plugin, it does.</p>
<p><a href="http://www.coolchecks.net/blog/blogging-tips/blogging-tips-plugin-for-wordpress.html" target="_blank">Blogging Tips</a></p>
<p>This plugin displays random blogging tips and suggestions. The tips are just some ideas of what you can do to improve the popularity of your blog and improve the content.  All of the tips are designed to inspire you to be a better blogger.</p>
<p><a href="http://www.zen-dreams.com/en/2008/08/06/new-wordpress-plugin-gravatar-top-commenters/" target="_blank">Gravatar Recent Comments</a></p>
<p>Gravatar recent comments is a plugin providing you with a “Top/last commenters” widget but instead of just displaying names, it also displays gravatars.</p>
<p><a href="http://builtbackwards.com/projects/tac/" target="_blank">Theme Authenticity Checker</a></p>
<p>Scan all of your theme files for potentially malicious or unwanted code. Be aware of advertisements or dangerous JavaScript inserted into legitimate themes by third party theme download sites.</p>
<p><a href="http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/" target="_blank">List Category Posts</a></p>
<p>List Category Posts is a simple WordPress plugin which allows you to list some posts from a category into a post/page using [catlist=ID], where ID stands for the Category Id.</p>
<p><a href="http://www.dagondesign.com/articles/expanding-text-plugin-for-wordpress/" target="_blank">Expanding Text Plugin</a></p>
<p>This WordPress plugin allows you to create sections of text in your post or page which expand/collapse when clicked on. You simply wrap the special tags around your text, and set the ‘expand link’ (the link visitors click on to show the text).</p>
<p><a href="http://wordpress.org/extend/plugins/actionable/" target="_blank">Actionable</a></p>
<p>Actionable allows the creation of a categroized list of action items for users to check off and track. It was originally developed for Share 350.0 – a plan for regional sustainability to help people track their actions and efforts to create a sustainable community.</p>
<p><a href="http://www.23systems.net/plugins/lightbox-plus/" target="_blank">Lightbox Plus</a></p>
<p>Lightbox Plus is used to create overlay display images on the webpage and to automatically add the correct overlay links to images. Lightbox Plus captures the image title for display using a fairly robust regex to capture most character that may appear as part of the title.</p>
<p>original blog from  <a href="http://www.blogohblog.com/10-new-useful-wordpress-plugins/">http://www.blogohblog.com/10-new-useful-wordpress-plugins/</a></p>
<p>from,</p>
<p>kiran</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>some useful symfony plugins</title>
		<link>http://blog.amphee.com/index.php/2009/05/12/some-useful-symfony-plugins/</link>
		<comments>http://blog.amphee.com/index.php/2009/05/12/some-useful-symfony-plugins/#comments</comments>
		<pubDate>Tue, 12 May 2009 04:35:26 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[symfony web development]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=65</guid>
		<description><![CDATA[here is the some useful symfony plugin list for symfony developers.
sfDynamicsPlugin
Manage javascripts/stylesheets libraries as coherent packages, dependencies, packing, caching and supercaching. JS framework independant. No magic included.
sfLanguageSwitchPlugin
This plugin gives you a component to include a simple language switcher. It holds the current URL and changes the sf_culture parameter.
ysfDimensionsPlugin
This plugin gives you a component to include [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>here is the some useful symfony plugin list for symfony developers.</p>
<p><strong><a href="http://www.symfony-project.org/plugins/sfDynamicsPlugin">sfDynamicsPlugin</a></strong></p>
<p>Manage javascripts/stylesheets libraries as coherent packages, dependencies, packing, caching and supercaching. JS framework independant. No magic included.</p>
<p><strong></strong><strong><a href="http://www.symfony-project.org/plugins/sfLanguageSwitchPlugin">sfLanguageSwitchPlugin</a></strong></p>
<p>This plugin gives you a component to include a simple language switcher. It holds the current URL and changes the sf_culture parameter.</p>
<p><strong></strong><strong><a href="http://www.symfony-project.org/plugins/ysfDimensionsPlugin">ysfDimensionsPlugin</a></strong></p>
<p>This plugin gives you a component to include a simple language switcher. It holds the current URL and changes the sf_culture parameter.</p>
<p><strong></strong><strong><a href="http://www.symfony-project.org/plugins/i18nTranslatePlugin">i18nTranslatePlugin</a></strong></p>
<p>attempt to translate your sentences using Google AJAX Language API</p>
<p><strong></strong><strong><a href="http://www.symfony-project.org/plugins/sfKsnNewsPlugin">sfKsnNewsPlugin</a></strong></p>
<p>Main features includes:  * multilanguage support (the same news item in different languages) * frontend (AJAX or form-based) administration * backend administration * lastest news block component and helper * autogeneration of news item annotation * fully customizable to suit your needs * news item files managment * nested news categories * RSS feed</p>
<p>hope tht you liked it.</p>
<p>thank you,</p>
<p>kiran vadariya</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/05/12/some-useful-symfony-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "E3FA11";
		google_color_link = "FFFFFF"; google_color_bg = "A2AB2B";
		google_color_text = "000000"; google_color_url = "FFFFFF";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>some usefule symfony plugins  :)</title>
		<link>http://blog.amphee.com/index.php/2009/04/30/some-usefule-symfony-plugins/</link>
		<comments>http://blog.amphee.com/index.php/2009/04/30/some-usefule-symfony-plugins/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 08:01:51 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[symfony development]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=31</guid>
		<description><![CDATA[take a quick look at some useful symfony plugins . useful for your symfony project. if any query or change then post comment on it.

sfSimpleCMSPlugin
sfGuardPlugin
sfDoctrinePlugin
sfPropelActAsNestedSetBehaviorPlugin
sfMediaLibraryPlugin
sfSimpleBlogPlugin
sfSimpleForumPlugin
sfFeed2Plugin
sfgWidgetsPlugin
sfThumbnailPlugin
sfUJSPlugin
sfControlPanelPlugin
sfFormValidationPlugin
sfMogileFSPlugin
sfLightboxPlugin
sfCaptchaPlugin
sfNiftyPlugin
sfPrototypeWindowPlugin
sfPropelLoadbalancerPlugin
sfSavvyPlugin
sfYzClientSideValidationPlugin

from ,
sanjay  

]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>take a quick look at some useful symfony plugins . useful for your symfony project. if any query or change then post comment on it.</p>
<ol>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfSimpleCMSPlugin">sfSimpleCMSPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfGuardPlugin">sfGuardPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfDoctrine">sfDoctrinePlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfPropelActAsNestedSetBehaviorPlugin">sfPropelActAsNestedSetBehaviorPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfMediaLibraryPlugin">sfMediaLibraryPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfSimpleBlogPlugin">sfSimpleBlogPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfSimpleForumPlugin">sfSimpleForumPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfFeed2Plugin">sfFeed2Plugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfgWidgetsPlugin">sfgWidgetsPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfThumbnailPlugin">sfThumbnailPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfUJSPlugin">sfUJSPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfControlPanelPlugin">sfControlPanelPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfFormValidationPlugin">sfFormValidationPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfMogileFSPlugin">sfMogileFSPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfLightboxPlugin">sfLightboxPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfCaptchaPlugin">sfCaptchaPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfNiftyPlugin">sfNiftyPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfPrototypeWindowPlugin">sfPrototypeWindowPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfPropelLoadbalancerPlugin">sfPropelLoadbalancerPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfSavvyPlugin">sfSavvyPlugin</a></li>
<li><a href="http://trac.symfony-project.com/trac/wiki/sfYzClientSideValidationPlugin">sfYzClientSideValidationPlugin</a></li>
</ol>
<p>from ,</p>
<p><strong>sanjay <img src='http://blog.amphee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<ol></ol>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/04/30/some-usefule-symfony-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

