<?xml version="1.0" encoding="UTF-8"?><!-- generator="tezaa" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Tezaa - Wisdom of Many</title>
	<link>http://www.tezaa.com</link>
	<description>Feed provided by Tezaa.com. Click to visit.</description>
	<pubDate>Thu, 23 May 2013 07:30:01 -0500</pubDate>
	<generator>http://www.tezaa.com</generator>	<item>
	<title><![CDATA[Comment on What is the use of jQuery Update module ? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_is_the_use_of_jquery_update_module_#comment1309</link>
		<pubDate>Thu, 23 May 2013 03:07:33 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_is_the_use_of_jquery_update_module_#comment1309</guid>
		<description><![CDATA[This module upgrades the version of jQuery in Drupal core to a newer version of jQuery.
Source: http://dublin.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[This module upgrades the version of jQuery in Drupal core to a newer version of jQuery.
Source: http://dublin.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on Which are the modules that are commonly used to integrate the newsletter functionality in drupal 6 and 7? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/which_are_the_modules_that_are_commonly_used_to_integrate_the_newsletter_functionality_in_drupal_6_and_7#comment1308</link>
		<pubDate>Thu, 23 May 2013 03:06:13 -0500</pubDate>

		<guid>http://www.tezaa.com/view/which_are_the_modules_that_are_commonly_used_to_integrate_the_newsletter_functionality_in_drupal_6_and_7#comment1308</guid>
		<description><![CDATA[•	Simple news 
•	Newsletter
Source: http://dublin.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[•	Simple news 
•	Newsletter
Source: http://dublin.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What do you mean by page caching and block caching? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_do_you_mean_by_page_caching_and_block_caching#comment1307</link>
		<pubDate>Thu, 23 May 2013 03:04:38 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_do_you_mean_by_page_caching_and_block_caching#comment1307</guid>
		<description><![CDATA[Page caching:
•	If enables, page caching will only be used for anonymous users.
•	If you enable page caching, the entire HTML of each page will be stored in the database. This significantly reduces the amount of queries needed.
•	This automatically means that blocks will also get cached, disregarded their own cache settings.
•	If Varnish is configured, this will also enable varnish caching
•	The page cache max-age will be used (see below) for each page.
•	You can check the "X-Drupal-Cache" HTTP header to check if this cache is HIT.
Block caching:
•	If you enable block caching, without enabling page caching, the block cache settings will be used (for anonymous and authenticated).
•	The defaults for most blocks is "don't cache" because that is the default for blocks who don't have their cache settings specifically declared.
•	You can use block_cache_alter module to set this for each block.
•	When it's block created by Views, you can set the cache settings for a block in Views.
Source: http://dublin.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[Page caching:
•	If enables, page caching will only be used for anonymous users.
•	If you enable page caching, the entire HTML of each page will be stored in the database. This significantly reduces the amount of queries needed.
•	This automatically means that blocks will also get cached, disregarded their own cache settings.
•	If Varnish is configured, this will also enable varnish caching
•	The page cache max-age will be used (see below) for each page.
•	You can check the "X-Drupal-Cache" HTTP header to check if this cache is HIT.
Block caching:
•	If you enable block caching, without enabling page caching, the block cache settings will be used (for anonymous and authenticated).
•	The defaults for most blocks is "don't cache" because that is the default for blocks who don't have their cache settings specifically declared.
•	You can use block_cache_alter module to set this for each block.
•	When it's block created by Views, you can set the cache settings for a block in Views.
Source: http://dublin.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What are the basic files require to create a theme in drupal ? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_are_the_basic_files_require_to_create_a_theme_in_drupal_#comment1306</link>
		<pubDate>Wed, 22 May 2013 09:04:28 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_are_the_basic_files_require_to_create_a_theme_in_drupal_#comment1306</guid>
		<description><![CDATA[•	.info (declares the theme features) 
•	page.tpl.php (defines the layout)
Source: http://auckland.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[•	.info (declares the theme features) 
•	page.tpl.php (defines the layout)
Source: http://auckland.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What do you mean by hooks? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_do_you_mean_by_hooks#comment1305</link>
		<pubDate>Wed, 22 May 2013 09:03:21 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_do_you_mean_by_hooks#comment1305</guid>
		<description><![CDATA[Hooks allow modules to interact with the Drupal core. Drupal's module system is based on the concept of "hooks". A hook is a PHP function that is named foo_bar(), where "foo" is the name of the module and "bar" is the name of the hook. Each hook has a defined set of parameters and a specified result type.
To extend Drupal, a module need simply implement a hook. When Drupal wishes to allow intervention from modules, it determines which modules implement a hook and calls that hook in all enabled modules that implement it.
Source: http://auckland.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[Hooks allow modules to interact with the Drupal core. Drupal's module system is based on the concept of "hooks". A hook is a PHP function that is named foo_bar(), where "foo" is the name of the module and "bar" is the name of the hook. Each hook has a defined set of parameters and a specified result type.
To extend Drupal, a module need simply implement a hook. When Drupal wishes to allow intervention from modules, it determines which modules implement a hook and calls that hook in all enabled modules that implement it.
Source: http://auckland.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What is the architectural flow of a drupal website? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_is_the_architectural_flow_of_a_drupal_website#comment1304</link>
		<pubDate>Wed, 22 May 2013 09:01:07 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_is_the_architectural_flow_of_a_drupal_website#comment1304</guid>
		<description><![CDATA[When a request for a page is sent by a browser , this request is received by the server hosting a drupal site. Suppose a request is sent for the page http://drupal.org/user/1 this request is received by drupal installation directory as URL user/1.
We have an .htaccess file inside drupal installation directory which is read on every request.
There is a rule ( RewriteRule ^(.*)&#36; index.php?q=&#36;1 [L,QSA] ) written almost at the bottom of this file which redirects the coming request to index.php file with URL request as a parameter. which is q=user/1 is this case.
•	DRUPAL_BOOTSTRAP_CONFIGURATION : This phase Initializes internal configuration array and establishes the base URL (&#36;base_url) of the site.
•	DRUPAL_BOOTSTRAP_EARLY_PAGE_CACHE: This phase returns the requested page if the page has been already cached . once the page is returned the further execution is terminated. Mostly for the anonymous users we can have some static pages which can be cached for the better performance.
•	DRUPAL_BOOTSTRAP_DATABASE : This phase Initializes the default database.
•	DRUPAL_BOOTSTRAP_ACCESS :In Access control phase drupal denies access to hosts which were banned.
•	DRUPAL_BOOTSTRAP_SESSION: Sessions are initialized or reestablished in the session phase. The global &#36;user object representing the current user is also initialized here.
•	DRUPAL_BOOTSTRAP_LATE_PAGE_CACHE : In this phase drupal goes through a lot of execution unlike DRUPAL_BOOTSTRAP_EARLY_PAGE_CACHE phase to determine whether to serve the request from page cache or not. This includes merging settings from the database into the array that was created during the initialize configuration phase and loading or parsing module code. If the session indicates that the request was issued by an anonymous user and page caching is enabled, the page is returned from the cache and execution stops.
•	DRUPAL_BOOTSTRAP_LANGUAGE : Drupal’s multilingual support is initialized and a decision is made as to which language will be used to serve the current page based on site and user settings. Drupal supports several alternatives for determining language support, such as path prefix and domain-level language negotiation.
•	DRUPAL_BOOTSTRAP_PATH : At the path phase, code that handles paths and path aliasing is loaded. This phase enables human-readable URLs to be resolved and handles internal Drupal path caching and lookups.
•	DRUPAL_BOOTSTRAP_FULL: This phase completes the bootstrap process by loading a library of common functions, theme support, and support for callback mapping, file handling, Unicode, PHP image toolkits, form creation and processing, mail handling, automatically sortable tables, and result set paging.
Source: http://auckland.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[When a request for a page is sent by a browser , this request is received by the server hosting a drupal site. Suppose a request is sent for the page http://drupal.org/user/1 this request is received by drupal installation directory as URL user/1.
We have an .htaccess file inside drupal installation directory which is read on every request.
There is a rule ( RewriteRule ^(.*)&#36; index.php?q=&#36;1 [L,QSA] ) written almost at the bottom of this file which redirects the coming request to index.php file with URL request as a parameter. which is q=user/1 is this case.
•	DRUPAL_BOOTSTRAP_CONFIGURATION : This phase Initializes internal configuration array and establishes the base URL (&#36;base_url) of the site.
•	DRUPAL_BOOTSTRAP_EARLY_PAGE_CACHE: This phase returns the requested page if the page has been already cached . once the page is returned the further execution is terminated. Mostly for the anonymous users we can have some static pages which can be cached for the better performance.
•	DRUPAL_BOOTSTRAP_DATABASE : This phase Initializes the default database.
•	DRUPAL_BOOTSTRAP_ACCESS :In Access control phase drupal denies access to hosts which were banned.
•	DRUPAL_BOOTSTRAP_SESSION: Sessions are initialized or reestablished in the session phase. The global &#36;user object representing the current user is also initialized here.
•	DRUPAL_BOOTSTRAP_LATE_PAGE_CACHE : In this phase drupal goes through a lot of execution unlike DRUPAL_BOOTSTRAP_EARLY_PAGE_CACHE phase to determine whether to serve the request from page cache or not. This includes merging settings from the database into the array that was created during the initialize configuration phase and loading or parsing module code. If the session indicates that the request was issued by an anonymous user and page caching is enabled, the page is returned from the cache and execution stops.
•	DRUPAL_BOOTSTRAP_LANGUAGE : Drupal’s multilingual support is initialized and a decision is made as to which language will be used to serve the current page based on site and user settings. Drupal supports several alternatives for determining language support, such as path prefix and domain-level language negotiation.
•	DRUPAL_BOOTSTRAP_PATH : At the path phase, code that handles paths and path aliasing is loaded. This phase enables human-readable URLs to be resolved and handles internal Drupal path caching and lookups.
•	DRUPAL_BOOTSTRAP_FULL: This phase completes the bootstrap process by loading a library of common functions, theme support, and support for callback mapping, file handling, Unicode, PHP image toolkits, form creation and processing, mail handling, automatically sortable tables, and result set paging.
Source: http://auckland.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What is use of views? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_is_use_of_views#comment1303</link>
		<pubDate>Wed, 22 May 2013 05:19:22 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_is_use_of_views#comment1303</guid>
		<description><![CDATA[What is use of views?
The main uses of views are the following. 
•	You like the default front page view, but you find you want to sort it differently. 
•	You like the default taxonomy/term view, but you find you want to sort it differently; for example, alphabetically. 
•	You use /tracker, but you want to restrict it to posts of a certain type. 
•	You like the idea of the 'article' module, but it doesn't display articles the way you like. 
•	You want a way to display a block with the 5 most recent posts of some particular type. 
•	You want to provide 'unread forum posts'. 
•	You want a monthly archive similar to the typical Movable Type/Wordpress archives that displays a link to the in the form of "Month, YYYY (X)" where X is the number of posts that month, and displays them in a block. The links lead to a simple list of posts for that month.
Source: http://sydney.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[What is use of views?
The main uses of views are the following. 
•	You like the default front page view, but you find you want to sort it differently. 
•	You like the default taxonomy/term view, but you find you want to sort it differently; for example, alphabetically. 
•	You use /tracker, but you want to restrict it to posts of a certain type. 
•	You like the idea of the 'article' module, but it doesn't display articles the way you like. 
•	You want a way to display a block with the 5 most recent posts of some particular type. 
•	You want to provide 'unread forum posts'. 
•	You want a monthly archive similar to the typical Movable Type/Wordpress archives that displays a link to the in the form of "Month, YYYY (X)" where X is the number of posts that month, and displays them in a block. The links lead to a simple list of posts for that month.
Source: http://sydney.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on How can we handle 404 and 403 errors using Drupal backend? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/how_can_we_handle_404_and_403_errors_using_drupal_backend#comment1302</link>
		<pubDate>Wed, 22 May 2013 05:18:10 -0500</pubDate>

		<guid>http://www.tezaa.com/view/how_can_we_handle_404_and_403_errors_using_drupal_backend#comment1302</guid>
		<description><![CDATA[You can set 404 and 403 error redirection pages in configuration->site information section of admin back end. 
Source: http://sydney.fortuneinnovations.com/]]></description>
		<content:encoded><![CDATA[You can set 404 and 403 error redirection pages in configuration->site information section of admin back end. 
Source: http://sydney.fortuneinnovations.com/
]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What do you mean by entity and bundle in drupal? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_do_you_mean_by_entity_and_bundle_in_drupal#comment1301</link>
		<pubDate>Wed, 22 May 2013 05:15:55 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_do_you_mean_by_entity_and_bundle_in_drupal#comment1301</guid>
		<description><![CDATA[It is better to explain concepts of entity type, bundle,  field and entity rather than only entity and bundle. 
Entity Type: An entity type is a useful abstraction to group together fields. Let’s consider some examples of entity types:
•	Nodes
•	Comments 
•	Taxonomy terms 
•	User profiles 
Bundle: Bundles are an implementation of an entity type to which fields can be attached. You can consider bundles as subtypes of an entity type. With content nodes, for example, you can generate bundles like articles, blog posts, or products. Not all entity types have bundles, however. For example, users do not have separate bundles. For the entity types that do allow bundles, you can create as many bundles as you want. Then, using the Field system, you can add different fields to each bundle. Examples include a file download field on Basic Pages and a subtitle field on Articles
Field: A field is a reusable piece of content. In technical terms, each field is a primitive data type, with custom validators and widgets for editing and formatters for display. What's important to know as it relates to Entities is that Fields can be added to any of the bundles to help organize their data.
Entity: An entity would be one instance of a particular entity type such as a comment, taxonomy term or user profile or a bundle such as a blog post, article or product.
Source: http://sydney.fortuneinnovations.com/
]]></description>
		<content:encoded><![CDATA[It is better to explain concepts of entity type, bundle,  field and entity rather than only entity and bundle. 
Entity Type: An entity type is a useful abstraction to group together fields. Let’s consider some examples of entity types:
•	Nodes
•	Comments 
•	Taxonomy terms 
•	User profiles 
Bundle: Bundles are an implementation of an entity type to which fields can be attached. You can consider bundles as subtypes of an entity type. With content nodes, for example, you can generate bundles like articles, blog posts, or products. Not all entity types have bundles, however. For example, users do not have separate bundles. For the entity types that do allow bundles, you can create as many bundles as you want. Then, using the Field system, you can add different fields to each bundle. Examples include a file download field on Basic Pages and a subtitle field on Articles
Field: A field is a reusable piece of content. In technical terms, each field is a primitive data type, with custom validators and widgets for editing and formatters for display. What's important to know as it relates to Entities is that Fields can be added to any of the bundles to help organize their data.
Entity: An entity would be one instance of a particular entity type such as a comment, taxonomy term or user profile or a bundle such as a blog post, article or product.
Source: http://sydney.fortuneinnovations.com/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What is a block and node in drupal? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_is_a_block_and_node_in_drupal#comment1300</link>
		<pubDate>Wed, 22 May 2013 02:22:32 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_is_a_block_and_node_in_drupal#comment1300</guid>
		<description><![CDATA[What is a block and node in drupal?
Block:  Blocks are the boxes visible in various area of your Drupal website's screens. Most blocks (e.g., recent forum topics) are generated on-the-fly by various Drupal modules, but they also can be created in the administer blocks area of a Drupal site.
Whether, and where, a given block will appear on a page depends on both the theme enabled and on administrative block settings. Block settings are controlled from the block administration screen, reachable by clicking administer » site building » blocks. From this screen, it is possible to control whether each block is enabled where it will be placed on the page, and control the visibility of blocks on each page.
Source: http://www.fortuneinfotech.co.uk/
]]></description>
		<content:encoded><![CDATA[What is a block and node in drupal?
Block:  Blocks are the boxes visible in various area of your Drupal website's screens. Most blocks (e.g., recent forum topics) are generated on-the-fly by various Drupal modules, but they also can be created in the administer blocks area of a Drupal site.
Whether, and where, a given block will appear on a page depends on both the theme enabled and on administrative block settings. Block settings are controlled from the block administration screen, reachable by clicking administer » site building » blocks. From this screen, it is possible to control whether each block is enabled where it will be placed on the page, and control the visibility of blocks on each page.
Source: http://www.fortuneinfotech.co.uk/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on How can we remove the tabs in a page ? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/how_can_we_remove_the_tabs_in_a_page_#comment1299</link>
		<pubDate>Wed, 22 May 2013 02:19:04 -0500</pubDate>

		<guid>http://www.tezaa.com/view/how_can_we_remove_the_tabs_in_a_page_#comment1299</guid>
		<description><![CDATA[You can remove the tabs in page using hook_menu_alter.
Source: http://www.fortuneinfotech.co.uk/
]]></description>
		<content:encoded><![CDATA[You can remove the tabs in page using hook_menu_alter.
Source: http://www.fortuneinfotech.co.uk/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What module is good for calender integration in drupal ? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_module_is_good_for_calender_integration_in_drupal_#comment1298</link>
		<pubDate>Wed, 22 May 2013 02:16:39 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_module_is_good_for_calender_integration_in_drupal_#comment1298</guid>
		<description><![CDATA[You can use Calendar module along with Date module.
Source: http://www.fortuneinfotech.co.uk/
]]></description>
		<content:encoded><![CDATA[You can use Calendar module along with Date module.
Source: http://www.fortuneinfotech.co.uk/

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on How can we create a custom contact us form ? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/how_can_we_create_a_custom_contact_us_form_#comment1297</link>
		<pubDate>Tue, 21 May 2013 08:28:10 -0500</pubDate>

		<guid>http://www.tezaa.com/view/how_can_we_create_a_custom_contact_us_form_#comment1297</guid>
		<description><![CDATA[You can use Webform module.
Source: http://brisbane.fortuneinnovations.com/]]></description>
		<content:encoded><![CDATA[You can use Webform module.
Source: http://brisbane.fortuneinnovations.com/
]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on How can we do a custom user registration ? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/how_can_we_do_a_custom_user_registration_#comment1296</link>
		<pubDate>Tue, 21 May 2013 08:26:33 -0500</pubDate>

		<guid>http://www.tezaa.com/view/how_can_we_do_a_custom_user_registration_#comment1296</guid>
		<description><![CDATA[If you want to add more fields to the existing registration form, then you add them in Configuration->Account settings->manage Fields section.
If you want to add seperate section of fields in existing registration form, then you can use Profile 2 module.

Source: http://brisbane.fortuneinnovations.com/]]></description>
		<content:encoded><![CDATA[If you want to add more fields to the existing registration form, then you add them in Configuration->Account settings->manage Fields section.
If you want to add seperate section of fields in existing registration form, then you can use Profile 2 module.

Source: http://brisbane.fortuneinnovations.com/
]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on What is the use of ubercart module? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/what_is_the_use_of_ubercart_module#comment1295</link>
		<pubDate>Tue, 21 May 2013 08:22:11 -0500</pubDate>

		<guid>http://www.tezaa.com/view/what_is_the_use_of_ubercart_module#comment1295</guid>
		<description><![CDATA[Ubercart is the most popular Drupal E-Commerce platform for your website. It implements everything you need to start selling products online. The main Features are: 
•	Configurable product catalog includes catalog pages and a block to display product categories. 
•	Flexible product creation system with product classes. 
•	Multiple product image support out of the box. 
•	Flexible product attributes system. 
•	Basic product stock level tracking and notification. 
•	Product features to add file downloads, role promotions, and more to products. 
•	Single page checkout. 
•	Automatic account generation. 
•	Customer and administrator checkout notifications. 
•	Simple order processing. 
•	Simple order creation and editing. 
•	Shipping quotes and fulfillment, including integration with UPS, FedEx, USPS. 
•	Sales, product, and customer reports.
Source: http://brisbane.fortuneinnovations.com/]]></description>
		<content:encoded><![CDATA[Ubercart is the most popular Drupal E-Commerce platform for your website. It implements everything you need to start selling products online. The main Features are: 
•	Configurable product catalog includes catalog pages and a block to display product categories. 
•	Flexible product creation system with product classes. 
•	Multiple product image support out of the box. 
•	Flexible product attributes system. 
•	Basic product stock level tracking and notification. 
•	Product features to add file downloads, role promotions, and more to products. 
•	Single page checkout. 
•	Automatic account generation. 
•	Customer and administrator checkout notifications. 
•	Simple order processing. 
•	Simple order creation and editing. 
•	Shipping quotes and fulfillment, including integration with UPS, FedEx, USPS. 
•	Sales, product, and customer reports.
Source: http://brisbane.fortuneinnovations.com/
]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on How can we do paypal integration ? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/how_can_we_do_paypal_integration_#comment1294</link>
		<pubDate>Mon, 20 May 2013 23:43:00 -0500</pubDate>

		<guid>http://www.tezaa.com/view/how_can_we_do_paypal_integration_#comment1294</guid>
		<description><![CDATA[How can we do paypal integration ?
Source: http://dubai.fortuneinnovations.com/]]></description>
		<content:encoded><![CDATA[How can we do paypal integration ?
Source: http://dubai.fortuneinnovations.com/
]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on How can we show Home page per roles? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/how_can_we_show_home_page_per_roles#comment1293</link>
		<pubDate>Mon, 20 May 2013 23:40:56 -0500</pubDate>

		<guid>http://www.tezaa.com/view/how_can_we_show_home_page_per_roles#comment1293</guid>
		<description><![CDATA[You can use Front Page module for this requirement. You can also try Rules module.
Source: http://dubai.fortuneinnovations.com/]]></description>
		<content:encoded><![CDATA[You can use Front Page module for this requirement. You can also try Rules module.
Source: http://dubai.fortuneinnovations.com/
]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on How can we show menus per roles? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/how_can_we_show_menus_per_roles#comment1292</link>
		<pubDate>Mon, 20 May 2013 23:37:26 -0500</pubDate>

		<guid>http://www.tezaa.com/view/how_can_we_show_menus_per_roles#comment1292</guid>
		<description><![CDATA[For this requirement you can use the following modules
•	Menu item visibility
•	Menu Per Role

Source: <a href=" http://dubai.fortuneinnovations.com/drupal-cms-development " title=" Drupal Development  in Dubai "> Drupal Development in Dubai </a>
]]></description>
		<content:encoded><![CDATA[For this requirement you can use the following modules
•	Menu item visibility
•	Menu Per Role

Source: <a href=" http://dubai.fortuneinnovations.com/drupal-cms-development " title=" Drupal Development  in Dubai "> Drupal Development in Dubai </a>

]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on Where can i find best office spaces in Bangalore? Is there any website which lists all the office spaces? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/where_can_i_find_best_office_spaces_in_bangalore_is_there_any_website_which_lists_all_the_office_spaces#comment1291</link>
		<pubDate>Fri, 26 Apr 2013 05:04:58 -0500</pubDate>

		<guid>http://www.tezaa.com/view/where_can_i_find_best_office_spaces_in_bangalore_is_there_any_website_which_lists_all_the_office_spaces#comment1291</guid>
		<description><![CDATA[Fortune Props property management services provides comprehensive listing of office space in Bangalore, plug and play offices and furnished office space for IT companies in Bangalore.Source: http://www.fortuneprops.com]]></description>
		<content:encoded><![CDATA[Fortune Props property management services provides comprehensive listing of office space in Bangalore, plug and play offices and furnished office space for IT companies in Bangalore.Source: http://www.fortuneprops.com
]]></content:encoded>
				</item>	<item>
	<title><![CDATA[Comment on Is it possible to get browser-based reports with information on referrals, content recognition and user navigation of the website in Internal Drupal CMS Platform? by JoesphJoes]]></title>
		<link>http://www.tezaa.com/view/is_it_possible_to_get_browserbased_reports_with_information_on_referrals_content_recognition_and_user_navigation_of_the_website_in_internal_drupal_cms_platform#comment1290</link>
		<pubDate>Fri, 26 Apr 2013 05:03:06 -0500</pubDate>

		<guid>http://www.tezaa.com/view/is_it_possible_to_get_browserbased_reports_with_information_on_referrals_content_recognition_and_user_navigation_of_the_website_in_internal_drupal_cms_platform#comment1290</guid>
		<description><![CDATA[Yes, It is possible to get/view reports in Drupal CMS.Source: http://www.fortune-softtech.com]]></description>
		<content:encoded><![CDATA[Yes, It is possible to get/view reports in Drupal CMS.Source: http://www.fortune-softtech.com
]]></content:encoded>
				</item></channel>

</rss>