<?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>Qbase Technologies &#187; Blog</title>
	<atom:link href="http://www.qbase.co.in/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.qbase.co.in</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 09 May 2013 13:01:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Migrating Drupal 7 Site Causes Internal Server Error on Images</title>
		<link>http://www.qbase.co.in/migrating-drupal-7-site-causes-internal-server-error-on-images/</link>
		<comments>http://www.qbase.co.in/migrating-drupal-7-site-causes-internal-server-error-on-images/#comments</comments>
		<pubDate>Thu, 09 May 2013 12:29:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=2387</guid>
		<description><![CDATA[I recently came across an issue with my images not showing up on my Drupal 7 website after I migrated it from my staging server to the production server. It was just showing an X. When I looked at the image path, everything was correct and the image existed. I wasn&#8217;t sure what was wrong [...]]]></description>
				<content:encoded><![CDATA[<p>I recently came across an issue with my images not showing up on my Drupal 7 website after I migrated it from my staging server to the production server. It was just showing an X. When I looked at the image path, everything was correct and the image existed. I wasn&#8217;t sure what was wrong because everything was right. Some research said that it was an issue with the .htaccess file. I tried that, but that didnt work. But I did find a solution!</p>
<p>Solution: There was an extra .htaccess file in the /sites/default/files folder. Once I deleted that, all my images came back! I hope I&#8217;m helping someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/migrating-drupal-7-site-causes-internal-server-error-on-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The process of SVN</title>
		<link>http://www.qbase.co.in/the-process-of-svn/</link>
		<comments>http://www.qbase.co.in/the-process-of-svn/#comments</comments>
		<pubDate>Tue, 22 May 2012 19:15:05 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=2051</guid>
		<description><![CDATA[SVN is a centralized system, so you have one central repository. The first step is to create the repository that your code will sit in. This will either be on your local network, a remote server, or third-party service that offers repository hosting. This is, however, still classified as a remote repository, it just happens [...]]]></description>
				<content:encoded><![CDATA[<p>SVN is a centralized system, so you have one central repository. The first step is to create the repository<br />
that your code will sit in. This will either be on your local network, a remote server, or third-party service<br />
that offers repository hosting. This is, however, still classified as a remote repository, it just happens to be<br />
hosted on a server you don’t fully control. Once your repository is created, you then do a “checkout” of the<br />
code to a folder on your local machine. This is a copy of the remote code, which you can make changes to<br />
as need be, without affecting the code in the repository.<br />
Having one main repository allows for multiple people to take a copy of the same code base and<br />
collaborate on the same code project. Now that there is a local version of the repository on your machine,<br />
you can make any needed changes to it, including adding new files. Any number of files can be added to<br />
the repository by using a number of methods, but until those changes are pushed to the main repository<br />
they are only available to you. Once you have made any needed changes to the code or added any new<br />
files, you would then “commit” the code to the repository. When you commit any files, whether they are<br />
existing or new, you get the option to add a message. These can come in very, very useful when you<br />
come to revert a file and wonder why it was committed in the first place. There is always the option to use<br />
a message with no meaning or relevance at all, such as on http://whatthecommit.com; however, that<br />
doesn’t help at all. Having useful commit messages is an asset to anybody using version control, and<br />
getting into the habit of using them should be learned as early as possible. Once your message has been<br />
added, the code will be merged with the existing code in the repository. If, however, SVN detects that<br />
someone else has made a change to a file you’re about to commit, it will stop it and tell you to update to<br />
the latest version of the code. This, of course, means you check for any changes to the central repository<br />
compared to your local version. If it detects that you need to download new files, or new versions of files, it<br />
will do that for you. If you do add new files and they are successfully committed, from now on, any user<br />
that updates from the repository will get the new files. Although putting it into words can make it seem<br />
complicated, it’s actually quite simple. Have a look at Figure below to see it in a nice visual format.</p>
<p><a href="http://www.qbase.co.in/the-process-of-svn/svn/" rel="attachment wp-att-2052"><img class="alignleft size-full wp-image-2052" title="SVN Process" src="http://www.qbase.co.in/wp-content/uploads/2012/05/SVN.png" alt="" width="773" height="579" /></a></p>
<p>Of course, that only handles pushing updates and new files. What If something goes wrong and you need<br />
to get back a previous version of a file your working on? Well, you can revert your local version of a file to<br />
the version currently in the repository, or an even older version than the current one.<br />
All of these actions can easily be managed with a SVN GUI on any of the main operating systems. In most<br />
cases updating, committing, and reverting can be done by one or two clicks of a button, which makes it<br />
very simple to use and manage, and also explains why so many designers and low-end developers like it<br />
for its simplicity and ease of use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/the-process-of-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fine-tuning the UI by Theming Forms In Drupal 6.0</title>
		<link>http://www.qbase.co.in/fine-tuning-the-ui-by-theming-forms-in-drupal-6-0/</link>
		<comments>http://www.qbase.co.in/fine-tuning-the-ui-by-theming-forms-in-drupal-6-0/#comments</comments>
		<pubDate>Wed, 02 May 2012 05:29:22 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=2036</guid>
		<description><![CDATA[Thanks to Drupaldojo.com]]></description>
				<content:encoded><![CDATA[<p><iframe src="http://blip.tv/play/AYHLlFQC.html?p=1" width="480" height="300" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AYHLlFQC" style="display:none"></embed><br />
Thanks to Drupaldojo.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/fine-tuning-the-ui-by-theming-forms-in-drupal-6-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new stylish Theme for Drupal 7 TB Methys</title>
		<link>http://www.qbase.co.in/a-new-stylish-theme-for-drupal-7-tb-methys/</link>
		<comments>http://www.qbase.co.in/a-new-stylish-theme-for-drupal-7-tb-methys/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 06:05:35 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=2032</guid>
		<description><![CDATA[Looking for a refeshment in Drupal theme? This maybe your choice. Featured as a sub theme for Drupal Nucleus base theme, TB Methys is designed in simple and bold style: bold font set and wide slideshow. Furthermore, it supports multi-color skin tone, which gives more choices to customize the theme. TB Methys comes with a [...]]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.themebrain.com/sites/default/files/themes_images/methys/methys.png" alt="" width="460" height="600" /></p>
<p>Looking for a refeshment in Drupal theme? This maybe your choice.</p>
<p>Featured as a sub theme for Drupal Nucleus base theme, TB Methys is designed in simple and bold style: bold font set and wide slideshow. Furthermore, it supports multi-color skin tone, which gives more choices to customize the theme.</p>
<p>TB Methys comes with a set of features as you know from our Drupal themes. TB Methys is the first theme supporting multi-color serving for fashion and live style content.</p>
<p>Explore and see how powerful Nucleus could be.</p>
<p>You can get it here: <a href="http://www.themebrain.com/theme-detail/tb-methys">http://www.themebrain.com/theme-detail/tb-methys</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/a-new-stylish-theme-for-drupal-7-tb-methys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guys &#8211; Well this is not a Post But Wallpapers for our Buddy Drupal</title>
		<link>http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/</link>
		<comments>http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 18:47:09 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=2014</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/attachment/2105/' title='2105'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/2105-300x300.jpg" class="attachment-thumbnail" alt="2105" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/drupal_v2_1920x1200_black/' title='drupal_v2_1920x1200_black'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/drupal_v2_1920x1200_black-300x300.png" class="attachment-thumbnail" alt="drupal_v2_1920x1200_black" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/drupal_v2_1920x1200_blue/' title='drupal_v2_1920x1200_blue'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/drupal_v2_1920x1200_blue-300x300.png" class="attachment-thumbnail" alt="drupal_v2_1920x1200_blue" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/drupal_v2_1920x1200_orange/' title='drupal_v2_1920x1200_orange'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/drupal_v2_1920x1200_orange-300x300.png" class="attachment-thumbnail" alt="drupal_v2_1920x1200_orange" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/drupal_v2_1920x1200_pink/' title='drupal_v2_1920x1200_pink'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/drupal_v2_1920x1200_pink-300x300.png" class="attachment-thumbnail" alt="drupal_v2_1920x1200_pink" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/drupal_v2_1920x1200_purple/' title='drupal_v2_1920x1200_purple'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/drupal_v2_1920x1200_purple-300x300.png" class="attachment-thumbnail" alt="drupal_v2_1920x1200_purple" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/drupal7_1920x1200/' title='drupal7_1920x1200'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/drupal7_1920x1200-300x300.jpg" class="attachment-thumbnail" alt="drupal7_1920x1200" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/druplicon_sunglasses-1366x768/' title='druplicon_sunglasses-1366x768'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/druplicon_sunglasses-1366x768-300x300.jpg" class="attachment-thumbnail" alt="druplicon_sunglasses-1366x768" /></a>
<a href='http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/wallpaper1920x1200/' title='wallpaper1920x1200'><img width="300" height="300" src="http://www.qbase.co.in/wp-content/uploads/2012/04/wallpaper1920x1200-300x300.png" class="attachment-thumbnail" alt="wallpaper1920x1200" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/guys-well-this-is-not-a-post-but-wallpapers-for-our-buddy-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summary flow of the node building sequence for a View operation</title>
		<link>http://www.qbase.co.in/summary-flow-of-the-node-building-sequence-for-a-view-operation/</link>
		<comments>http://www.qbase.co.in/summary-flow-of-the-node-building-sequence-for-a-view-operation/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 13:18:39 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=2008</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<div id="attachment_2010" class="wp-caption alignleft" style="width: 419px"><a href="http://www.ibm.com/developerworks/ibm/library/i-osource5/"><img class="size-large wp-image-2010" title="Summary flow of the node building sequence for a View operation" src="http://www.qbase.co.in/wp-content/uploads/2012/04/request_node_building_lg_jpg-409x1024.jpg" alt="Summary flow of the node building sequence for a View operation" width="409" height="1024" /></a><p class="wp-caption-text">Thanks to IBM</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/summary-flow-of-the-node-building-sequence-for-a-view-operation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Write Efficient CSS and HTML for Drupal</title>
		<link>http://www.qbase.co.in/how-to-write-efficient-css-and-html-for-drupal/</link>
		<comments>http://www.qbase.co.in/how-to-write-efficient-css-and-html-for-drupal/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 08:23:04 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=2001</guid>
		<description><![CDATA[This session was given by Jan-yves Vanhaverbeke (aka jyve) and was focused on improving the quality of the HTML and CSS in a Drupal project. Which means removing unneeded Javascript and CSS of core and contrib modules and analyzing the graphical design to see which HTML elements can be styled with shared CSS selectors (also called Object [...]]]></description>
				<content:encoded><![CDATA[<p><a rel="attachment wp-att-2004" href="http://www.qbase.co.in/how-to-write-efficient-css-and-html-for-drupal/combine-css-3/"><img class="alignleft size-full wp-image-2004" style="margin-bottom: 10px;" title="combine-css" src="http://www.qbase.co.in/wp-content/uploads/2012/04/combine-css2.jpg" alt="" width="642" height="482" /></a></p>
<p>This session was given by Jan-yves Vanhaverbeke (aka <a href="http://drupal.org/user/591438">jyve</a>) and was focused on improving the quality of the HTML and CSS in a Drupal project. Which means removing unneeded Javascript and CSS of core and contrib modules and analyzing the graphical design to see which HTML elements can be styled with shared CSS selectors (also called Object Oriented CSS). Remove unneeded DIV’s in you HTML (a great tool that can help here is the 3D view in Firebug that shows all layers in the HTML) and make sure you design all common Drupal elements before you start implementing your design. So create a page with all common elements (links, headings, lists, image, etc) and make sure those are styled correctly (check margins line-height, etc). Then style all generic elements (header, footer, nav, colors and links). Optimize the HTML, for instance by using Display Suite and strip the default markup. A nice module that can help here is <a href="http://drupal.org/project/styleguide">StyleGuide</a> which add a tab to your Theme settings with a listing of all common Drupal elements including tabs, messages, etc.</p>
<h4>Some good tips to keep in mind</h4>
<ul>
<li>Use generic classes above IDs.</li>
<li>Replace module specific HTML (date.css, etc).</li>
<li>Theme a semantic element, not a drupal module. So <em>.article-teaser</em> instead of <em>.views-articles .views-row</em></li>
<li>Keep your CSS flexible. Work generic (.field instead of .page-article #content div.node div.field-title).</li>
<li>Dare to rework existing CSS as features are added.</li>
<li>Optimize your CSS using CSS standards (<a href="http://drupal.org/node/302199">http://drupal.org/node/302199</a>).</li>
<li>Use comments to add structure to your CSS</li>
<li>Compress cached pages (under performance settings).</li>
<li><a href="mailto:http://drupal.org/project/imageapi_optimize">Optimize your images</a>.</li>
<li>Use image styles with <a href="mailto:http://drupal.org/project/image_resize_filter">Image Resize Filter</a></li>
<li>Use hook_css_alter and hook_js_alter to remove Drupal JS/CSS</li>
<li>Combine different CSS groups into one using hook_css_alter() and put them all in CSS_DEFAULT.</li>
<li>Finally, test your site with Yslow.</li>
</ul>
<p><em>Thanks to Drupal Planet</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/how-to-write-efficient-css-and-html-for-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chat with the Drupal Community on IRC</title>
		<link>http://www.qbase.co.in/chat-with-the-drupal-community-on-irc/</link>
		<comments>http://www.qbase.co.in/chat-with-the-drupal-community-on-irc/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 06:43:00 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=1994</guid>
		<description><![CDATA[The Drupal IRC channels are vital for connecting the community. Not only are they a great way to get fast, effective support, but they allow users to learn more and to get involved. Drupal uses the FreeNode IRC network, irc.freenode.net, and occupies the following channels, as well as these Regional IRC Drupal channels. Note that conversations [...]]]></description>
				<content:encoded><![CDATA[<p><a rel="attachment wp-att-1995" href="http://www.qbase.co.in/chat-with-the-drupal-community-on-irc/luke_irc_client-205489-1231900187/"><img class="alignleft size-full wp-image-1995" style="margin-bottom: 10px;" title="luke_irc_client-205489-1231900187" src="http://www.qbase.co.in/wp-content/uploads/2012/04/luke_irc_client-205489-1231900187.jpeg" alt="" width="674" height="490" /></a></p>
<p>The Drupal IRC channels are vital for connecting the community. Not only are they a great way to get fast, effective support, but they allow users to learn more and to get involved. Drupal uses the FreeNode IRC network, irc.freenode.net, and occupies the following channels, as well as these <a href="http://drupal.org/node/679904">Regional IRC Drupal channels</a>. Note that conversations on some of the Drupal channels are being logged.</p>
<p>Check the <a href="http://drupal.org/irc/setting-up">&#8220;Setting up IRC&#8221; page</a> for information on how to get connected to IRC.</p>
<h3>Essential Channels to Join</h3>
<ul>
<li><em><a href="irc://irc.freenode.net/drupal">#drupal</a></em> is a lounge of sorts. Here, we talk about patches we need reviewed, quick how-to questions, and what we&#8217;ve been doing with Drupal lately, among other things. If it&#8217;s Drupal-related, and isn&#8217;t in-depth enough to take over the channel with lots of text, and doesn&#8217;t need a quiet venue, it is fair game in #drupal.</li>
<li><em><a href="irc://irc.freenode.net/drupal-contribute">#drupal-contribute</a></em> is the place to go if you want to help with core and contrib coding work, promotion, advocacy, infrastructure, and general Drupal community tasks. The rule of thumb here: if it ends up on the drupal.org infrastructure, and you are working on it or want to work on it, then this is the place to talk about it.</li>
<li><em><a href="irc://irc.freenode.net/drupal-support">#drupal-support</a></em> is for long or deep support discussions. While quick questions are okay in #drupal, some discussions are just too long for that channel, or need a quieter venue &#8212; that&#8217;s when they go in #drupal-support.</li>
</ul>
<h3>Topical Channels</h3>
<p>Note: There is a separate page for <a href="http://drupal.org/node/679904">Regional IRC Drupal channels</a>.</p>
<ul>
<li><em><a href="irc://irc.freenode.net/accessibility">#drupal-accessibility</a></em> channel to chat about coding and accessibility issues and extensions in Drupal</li>
<li><em><a href="irc://irc.freenode.net/adaptivetheme">#drupal-adaptivetheme</a></em> design and theme development support and discussion for users of Adaptivetheme.</li>
<li><em><a href="irc://irc.freenode.net/drupalassociation">#drupal-association</a></em> Connect and collaborate with the <a href="http://association.drupal.org/">Drupal Association.</a></li>
<li><em><a href="irc://irc.freenode.net/drupal-apps">#drupal-apps</a></em> for collaboration around the <a href="http://drupal.org/project/apps">Apps</a> and <a href="http://drupal.org/project/appserver">App Server</a> modules and the <a href="http://groups.drupal.org/open-app-standard">Open App Standard</a>, as well as support for building Apps.</li>
<li><em><a href="irc://irc.freenode.net/drupal-codereview">#drupal-codereview</a></em> for the <a href="http://groups.drupal.org/code-review">Code Review group</a>, discussion of the code review process, collaborating on &#8220;New Project Application&#8221; code reviews, or to solicit assistance/advice/help while performing a code review.</li>
<li><em><a href="irc://irc.freenode.net/drupal-consultants">#drupal-consultants</a></em> for Drupal Consultants. You can find paid help here, as well as advice on best practices and general discussions surrounding the business side of Drupal. Ask questions here only if you&#8217;re willing to pay for the advice.</li>
<li><em><a href="irc://irc.freenode.net/drupal-coworking">#drupal-coworking</a></em> for Drupal Coworking. If you&#8217;re new to coworking or are already a coworking pro, this is the place to ask, learn and share information about collaborative Drupal coworking spaces.</li>
<li><em><a href="irc://irc.freenode.net/drupal-design">#drupal-design</a></em> for drupal designers. This channel is not for theme related talks, but pure design.</li>
<li><em><a href="irc://irc.freenode.net/drupal-docs">#drupal-docs</a></em> for the Documentation team to discuss and organize working on the drupal.org handbooks.</li>
<li><em><a href="irc://irc.freenode.net/drupal-dojo">#drupal-dojo</a></em> for the <a href="http://groups.drupal.org/drupal-dojo">Drupal Dojo group</a>. This is where dojo lessons are discussed and organized.</li>
<li><em><a href="irc://irc.freenode.net/drupal-ecommerce">#drupal-ecommerce</a></em> for the E-commerce Group</li>
<li><em><a href="irc://irc.freenode.net/drupal-edu">#drupal-edu</a></em> consolidates the various Drupal in Education related channels, including higher education, distance learning, elearning, k-12, training. See <a href="http://groups.drupal.org/node/165144">&#8220;Forming a Drupal in Higher Edu Consortium&#8221;</a>.</li>
<li><em><a href="irc://irc.freenode.net/drupal-facebook">#drupal-facebook</a></em> for the Facebook API Group. All matters related to integrating Drupal &amp; Facebook, whether through contrib modules or directly through the API, can be discussed here.</li>
<li><em><a href="irc://irc.freenode.net/drupal-features">#drupal-features</a></em> for Features support and discussion.</li>
<li><em><a href="irc://irc.freenode.net/drupal-fit">#drupal-fit</a></em> for those interested in fitness-related activities at Drupal meetups, camps and conferences.</li>
<li><em><a href="irc://irc.freenode.net/drupal-geo">#drupal-geo</a></em> for people interested in mapping, location, and geographic topics.</li>
<li><em><a href="irc://irc.freenode.net/drupal-gitsupport">#drupal-gitsupport</a></em> for help with using Git during and after the CVS to Git migration.</li>
<li><em><a href="irc://irc.freenode.net/drupal-groups">#drupal-groups</a></em> for group organizers. Receive and give tips on how to organize a local Drupal user group.</li>
<li><em><a href="irc://irc.freenode.net/drupal-html5">#drupal-html5</a></em> for discussions on how to implement html5 with Drupal.</li>
<li><em><a href="irc://irc.freenode.net/drupal-i18n">#drupal-i18n</a></em> (i18n = internationalization) &#8211; discussions about making Drupal and modules internationalized (ready for localization)</li>
<li><em><a href="irc://irc.freenode.net/drupal-l10n">#drupal-l10n</a></em> (l10n = localization) &#8211; for Drupal translators, group managers and users of localize.drupal.org.</li>
<li><em><a href="irc://irc.freenode.net/drupal-ngo">#drupal-ngo</a></em> for open discussion on how people are using and can use Drupal most effectively for nonprofits and NGO&#8217;s.</li>
<li><em><a href="irc://irc.freenode.net/drupal-ostatus">#drupal-ostatus</a></em> for anyone interested in working on bringing Ostatus to Drupal.</li>
<li><em><a href="irc://irc.freenode.net/drupal-pubmedia">#drupal-pubmedia</a></em> for discussions regarding Drupal in public media.</li>
<li><em><a href="irc://irc.freenode.net/drupal-seo">#drupal-seo</a></em> for search engine optimization support and module development</li>
<li><em><a href="irc://irc.freenode.net/drupal-rdf">#drupal-rdf</a></em> for Semantic Web and Linked Data related support and module development</li>
<li><em><a href="irc://irc.freenode.net/drupal-services">#drupal-services</a></em> Development and support related to the Services module</li>
<li><em><a href="irc://irc.freenode.net/drupal-themes">#drupal-themes</a></em> for in-depth or lengthy theme support discussions. If your theme work seems to be causing too much screen scroll in #drupal, or needs a quieter place then this is where to go.</li>
<li><em><a href="irc://irc.freenode.net/drupal-ubercart">#drupal-ubercart</a></em> for Ubercart support and development</li>
<li><em><a href="irc://irc.freenode.net/drupal-usability">#drupal-usability</a></em> for the Usability Team to discuss changes to the UI and general usability issues.</li>
<li><em><a href="irc://irc.freenode.net/drupal-vent">#drupal-vent</a></em> is a place to share your frustrations with Drupal, core or contributed. Ever been driven crazy by a module and want to tell everyone about it but don&#8217;t want to risk hurting the maintainer&#8217;s feelings? This is the place to do it. Co-miserate with others in the Drupal community and let it all out. Keep the anger out of the main channels, out of the issue queues, and vent about it here. Lurkers are welcome. If you are a contributor and <em>want</em> to see if people are venting about your contribution, you are welcome to hang out here but please understand that the whole point of the channel is to vent and don&#8217;t take offence. <strong>Very important</strong>: This channel was created to vent about code, themes, docs, things like that, <em>not</em> people. If you have an issue with a maintainer, you should take it up privately with the maintainer.</li>
<li><em><a href="irc://irc.freenode.net/drupal-voip">#drupal-voip</a></em> for Voice over IP Drupal discussion and support</li>
<li><em><a href="irc://irc.freenode.net/drupal-watercooler">#drupal-watercooler</a></em> is a gathering place for Drupal folk to discuss non-Drupal things. It&#8217;s an off-topic area where we can chat without having to worry about being interrupted by wacky &#8220;work&#8221; stuff. All are welcome!</li>
<li><em><a href="irc://irc.freenode.net/drupal-wscci">#drupal-wscci</a></em> is home of the <a href="http://groups.drupal.org/wscci">Web Services and Context Core Initiative</a> (WSCCI) for Drupal 8. Mostly it&#8217;s discussion of that initiative, and a good place to hang out if you want to join in the effort to make Drupal 8 a web services powerhouse.</li>
<li><em><a href="irc://irc.freenode.net/drupalcon">#drupalcon</a></em> is the channel for people attending a DrupalCon; outside of that time, the channel is pretty quiet, but you might find DrupalCon organizers there.</li>
<li><em><a href="irc://irc.freenode.net/open_atrium">#open_atrium</a></em> for discussions about Open Atrium, an install profile for project management that is based on Drupal.</li>
<li><em><a href="irc://irc.freenode.net/drush">#drush</a></em> for discussions about <a href="http://drupal.org/project/drush">drush</a>, the Drupal shell.</li>
<li><em><a href="irc://irc.freenode.net/aegir">#aegir</a></em> for discussions about the <a href="http://www.aegirproject.org/">Aegir</a> hosting system for Drupal</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/chat-with-the-drupal-community-on-irc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CK-ERP also for Drupal</title>
		<link>http://www.qbase.co.in/ck-erp-also-for-drupal/</link>
		<comments>http://www.qbase.co.in/ck-erp-also-for-drupal/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 12:46:12 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=1988</guid>
		<description><![CDATA[CK-ERP is an open source accounting / educational / MRP / ERP / CRM system that runs on top of multiple middlewares. It comprises 32 modules &#8211; Contact Management, Customer Relationship Management, Customer Self Service, Vendor Relationship Management, Material Requirement Planning, Warehouse, Inventory, Service, Accounting Ledger, Bank Reconciliation, Accounts Payable, Accounts Receivable, Purchase Order, Sales [...]]]></description>
				<content:encoded><![CDATA[<p>CK-ERP is an open source accounting / educational / MRP / ERP / CRM system that runs on top of multiple middlewares. It comprises 32 modules &#8211; Contact Management, Customer Relationship Management, Customer Self Service, Vendor Relationship Management, Material Requirement Planning, Warehouse, Inventory, Service, Accounting Ledger, Bank Reconciliation, Accounts Payable, Accounts Receivable, Purchase Order, Sales Order, Quotation, POS for Cashier, POS for Manager, Human Resources, Staff Self Service, Payroll, Administration, Internationalization, Access Control, Data Import, Teacher, Counsellor, Student, Applicant, Family, Registrar, Edu Administration and Volunteer Management.</p>
<p>Link to goto ck-erp site: <a href="http://ck-erp.org/drupal/">http://ck-erp.org/drupal/</a></p>
<p>Project are also downloadable at : <a href="http://sourceforge.net/projects/ck-erp/files/latest/downloadhttp://">http://sourceforge.net/projects/ck-erp/files/latest/download</a></p>
<p>New features include,<br />
Support for Mysqli<br />
Support for Sqlite3<br />
Portuguese translation<br />
Korean translation<br />
Japanese translation<br />
Hindi translation<br />
Indonesian translation<br />
Vietnamese translation<br />
Russian translation<br />
Updated Chinese translation<br />
Updated Spanish translation<br />
Updated French translation<br />
Updated German translation<br />
Relaxation of restriction on display language must be the same as<br />
installation language</p>
<p>As far as I can determine, a Drupal+CK-ERP environment is most useful to<br />
teachers, school administrators and other educational professionals.<br />
While Drupal supports the front-end web communication between teachers<br />
and students, CK-ERP provides facilities to manage backoffice routines<br />
of the school.  All these happen within the familiar Drupal processing<br />
environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/ck-erp-also-for-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example Modules for Drupal Module Developers</title>
		<link>http://www.qbase.co.in/example-modules-for-drupal-module-developers/</link>
		<comments>http://www.qbase.co.in/example-modules-for-drupal-module-developers/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 07:47:33 +0000</pubDate>
		<dc:creator>qbaseeditor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.qbase.co.in/?p=1977</guid>
		<description><![CDATA[This project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality. Developers can learn how to use a particular API quickly by experimenting with the examples, and adapt them for their own use. Drupal Module Developers  who are really need to learn module development can use this project to [...]]]></description>
				<content:encoded><![CDATA[<h3><a rel="attachment wp-att-1978" href="http://www.qbase.co.in/example-modules-for-drupal-module-developers/drupal-words/"><img class="alignleft size-large wp-image-1978" style="margin-bottom:10px" title="drupal-words" src="http://www.qbase.co.in/wp-content/uploads/2012/04/drupal-words-1024x357.png" alt="" width="680" height="240" /></a></h3>
<h3>This project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality.</h3>
<p>Developers can learn how to use a particular API quickly by experimenting with the examples, and adapt them for their own use.</p>
<p>Drupal Module Developers  who are really need to learn module development can use this project to download example modules for their reference . The examples modules link is <a href="http://drupal.org/project/examples">http://drupal.org/project/examples<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.qbase.co.in/example-modules-for-drupal-module-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 5/69 queries in 0.246 seconds using disk: basic
Object Caching 1729/1878 objects using disk: basic

 Served from: www.qbase.co.in @ 2013-05-23 03:21:19 by W3 Total Cache -->