<?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>3E Solutions</title>
	<atom:link href="http://blog.3esolutions.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.3esolutions.net</link>
	<description>PHP Developers, Java Developers, .Net Programmers, Magento, Joomla, Drupal, WordPress, Ecommerce, iphone apps, blackberry application development</description>
	<lastBuildDate>Wed, 05 Oct 2011 12:15:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple HTML Tips for the Non Technical Marketer</title>
		<link>http://blog.3esolutions.net/2011/07/keeping-email-marketing-simple.html</link>
		<comments>http://blog.3esolutions.net/2011/07/keeping-email-marketing-simple.html#comments</comments>
		<pubDate>Wed, 13 Jul 2011 13:23:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[quicktips]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/2011/07/keeping-email-marketing-simple.html</guid>
		<description><![CDATA[Marketing is not about the products you sell, but about the stories you tell.
There are plenty of great email marketing tools out there, but how easy is it for a non technical person to put out a great (read fantastic) newsletter?  Its a question I get asked a lot, and well the simple answer is, [...]]]></description>
			<content:encoded><![CDATA[<h3><span style="color: #800000;">Marketing is not about the products you sell, but about the stories you tell</span>.</h3>
<p>There are plenty of great email marketing tools out there, but how easy is it for a non technical person to put out a great (read fantastic) newsletter?  Its a question I get asked a lot, and well the simple answer is, having basic HTML knowledge can take you a long way.</p>
<p>Learning the fundamentals of HTML can free you from relying on your webmaster or a third-party program for simple updates, and it will enable you to update your website, email newsletters, or in some cases add links and graphics to forums and social media sites. And of course, it’s always a great skill to include on your resume!</p>
<p>So here we go with some basics tips  &amp; tricks that could be invaluable to you.</p>
<h2><strong><strong>HTML Basics</strong></strong></h2>
<h3><strong><strong><br />
</strong></strong><span style="color: #800000;"><strong><a href="http://blog.hubspot.com/blog/tabid/6307/bid/19727/blog/tabid/6307/bid/5586/Basic-HTML-Every-Internet-Marketer-Should-Know.aspx"> </a></strong><strong><strong>1. Aligning Images and Text Wrapping</strong></strong></span></h3>
<p>By default, when you place an image on a page, any other elements around it (such as text) move down underneath it. Oftentimes, this might not look desirable. If you&#8217;d instead like to wrap text around an image, all you need is the <strong>align</strong> attribute.</p>
<p><strong>Code Before (No Alignment):</strong></p>
<p>&lt;img src=&#8221;screen-create.png&#8221;&gt;<br />
Your text here…</p>
<p><strong>Code After (Left Aligned):</strong></p>
<p>&lt;img src=&#8221;screen-create.png&#8221; <strong>align=&#8221;left&#8221;</strong>&gt;<br />
Your text here…</p>
<p><strong>Depending upon your layout, you can use the following options:</strong></p>
<p><strong>align=&#8221;left&#8221;<br />
align=&#8221;right&#8221;<br />
align=&#8221;top&#8221;<br />
align=&#8221;middle&#8221;<br />
align=&#8221;bottom&#8221;<br />
align=&#8221;baseline&#8221;<br />
align=&#8221;texttop&#8221;<br />
align=&#8221;absmiddle&#8221;<br />
align=&#8221;absbottom&#8221;</strong></p>
<p>You can also add extra space around the image if you don’t want text to be too close. You can do this by adding <strong>vspace</strong> (vertical) and <strong>hspace</strong> (horizontal) to your image tag. The higher the number, the more space there will be around the image:</p>
<p>&lt;img src=&#8221;screen-create.png&#8221; align=&#8221;left&#8221;<strong> vspace=&#8221;20&#8243; hspace=&#8221;40&#8243;</strong>&gt;<br />
Your text here…</p>
<h3><strong><span style="color: #800000;">2. Changing Font Styles</span></strong></h3>
<p>Yes, a lot of website editors do come with a rich-text option to change the styles of your fonts. However, there have been many times I can recall still needing to know basic HTML font tags so that I could have more control over my font styles. Here are some easy ones to use:</p>
<p><strong><strong>A. Bold Text</strong></strong></p>
<p><strong>Code:</strong></p>
<p><strong>&lt;b&gt;</strong>This is bold Text<strong>&lt;/b&gt;<br />
</strong>or<strong><br />
&lt;strong&gt;</strong>This is bold Text<strong>&lt;/strong&gt;</strong></p>
<p><strong>Output:</strong><strong> </strong></p>
<p><strong>This is bold text</strong></p>
<h4><strong>B. Underlined Text<br />
</strong></h4>
<p><strong>Code:</strong></p>
<p><strong>&lt;u&gt;</strong>This text is underlined<strong>&lt;/u&gt;</strong></p>
<p><strong>Output:</strong></p>
<p>This text is underlined</p>
<h4><strong>C. Italicized Text<br />
</strong></h4>
<p><strong>Code:</strong></p>
<p><strong>&lt;i&gt;</strong>This text is italicized<strong>&lt;/i&gt;</strong></p>
<p><strong>Output:</strong><em> </em></p>
<p><em>This text is italicized<br />
</em></p>
<h4><strong>D. Font Size</strong></h4>
<p><strong>Code:</strong></p>
<p><strong>&lt;font size=”2”&gt;</strong>This font is size 2<strong>&lt;/font&gt;</strong></p>
<p><strong>Output:</strong></p>
<p>This font is size 2</p>
<h4><strong>E. Font Color</strong></h4>
<p>Font colors can use written colors or HEX codes. <a href="http://www.colorschemer.com/online.html">Click here</a> for a <a href="http://www.colorschemer.com/online.html">HEX color generator</a>.</p>
<p><strong>Code:</strong></p>
<p><strong>&lt;font color=”black”&gt;</strong>This font is black<strong>&lt;/font&gt;</strong></p>
<p><strong>Output:</strong><br />
This font is red</p>
<h4><strong>F. Font Type</strong></h4>
<p>Change the type of the font.</p>
<p><strong>Code:</strong></p>
<p><strong>&lt;font face=”verdana”&gt;</strong>This font is Verdana<strong>&lt;/font&gt;</strong><br />
or<br />
<strong>&lt;font face=”trebuchet ms”&gt;</strong>This font is Trebuchet MS<strong>&lt;/font&gt;</strong></p>
<p><strong>Output:</strong></p>
<p>This font is Verdana<br />
This font is Trebuchet MS</p>
<p><strong>The following are considered web-safe fonts:</strong></p>
<p><em>Arial, Arial Black, Comic Sans MS, Courier, Courier New, Georgia, Helvetica, Impact, Palatino, Times New Roman, Trebuchet MS, Verdana</em><strong><br />
</strong></p>
<h4><strong>G. Combine Multiple Properties</strong></h4>
<p>Here is a way you can combine multiple elements in your content:</p>
<p><strong>Code:</strong></p>
<p><strong>&lt;font face=”comic sans ms” size=”2” color=”green”&gt;&lt;strong&gt;&lt;u&gt;</strong>This font is Comic Sans MS, Size 2, Bold, Underlined and is the color Green&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;</p>
<p><strong>Output:</strong></p>
<p><strong>This font is Comis Sans MS, Size 2, Bold, Underlined and is the color Green</strong></p>
<p><strong><br />
</strong></p>
<h3><strong><span style="color: #800000;">3. Blockquotes</span></strong></h3>
<p>Blockquotes are great way to pull a quote out of a paragraph and make it an indentation. Here is an example <em>(Note: you will need CSS to style the actual quote, which we&#8217;ll cover in a later lesson!)  :) <img src='http://blog.3esolutions.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p><strong>Code:</strong></p>
<p><strong>&lt;blockquote&gt;&#8221;</strong>If you want to be happy, be.&#8221; – Leo Tolstoy <strong>&lt;/blockquote&gt;</strong></p>
<p><strong>Output:</strong></p>
<blockquote><p>&#8220;If you want to be happy, be.&#8221; – Leo Tolstoy</p></blockquote>
<h3><strong><span style="color: #800000;">4. Horizontal Lines</span></strong></h3>
<p>This tag will draw a line horizontally across your page or a section of the page, depending upon where you put it. All you need is the <strong>&lt;hr&gt;</strong> tag, which stands for ‘horizontal rule.’</p>
<p><strong>Code:</strong></p>
<p>&lt;hr&gt;</p>
<p><strong>Output:</strong></p>
<hr />You can also control the length (<strong>width</strong>) of the line and thickness (<strong>size</strong>).</p>
<p><strong>Code:</strong></p>
<p>&lt;hr size=”10” width=”50%”&gt;</p>
<p><strong>Output:</strong></p>
<hr size="”10”" />To make the line solid, use the attribute <strong>noshade</strong>:</p>
<p><strong>Code:</strong></p>
<p>&lt;hr size=”10” width=&#8221;50%&#8221;<strong> noshade</strong>&gt;</p>
<p><strong><br />
</strong></p>
<h3><strong><span style="color: #800000;">5. BONUS: Comments Tag</span></strong></h3>
<p>I <em>love</em> this trick and use it a lot. Sometimes, you need to make notes in your markup but don’t want them to show publically on the page. I also use this to save HTML in a page that I don’t necessarily want to delete, but I don’t want it show on the page either. This way, if I ever need the code, it’s still there, hidden in the background.</p>
<p>All you need to do is put the notes or HTML you want to hide by surrounding it with the start comments tag <strong>&lt;!&#8211;</strong> and the end comments tag<strong> &#8211;&gt;</strong></p>
<p><strong>Code:</strong><strong> </strong></p>
<p>&lt;!&#8211; Here are my notes and HTML I want to hide <strong>&#8211;&gt;</strong></p>
<p><strong><br />
</strong></p>
<p>Now that you have your starter&#8217;s kit, give it a shot and let us know if this article was useful for you.</p>
<p>Happy HTMLing!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2011/07/keeping-email-marketing-simple.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making sure your website vistiors Click and Stick</title>
		<link>http://blog.3esolutions.net/2011/05/making-sure-your-website-vistiors-click-and-stick.html</link>
		<comments>http://blog.3esolutions.net/2011/05/making-sure-your-website-vistiors-click-and-stick.html#comments</comments>
		<pubDate>Wed, 11 May 2011 15:44:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=114</guid>
		<description><![CDATA[The average person does more than 30 searches per day in Google. They also clock over seven hours per month interacting with branded content on Twitter and Facebook. And its not just reading &#8212; they also watch more than 180 videos per month on sites like YouTube and Vimeo.  These statistics all add up to [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;"><a href="http://blog.3esolutions.net/wp-content/uploads/2011/05/click.jpg"><img class="alignleft size-full wp-image-122" title="click" src="http://blog.3esolutions.net/wp-content/uploads/2011/05/click.jpg" alt="" width="300" height="300" /></a>The average person does more than 30 searches per day in Google. They also clock over seven hours per month interacting with branded content on Twitter and Facebook. And its not just reading &#8212; they also watch more than 180 videos per month on sites like YouTube and Vimeo.  These statistics all add up to one very educated consumer.</span></p>
<p>Knowledge is everywhere online, and your typical internet user has a voracious appetite for learning. But from the perspective of an online marketer, this consumer is also a click-happy and easily distractible one. Employ the below tactics to make sure they click on &#8212; and stick to &#8212; your website with a purpose.</p>
<h2><span style="color: #008000;"><strong><span style="color: #008000;">Own Their Next Click </span></strong></span></h2>
<p>Your visitors are going to click, but it&#8217;s up to you to make sure the link is productive for your business. In addition to your main navigation links, make sure links to other web properties you own are prominently displayed on your homepage. Have call-to-action buttons and other offers above the fold so they&#8217;re as front and center as possible. And wherever you can, prove that your clicks are worth it. Visitors will never know your blog is informative and bleeding edge unless they get there, so if its normal position is in your main navigation, experiment with placing a bigger, more-blown out linking image in the margin, or even a module that shows titles of recent posts. Also, make sure your company&#8217;s social media accounts are front and center. A click to your Facebook Page or recent Tweets isn&#8217;t a loss, but a click on the back button is.</p>
<h2><span style="color: #000080;"><strong><span style="color: #008000;">Be Smart About Flash and Graphics </span></strong></span></h2>
<p>Image sliders look great on home pages and give businesses the opportunity to convey multiple messages on their website&#8217;s most prime piece of real estate. But if you have a scrolling mechanism that shows six images for five seconds each, what happens if your visitor only hangs around for 20 seconds? They won&#8217;t see the fifth and sixth image in your sequence. What if those links direct visitors to your biggest money-makers, like your demo request page or free consultation landing pages? Low visibility will dictate a poor return. Lots of companies like to lead with brand messaging in these spaces, but avoid this. Prioritize your best offers, and show them first.</p>
<h2><span style="color: #000080;"><strong><span style="color: #008000;">Position Yourself With Simple Language </span></strong></span></h2>
<p>People are spending seconds &#8212; not minutes &#8212; on your site, so be as clear and concise as you can be with the language you use. Avoid populating your &#8220;Products&#8221; or &#8220;Services&#8221; drop-down lists with brand names, because people don&#8217;t know the names of what they&#8217;re looking for yet. Instead, use adjective-rich phrasing to explain what those products are, and introduce them to your registered trademark on the product page. And when folks click through to those pages, don&#8217;t bury critical facts about your products and services under a mountain of text. Think like your customer. Ask yourself what you would want to know, and use that answer to craft a strong thesis statement for the first paragraph of each page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2011/05/making-sure-your-website-vistiors-click-and-stick.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>iPhone 5 &#8211; The Rumors We Hear</title>
		<link>http://blog.3esolutions.net/2011/04/iphone-5-the-rumors-we-hear.html</link>
		<comments>http://blog.3esolutions.net/2011/04/iphone-5-the-rumors-we-hear.html#comments</comments>
		<pubDate>Tue, 05 Apr 2011 05:43:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[iPhone 5]]></category>
		<category><![CDATA[iphone applications]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=106</guid>
		<description><![CDATA[October5, 2011
With the release of iPhone4S, we thought it was time to wrap up our blog post from April 2011 which spoke of the much anticipated features on iPhone5. The reality of Apple&#8217;s latest device release finds improved camera and supposedly great voice recognition as the only advancements from the iPhone4. As Tim Cook admitted [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #0000ff;"><em><strong>October5, 2011</strong></em></span></p>
<p><span style="color: #0000ff;"><em><strong>With the release of iPhone4S, we thought it was time to wrap up our blog post from April 2011 which spoke of the much anticipated features on iPhone5. The reality of Apple&#8217;s latest device release finds improved camera and supposedly great voice recognition as the only advancements from the iPhone4. As Tim Cook admitted (in not so many words) this new release is merely an iPhone 4 with slight upgrades. While this chapter concludes in a disappointing way, we&#8217;re looking for to what Apple comes up with next.</strong></em></span></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Even with the iPad 2 just recently released, all the chatter seems to be about the upcoming iPhone5.  We have been hearing a lot of rumours &#8211; but whats the real take on what to expect from Apple.  Our friends at <em><a href="http://www.nowhereelse.fr/iphone-5-43523/">Nowhere Else</a></em> have put together a beautiful infographic with the latest rumours and progress bars illustrating the likelihood of each one of these rumors to actually occur.</p>
<p>We must say, we are in complete agreement, with one exception: after a slip up from SONY&#8217;s Sir Howard Stringer, on their involvement with the next iPhone&#8217;s image sensor &#8211; we think the chances  of  a better camera are 80 &#8211; 90%.</p>
<p>Let us know in the comments if you think these predictions are accurate!<br />
<a href="http://blog.3esolutions.net/wp-content/uploads/2011/04/iPhone-5-Rumor-RoundUp-mini1.jpg"><img class="aligncenter size-full wp-image-110" title="iPhone-5-Rumor-RoundUp-mini" src="http://blog.3esolutions.net/wp-content/uploads/2011/04/iPhone-5-Rumor-RoundUp-mini1.jpg" alt="" width="908" height="4424" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2011/04/iphone-5-the-rumors-we-hear.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Magento is More Popular than Oscommerce</title>
		<link>http://blog.3esolutions.net/2011/03/secrets-to-why-magento-is-more-popular-than-oscommerce.html</link>
		<comments>http://blog.3esolutions.net/2011/03/secrets-to-why-magento-is-more-popular-than-oscommerce.html#comments</comments>
		<pubDate>Thu, 24 Mar 2011 05:22:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ecommerce]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/2011/03/secrets-to-why-magento-is-more-popular-than-oscommerce.html</guid>
		<description><![CDATA[There are so many shopping carts out there, and it is hard to know which one to use for your website. That is a common question for a web community which currently contemplates in eCommerce field truly impressive shift from stable and proven osCommerce to relatively new Magento eCommerce platform.
The interesting tendency we’ve traced
In fact [...]]]></description>
			<content:encoded><![CDATA[<p>There are so many shopping carts out there, and it is hard to know which one to use for your website. That is a common question for a web community which currently contemplates in eCommerce field truly impressive shift from stable and proven osCommerce to relatively new Magento eCommerce platform.</p>
<h2><span style="color: #993300;"><strong>The interesting tendency we’ve traced</strong></span></h2>
<p>In fact osCommerce is now faced with a serious challenger which certainly has no difficulties to penetrate the market of eCommerce open source. The new Magento package is set to take the eCommerce community by storm. It is one of the most promising of the moment having already attracted a large following, and osCommerce the inevitable is going to have to leave its place. Google Trends, in particular, graphically shows this tendency reflecting the situation where the new Magento just beats the hell out of the traditional osCommerce. Magento is now officially the most searched-for eCommerce solution.</p>
<p><a href="http://blog.3esolutions.net/wp-content/uploads/2011/03/magento-vs-oc.jpg"><img class="alignleft size-medium wp-image-100" title="magento vs oc" src="http://blog.3esolutions.net/wp-content/uploads/2011/03/magento-vs-oc-300x212.jpg" alt="" width="300" height="212" /></a></p>
<p>Let’s face it – before Magento’s release osCommerce was the most popular eCommerce platform. The situation has surely changed since then, and the greater amount of customers is going now exceptionally with a Magento based shopping cart. osCommerce in its turn enjoys less popularity, though remains being around with a very well established and responsive community to offer support and the majority of followers to prefer using it.</p>
<h2><span style="color: #000080;"><strong><span style="color: #993300;">Magento and osCommerce – what’s behind each of them?</span></strong></span></h2>
<p>It is important to know when selecting your shopping cart what features you need, which is partially why we’ve composed this article to help you know the advantages and disadvantages of each platform. So let’s get it on comparing these two eCommerce applications and see which one is better to choose while launching online shops.</p>
<h3><span style="color: #993300;"> Magento</span> <span style="font-weight: normal;">eCommerce platform is a highly efficient open source eCommerce engine. It offers you an extensive suite of powerful tools for creating and managing an online store. Magento runs on the Apache/MySQL/PHP platform and to create an online store with it you need reliable web hosting services. Support for Magento shopping cart is provided free by an active open sou</span><span style="font-weight: normal;">rce community, professional support by subscription to Varien, the company behind Magento, is cost charging. The large array of the rich features is one of the main benefits of Magento. Let’s now review the key features of Magento that will help you get your store up and running:</span></h3>
<p>•<strong> Analytics and Reporting</strong> – the script is integrated with Google Analytics (page view tracking, e-commerce tracking) and offers many different reports.<br />
•	<strong>Product Browsing </strong>– multiple images for products, options for extensive reviews, wishlists and much more.<br />
•	<strong>Catalog Browsing</strong> – easy navigation, advanced product filtering system, product comparison.<br />
•	<strong>Catalog Management</strong> – inventory management, batch import and export of products, different tax rates per location, additional product attributes.<br />
•	<strong>Customer Accounts</strong> – order status and history, e-mail and RSS feeds for products in the wishlist, newsletter subscription, default billing and shipping address.<br />
•	<strong>Customer Service</strong> – enhanced features for customers’ accounts, Contact Us form, comprehensive order tracking and history, customizable order e-mails.<br />
•	<strong>Order Management</strong> – create orders through admin area, create multiple invoices shipments and credit memos, call center order creation option.<br />
•	<strong>Payment </strong>– different payment methods: credit cards, PayPal, Authorize.net, Google Checkout, checks, money orders, support of external payment modules like Cybersource, ePay, eWAY, regular credit cards like Visa, Master Card, American Express, Discover, and many more.<br />
•	<strong>Shipping</strong> – shipping to multiple addresses, flat rating shipping, supports UPS, UPS XML (account rates), FedEx (account rates), USPS and DHL.<br />
•	<strong>Checkout</strong> – one page checkout, SSL support, checkout without having an account.<br />
•	<strong>Search Engine Optimization</strong> – the most search engine friendly e-commerce application, Google SiteMap support.<br />
•	<strong>International Support</strong> – multiple languages and currencies, list of allowed countries for registration, purchasing and shipping, localization.<br />
•	<strong>Marketing Promotions and Tools</strong> – coupons, discounts and different promotion options.<br />
•	<strong>Site Management</strong> – control of multiple web sites, multiple languages, tax rate with support for US and International markets, customizable outlook through templates.<br />
•	<strong>Encryption Key </strong>– security storage of the sensitive data in the script’s database.</p>
<h3><strong><span style="color: #993300;">osCommerce</span></strong> <span style="font-weight: normal;">is a free open source online store-management software which is powered by very well established and responsive osCommerce community. To run any osCommerce website the web server should support the powerful PHP web scripting language and fast MySQL database. osCommerce offers a wide range of features that allows online stores to be setup fairly quickly with ease. This basic set of functionalities that meet the common needs of online businesses is:</span></h3>
<p>•	<strong>Administration / Backend Functionality</strong><br />
- supports unlimited products and categories;<br />
- add/Edit/Remove categories, products, manufacturers, customers, and reviews<br />
- contact customers directly via email or newsletters;<br />
- multilingual support;<br />
- multicurrency support;<br />
•<strong> Customer / Frontend Functionality</strong><br />
- all orders stored in the database for fast and efficient retrieval;<br />
- customers can maintain their accounts;<br />
- address book for multiple shipping and billing addresses;<br />
- fast and friendly quick search and advanced search features;<br />
- product reviews for an interactive shopping experience;<br />
- foreseen checkout procedure;<br />
- secure transactions with SSL;<br />
<strong> •	Product Functionality</strong><br />
- dynamic product attributes relationship;<br />
- HTML based product descriptions;<br />
- control if out of stock products can still be shown and are available for purchase;<br />
- customers can subscribe to products to receive related emails/newsletters;<br />
<strong> •	Payment Functionality</strong><br />
- accept numerous offline payment processing (cheque, money orders, etc);<br />
- accept numerous online payment processing (PayPal, 2CheckOut, Authorize.net, iPayment, etc);<br />
- disable certain payment services based on a zone basis;<br />
<strong> •	Shipping Functionality</strong><br />
- weight, price, and destination based shipping modules;<br />
- real-time quotes available (UPS, USPS, FedEx, etc);<br />
•<strong> Tax Functionality</strong><br />
- flexible tax implementation on a state and country basis;<br />
- set different tax rates for different products;<br />
- charge tax on shipping on a per shipping service basis.</p>
<h2><span style="color: #993300;">Why exactly Magento beats osCommerce – Key Advantages</span></h2>
<p>•	Magento shopping cart is built to be easy to update (+)<br />
The issues why so many people opt for Magento shopping cart are rather diverse. The thing is that Magento is a new eCommerce solution which is being regularly improved. Varien, the company who backs the cart, is very active in updating the code and fixing bugs. At the same time osCommerce is rather outdated and it doesn’t surprise web developers and store owners with the new updates. Magento is superior to osCommerce in the useful features it has, programming structure, and frequency of project code updates.</p>
<p>•	Magento has many add-on modules within the rest of new and important capabilities (+)<br />
The feature set for Magento includes not only all of the features of osCommerce, but also many of the add-on modules. For instance, it includes coupons, order editing, SEO urls and meta tags, abandoned shopping cart reporting, product comparisons, editable order emails, shipping estimator in shopping cart without the need to login, and much more. Magento also has ‘store view’ which allows online shop keepers the ability to set up multiple stores – with the same products, at different prices, and even in different languages – from a single admin area</p>
<p>•	Magento runs fairly slow, heavily layered and overly complicated coding style and thousands of files requires a lot of time to learn and do customizations (-)<br />
Some people insist that OsCommerce is easier to edit and Magento is better for web developers rather than shop owners. Other people argue this statement proving that Magento is also easy-editable software. It seems Magento is really easy to install and manage if you know how to do it properly. However, getting started with Magento can be difficult without the right guidance. For some Magento is way overly complicated to customize efficiently. It is rather inconvenient to manually add a large number of products at once to a Magento installation. Plus it needs dedicated servers from particular hosting providers in order to run fast shops while shared web hosting account will be enough for osCommerce.</p>
<p>•	another appeal of Magento is in its nice default template (+)<br />
Magento templates and themes enable the owners to customize the look and feel of the store, even optimize it for mobile phones. Modular code enables them to upgrade the Magento installation while retaining their customizations. At the same time installing an osCommerce template is not an easy task. osCommerce does not support a template installer option. Installing a new template for osCommerce is actually a new installation of the osCommerce files. So, there is no graphic template system meaning it is harder to modify the design to adjust the style and layout. Additionally, it can take a lot of time and money to install all the add-ons you want. osCommerce, by the way, has the most available number of contributions and modifications which is a way beneficial.</p>
<p>•	And finally Magento offers well organized back-end along with cleaner site structure (+)<br />
People prefer using Magento for the cleaner admin, code, and much more. Magento system scores highly for its look and sensible overall features. Its back-end is well organized and most items of concern are thoroughly covered. Talking about osCommerce, some people admit that its code is a real mess and the back-end is really pitiful. Others mention that the structure of the site, written in PHP and using clear definitions, is rather sensible with all the text seen on an osCommerce store being handily stored in reference files which contain only plain text for translation. All in all, osCommerce is known to be easy to install but a real pain to configure and customize.</p>
<h2><span style="color: #993300;">What this means for us as an eCommerce community?</span></h2>
<p>Magento project has revolutionized eCommerce with its flexibility and power. It takes the best things from osCommerce such as being open source, easy to modify, and having a strong community, but then takes these to the next level of sophistication. Magento developers practiced all the advantages of the last time to shape web application incorporating the richer user interface and better ergonomics.<br />
This comparison of Magento and osCommerce shopping cart does not claim to be anyway exhaustive. So, if you had experience with either Magento or osCommerce, please share your perspective in the comments to mention particularly what others should consider before switching from one application to another.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2011/03/secrets-to-why-magento-is-more-popular-than-oscommerce.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Magento Performance Enhancement</title>
		<link>http://blog.3esolutions.net/2010/12/magento-performance-enhancement.html</link>
		<comments>http://blog.3esolutions.net/2010/12/magento-performance-enhancement.html#comments</comments>
		<pubDate>Wed, 15 Dec 2010 08:06:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento customisation]]></category>
		<category><![CDATA[Magento developers]]></category>
		<category><![CDATA[Magento Performance Enhancement]]></category>
		<category><![CDATA[Magento speed]]></category>
		<category><![CDATA[Magento themes]]></category>
		<category><![CDATA[Magento tunning]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=94</guid>
		<description><![CDATA[Magento configuration
1. let Magento put session data in database instead of files. Part of configuration to do that in local.xml
&#60;/resources&#62;
&#60;session_save&#62;&#60;![CDATA[db]]&#62;&#60;/session_save&#62;
&#60;/global&#62;
2. use global attributes for products if you dont  need per view attribute values (admin -&#62; attributes)
3. enable APC or Memcache cache backend and of course enable caching in admin -&#62; cache management
4. enable Mage_Compiler [...]]]></description>
			<content:encoded><![CDATA[<h4><strong><a href="http://blog.3esolutions.net/wp-content/uploads/2010/12/images.jpg"><img class="alignleft size-full wp-image-98" title="images" src="http://blog.3esolutions.net/wp-content/uploads/2010/12/images.jpg" alt="" width="225" height="225" /></a>Magento configuration</strong></h4>
<p>1. let Magento put session data in database instead of files. Part of configuration to do that in local.xml</p>
<div>&lt;/resources&gt;<br />
&lt;session_save&gt;&lt;![CDATA[db]]&gt;&lt;/session_save&gt;<br />
&lt;/global&gt;</div>
<p>2. use global attributes for products if you dont <em> </em>need per view attribute values (admin -&gt; attributes)</p>
<p>3. enable APC or Memcache cache backend and of course enable caching in admin -&gt; cache management</p>
<p>4. enable Mage_Compiler module and disable unneeded modules in admin -&gt; system -&gt; configuration -&gt; advanced</p>
<p>5. Enable Flat Catalog indexing</p>
<p><strong>6. Other useful tips<br />
</strong></p>
<p>If you dont have fast connection enough or you want speed up user  connections to your Magento you should do few optimalization. You can  batch resize product images, or merge and compress CSS files.</p>
<p><strong>6.1. Image size optimalization</strong></p>
<p>You can simply follow tips for resizing images from this How to Article – <strong> </strong><a href="http://www.magentocommerce.com/wiki/resizing_images_en-masse_in_order_to_improve_page_load_times">Resizing images that are too big or too small for the product pages, en-masse</a>. (Tips from this article need linux compatible OS with some basic programms installed.)</p>
<p><strong>6.2. CSS files compression</strong></p>
<p>Open your Magento layout definition XML in your view. And copy all  CSS files contents to one css file, and include it instead of multiple  files. Then use <a href="http://www.cssdrive.com/index.php/main/csscompressor/">CSS Compressor</a> to compress CSS files by removing unnecessary space and definitions.  There is possibility all files in one will not work together, then you  will have to experiment with right combination (eg. reset + menu +  clears , boxes , your own … ).</p>
<p><strong>6.3. Javascript files compression</strong></p>
<p>Is used by Magento by default i think, otherwise you should enable it in your Magento administration.</p>
<p><strong>6.4. Gzip / Deflate  compression</strong></p>
<p>As written above, you can use PHP gzip output filter, or Apache<strong> </strong>module mod_deflate. Be noticed, than you can use just one of them</p>
<p>I hope you liked this post, and find it useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2010/12/magento-performance-enhancement.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blackberry media player application</title>
		<link>http://blog.3esolutions.net/2010/09/blackberry-media-player-application.html</link>
		<comments>http://blog.3esolutions.net/2010/09/blackberry-media-player-application.html#comments</comments>
		<pubDate>Fri, 24 Sep 2010 06:22:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[blackberry application development]]></category>
		<category><![CDATA[Blackberry applications]]></category>
		<category><![CDATA[blackberry apps]]></category>
		<category><![CDATA[mobile application development]]></category>
		<category><![CDATA[mobile applications]]></category>
		<category><![CDATA[mobile apps company]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=90</guid>
		<description><![CDATA[Bleckberry media player application developed by 3E Solutions is now available on the blackberry application world.
3E Solutions has been working on various new blackberry application developments and  research from past two years. We have come up with very high end applications which are enriched with features and fascinating designs. Above application is one of them. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.3esolutions.net/wp-content/uploads/2010/09/101782.png"><img class="alignleft size-full wp-image-91" title="101782" src="http://blog.3esolutions.net/wp-content/uploads/2010/09/101782.png" alt="" width="300" height="226" /></a>Bleckberry media player application developed by <a href="http://www.3esolutions.net" target="_blank">3E Solutions</a> is now available on the blackberry <a href="http://appworld.blackberry.com/webstore/content/screenshots/13947" target="_blank">application world.</a></p>
<p>3E Solutions has been working on various new <a href="http://www.3esolutions.net/services/mobile-application-development/blackberry-development" target="_blank">blackberry application developments</a> and  research from past two years. We have come up with very high end applications which are enriched with features and fascinating designs. Above application is one of them. It has mind blowing user interface designed by the team and the functionality you have never seen anywhere. Application is already making news in the market.</p>
<p>3E Solutions is now one of the big players in <a href="http://www.3esolutions.net/services/mobile-application-development" target="_blank">mobile application development</a> which includes iphone and Anroid.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2010/09/blackberry-media-player-application.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 10 Best Android Resources on the Web</title>
		<link>http://blog.3esolutions.net/2010/07/the-10-best-android-resources-on-the-web.html</link>
		<comments>http://blog.3esolutions.net/2010/07/the-10-best-android-resources-on-the-web.html#comments</comments>
		<pubDate>Thu, 01 Jul 2010 06:48:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android application development]]></category>
		<category><![CDATA[android applications]]></category>
		<category><![CDATA[android developer]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=78</guid>
		<description><![CDATA[You and I both know that Google’s App Market doesn’t boast the numbers  of Apple’s industry-leading App Store, but with slick new devices,  updated software releases, and a high carrier and manufacturer adoption  rate, the Android platform is riding high on a wave of popularity that is attracting new  developers, app [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.3esolutions.net/wp-content/uploads/2010/07/open-handset-alliance-android.jpg"><img class="alignleft size-medium wp-image-83" title="open-handset-alliance-android" src="http://blog.3esolutions.net/wp-content/uploads/2010/07/open-handset-alliance-android-300x243.jpg" alt="" width="300" height="243" /></a>You and I both know that Google’s App Market doesn’t boast the numbers  of Apple’s industry-leading App Store, but with slick new devices,  updated software releases, and a high carrier and manufacturer adoption  rate, the <a href="http://www.3esolutions.net/services/mobile-application-development/android-development" target="_blank">Android</a> platform is riding high on a wave of popularity that is attracting new  developers, app creators, entrepreneurs, and most importantly,  consumers.</p>
<p>And with Android  making a 10-position jump in the most recent edition of the Online  Talent Report, it clearly indicates a spark of heavy interest in  development on the <a href="http://www.3esolutions.net/services/open-source-customization-and-implementation" target="_blank">open-source</a> platform. Regardless of if you’re an amateur developer, a veteran  coder, or an entrepreneur looking to learn more, we’ve got you covered  with our 10 best Android development resources on the web.</p>
<p><a href="http://developer.android.com/" target="_blank"><strong>Android  Developers Site:</strong></a> In order to begin development for the  Android platform, you’ll need to start here at square one. From this  site, you can download the software development kit (SDK) and the tools  required for Android development and testing. This is also the very same  site that you will be coming back to when it is time to publish your  app onto the Android market. The site also features extensive  documentation on the APIs associated with the platform.</p>
<p>While the Android Developers site does in fact feature a forum for help  with the Android Market, it doesn’t have a general purpose discussion  area for new coders who may have development related questions. Instead,  Google refers users to the second resource in this list, Stack  Overflow.</p>
<p><strong><a href="http://stackoverflow.com/" target="_blank">Stack  Overflow:</a> </strong>Stack Overflow is an online discussion forum  suited for a variety of programming questions across a variety of  platforms. It’s chock full of stuff for Android developers because it’s  the primary site recommended by Google for those looking for help with  Android related problems. Rather than being broken down into sub-forums  like many other online discussion forums, Stack Overflow is organized  according to tags. It also allows visitors to vote on the best answer,  similar to other question and answer sites like Yahoo! Answers.</p>
<p>The site gets a good amount of activity and questions get answered  fairly quickly. It should be one of your first stops online if you find  yourself stuck without a clue, after searching the Android Developers  site, of course.</p>
<p><strong><a href="http://eclipse.org/" target="_blank">Eclipse:</a> </strong>Eclipse  is the most commonly used integrated development environment (IDE) used  for developing Android apps. Not only is Eclipse a powerful IDE in its  own right, but Android support is deeply engrained in the application.  This means that launching the Android emulator and installing software  onto it no longer requires command line utilities and multiple steps.  Another example of the implementation between Android and Eclipse is the  fact that Eclipse offers a special wizard to properly sign code for  release into the Android Market. The deep level of integration makes  this tool a must-have (or at least a must-check-out) for all Android  developers.</p>
<p><strong><a href="http://anddev.org/" target="_blank">Anddev.org:</a> </strong>Run  out of officially supported Google resources? This online Android  development community should be everyone&#8217;s first stop after your options  run dry. Unlike Stack Overflow, this discussion forum operates in a  much more traditional fashion. It also has many subtopics and an active  community of users. For new and still learning developers, there is an  entire section dedicated for tutorials on a variety of subjects.</p>
<p>The site is also home to the user-contributed Android learners book  “AndBook”. Unlike many wiki-style documents, AndBook is available in PDF  format for you to download. It’s informative and well organized and  would make an excellent read for any aspiring Android developer.</p>
<p><a href="http://stonetrip.com/" target="_blank"><strong>Shiva3D:</strong></a> If mobile gaming or three-dimensional environments are a part of your  roadmap, Shiva3D is definitely worth a test drive. This 3D graphics  engine and development environment is designed for independent  developers and is one of the first to provide support for Android  development. The engine includes all of the features you would expect  from a commercial 3D engine, including physics and a simple-to-use  editor. (That editor, however, requires Windows to run. Mac users, don’t  fret – it performs well under Parallels as well.)</p>
<p>One of the great things about the software is that the free trial is  fully functional and not time limited, meaning you can try it for as  long as you desire or even fully flesh out your game before dropping any  cash on a license to build and publish your game.</p>
<p><a href="http://www.adwhirl.com/" target="_blank"><strong>AdWhirl:</strong></a> Monetizing – one of the key words on the minds of entrepreneurs seeking  a piece of the mobile app pie. If you are thinking about releasing a  free app and monetizing it using advertising revenue, this is one of the  first options that you should look in to. AdWhirl has long been one of  the go-to choices for iPhone developers, and they’ve recently released  an SDK and officially set up shop on the Android platform.</p>
<p>AdWhirl isn&#8217;t a broker firm itself – instead it serves as a mediation  layer that allows you to use the services of many different ad  companies. You can sort the companies in order of presence in order to  give impressions to the ad company that is most successful for you. When  the fill rate for your first choice drops below 100% and they don&#8217;t  have an ad for you to display, the software will automatically start  making its way down your list until it finds a company that does have an  ad for your app to show, allowing you to get as close to a 100%% fill  rate on your app and ensuring maximum monetization.</p>
<p><strong><a href="http://code.google.com/p/cocos2d-android/" target="_blank">Cocos2d-Android:</a> </strong> While this project isn&#8217;t quite as complete as the projects that have  inspired it (such as the iPhone and Desktop/Python versions), it’s very  much in a useful state for Android developers. Cocos2d is a fairly  robust and easy to use 2d graphics framework and includes built-in  support for the box2d physics engine.</p>
<p>The engine utilizes OpenGL for the fastest rendering possible which also  allows for easy implementation of features, such as rotating and  scaling sprites. The Android version already includes many of the  features that are available in the more mature versions of the API and  is actively being developed, meaning further improvements upon the  framework.</p>
<p>The Cocos2d framework has been used in many successful apps on the  iPhone store and will no doubt become a major player in the Android  market as well. If you intend on writing 2d based games, this is  certainly worth taking a look at.</p>
<p><a href="http://www.geocade.com/publishers.html" target="_blank"><strong>Geocade</strong>:</a> Geocade is a social gaming network that is one of the few that has  already implemented support for Android devices. The code offers several  features that will add value to your app for the customer, such as  location-aware high scores and discussion boards. Wouldn’t you be  interested in finding out where you rank among “space blasters” in the  entire Bay Area?</p>
<p>However, the customer isn&#8217;t the only one that will benefit from usage of  this network in your app. In addition to the increased downloads that  social gaming networks such as these create, Geocade publishers can  easily implement feedback surveys to get direct feedback from their  customers to add and prioritize improvements that your community really  wants. The company also has a revenue sharing agreement to give you a  cut of the profits from ads that display while the user is navigating  the network from within your app.</p>
<p><a href="http://androidstats.com/" target="_blank"><strong>Android Stats:</strong></a> Once you&#8217;ve finished up your app and it’s ready for download on the  Market, you’re eventually going to become curious about how it is  performing in relation to other apps. Sure, the Android Market tells you  how many downloads your app has, and the Market console even tells you  what percentage of those downloaders still have the app installed on  their phone, but it doesn’t provide any insight on one key element –  your competition. This is where Android Stats comes in.</p>
<p>Android Stats is a site that keeps track of your app rankings so you can  compare your app to the apps that you are directly competing with. This  can be useful for marketing purposes or for getting ideas on where your  app needs to improve in order to increase sales.</p>
<p><a href="http://cyrket.com/" target="_blank"><strong>Cyrket:</strong></a> Unlike the iPhone App Store, the Android Market lacks a web-based or  desktop software-based method of shopping and browsing. For developers  who are running older versions of Android on their phones, this means  not even being able to see the screenshots of potential competition.  When deciding upon a new product to release, it is important to make  sure that the market isn&#8217;t already oversaturated with apps of its type  or to evaluate the quality of your would be competitors. Google doesn&#8217;t  make this easy, but thankfully Cyrket allows you to browse the Android  Market (as well as Palm and Windows Phone marketplaces) to perform this  type of market research.</p>
<p><a href="http://www.3esolutions.net">3E Solutions</a> is one of the leading <a href="http://www.3esolutions.net/services/mobile-application-development/android-development">Android application developers</a> in the market. 3E&#8217;s Android experts developed mind blowing <a href="http://www.3esolutions.net/services/mobile-application-development">applications</a> for various businesses and industries. 3E also has highly expert team for developing <a href="http://www.3esolutions.net/services/mobile-application-development/iphone-development">iphone</a> and <a href="http://www.3esolutions.net/services/mobile-application-development/blackberry-development">Blackberry</a> applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2010/07/the-10-best-android-resources-on-the-web.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating Drupal Nodes with your Facebook Stream</title>
		<link>http://blog.3esolutions.net/2010/04/integrating-drupal-nodes-with-your-facebook-stream.html</link>
		<comments>http://blog.3esolutions.net/2010/04/integrating-drupal-nodes-with-your-facebook-stream.html#comments</comments>
		<pubDate>Fri, 30 Apr 2010 12:43:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Customisation]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[Drupal 6]]></category>
		<category><![CDATA[Drupal developers]]></category>
		<category><![CDATA[Drupal Modules]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=72</guid>
		<description><![CDATA[
You want to promote your website and bring more fan base to your site.  A  great way to do this is to integrate Facebook with your website,  basically using Facebook as a RSS feed.
What you want to do with your drupal website is to have a setting so  that when you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.3esolutions.net/wp-content/uploads/2010/04/fbconnect.jpg"><img class="alignnone size-full wp-image-73" title="fbconnect" src="http://blog.3esolutions.net/wp-content/uploads/2010/04/fbconnect.jpg" alt="" width="615" height="307" /></a></p>
<p>You want to promote your website and bring more fan base to your site.  A  great way to do this is to integrate Facebook with your website,  basically using Facebook as a RSS feed.</p>
<p>What you want to do with your drupal website is to have a setting so  that when you publish a node, it would post to your Facebook account so  that subscribers would be able to view your new content and know to go  visit your site.</p>
<p>To accomplish this I would recommend you to use the module <a rel="nofollow" href="http://drupal.org/project/fb" target="_blank">Drupal  for Facebook</a> and enable the &#8220;Drupal for Facebook Stream&#8221; that is  included with the module.  Once you have properly installed it you will  need to create another custom module to actually use the Facebook API to  post to an account.</p>
<p>Follow the instructions on <a rel="nofollow" href="http://drupal.org/node/685320" target="_blank">Publishing to Facebook Wall</a> to set up  your custom module.</p>
<p>From the code found in <a rel="nofollow" href="http://drupal.org/node/685320" target="_blank">Publishing to Facebook Wall</a>,  fb_stream_publish_dialog() actually uses the function  FB.Connect.streamPublish(), which prompts a user to login and share  content.  A good read on this function would be <a rel="nofollow" href="http://wiki.developers.facebook.com/index.php/Implementing_Feed_Publishing_from_your_Website_or_Application" target="_blank">Implementing Feed Publishing form your  Website or Application</a></p>
<p>I have also had to implement this feature using the <a rel="nofollow" href="http://drupal.org/project/fbconnect" target="_blank">Facebook Connect</a> module. Since it already has the  Facebook library, I just had to call the FB.Connect.streamPublish()  function in javascript. Here is sample code of a function I created to  post a teaser about a node.</p>
<p><code>function post_to_facebook($node) {<br />
global $base_url;<br />
if ($node) {<br />
$site = variable_get('site_name', $base_url);<br />
$autopublish = 'true';<br />
$feed_js = array(<br />
'name'        =&gt; $node-&gt;title,<br />
'href'        =&gt; url('node/' . $node-&gt;nid, array('absolute'  =&gt; TRUE)),<br />
'description' =&gt; $node-&gt;teaser,<br />
'properties'  =&gt; array(<br />
t('read')     =&gt; array(<br />
'text'  =&gt; $node-&gt;title,<br />
'href'  =&gt; url('node/' . $node-&gt;nid, array('absolute'  =&gt; TRUE)),<br />
),<br />
t('visit')    =&gt; array(<br />
'text'  =&gt; $site,<br />
'href'  =&gt; $base_url,<br />
)<br />
),<br />
);<br />
$actions = array();<br />
$actions[] = array('text' =&gt; t('Read More'), 'href' =&gt;  url('node/'.$node-&gt;nid, array('absolute' =&gt; TRUE)),);<br />
}<br />
drupal_add_js('$(document).ready(function()  {FB.Connect.streamPublish("", '.drupal_to_js($feed_js).',  '.drupal_to_js($action_links).', "", "'.t('Something to say?').'", "",  '.$autopublish.');});', 'inline', 'footer'); }</code></p>
<p>What I really like about this implementation is the ability to not have  to be logged into a drupal account, they just need to login to their  facebook account. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2010/04/integrating-drupal-nodes-with-your-facebook-stream.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Best WordPress Plugins Available Today</title>
		<link>http://blog.3esolutions.net/2010/04/the-best-wordpress-plugins-available-today.html</link>
		<comments>http://blog.3esolutions.net/2010/04/the-best-wordpress-plugins-available-today.html#comments</comments>
		<pubDate>Fri, 09 Apr 2010 06:30:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP developers]]></category>
		<category><![CDATA[wordpress developers]]></category>
		<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=67</guid>
		<description><![CDATA[Over the years, WordPress,  one of the most popular content management systems (CMS) in the world  and highly in-demand skill from 3E Solutions, has evolved into something far  more powerful than just a simple blogging platform. The amount of theme  customization that you can do truly allows for limitless possibilities  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.3esolutions.net/wp-content/uploads/2010/04/wp_logo.png"><img class="alignleft size-full wp-image-70" title="wp_logo" src="http://blog.3esolutions.net/wp-content/uploads/2010/04/wp_logo.png" alt="" width="200" height="200" /></a>Over the years, <a href="http://wordpress.org/" target="_blank">WordPress</a>,  one of the most popular content management systems (CMS) in the world  and highly in-demand skill from 3E Solutions, has evolved into something far  more powerful than just a simple blogging platform. The amount of theme  customization that you can do truly allows for limitless possibilities  when creating your website.</p>
<p>Some of these customizations come in the form of &#8220;Plugins&#8221;. They&#8217;re  modules that you can add onto your WordPress installation that can  extend the functionality of your blog in both mechanics, interaction,  and usability, and there are literally tons of plugins out there that  you can sift through to customize your blog. I’ve compiled a short list  of very informative blog posts that cover the best and most useful  plugins for WordPress you can find.</p>
<p>Nicholas Cardot at Site Sketch 101 has an excellent, excellent post  covering “<a href="http://www.sitesketch101.com/15-incredible-wordpress-plugins-you-need" target="_blank">The  15 Best WordPress Plugins To Use In 2010</a>”. My favorites on this  list include WP Super Cache, Akismet, Wptouch iPhone Theme, and Thank Me  Later. Check out all 15 over at Site Sketch 101 now.</p>
<p><a href="http://visionwidget.com/inspiration/web/465-best-wordpress-plugins-must-have.html" target="_blank">Joseph  at VisionWidget.com</a> has put together an incredible list of 48  high-quality WordPress Plugins for “branding your perfect blog”.  Favorites include All in One SEO Pack, Community Cloud, What Would Seth  Godin Do, Yet Another Related Post Plugin, and GD Star Rating plugin.  Lots of stuff to go through here, so be sure to check it out.</p>
<p>If you’re someone who frequently handles images, Robysottini’s Blog has  just posted a great article on &#8220;<a href="http://robysottini.wordpress.com/2010/03/31/10-wordpress-plugins-to-work-with-images/" target="_blank">10  WordPress plugins to work with images</a>&#8220;. I personally like Watermark  Reloaded, WordPress Media Flickr, and Faster Image Insert.</p>
<p><a href="http://www.ajaxline.com/best-wordpress-plugins-february-2010" target="_blank">Ajaxline.com</a> recently posted an article suggesting WordPress plugins that you should  take a look at as well. Global Flash Galleries, Bulk Delete, WP to  Twitter, Login With Ajax, and My Quote are some I’m going to give a test  drive today.</p>
<p>If social media and promotion are your thing, then check out  Webexpedition18.com’s article “<a href="http//webexpedition18.com/articles/best-wordpress-plugins-to-promote-your-site/" target="_blank">Best  WordPress Plugins To Promote Your Site</a>”. Nikola Lazarevic suggests  plugins like Digg Digg, a button generator for your site, to generate  more social awareness and consequently drive more traffic to your site.  While many of the plugins might overlap in terms of functionality, it’s  good to know what’s out there so you know what will fit your blog and  use case the best.</p>
<p>And as always, if there isn&#8217;t a plugin that does quite do what you need  it to do, we have <a href="http://www.3esolutions.net/services/open-source-customization-and-implementation" target="_blank">skilled, professional WordPress developers</a> at <a href="http://www.3esolutions.net">3E Solutions</a> to deliver  what you need. Do you have any plugins that are your favorites? Shoot  &#8216;em to us in the comments below</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2010/04/the-best-wordpress-plugins-available-today.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 10 Best Websites And Resources For iPhone Development</title>
		<link>http://blog.3esolutions.net/2010/03/the-10-best-websites-and-resources-for-iphone-development.html</link>
		<comments>http://blog.3esolutions.net/2010/03/the-10-best-websites-and-resources-for-iphone-development.html#comments</comments>
		<pubDate>Wed, 31 Mar 2010 11:42:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[iphone applications]]></category>
		<category><![CDATA[iphone developers]]></category>
		<category><![CDATA[iphone development]]></category>

		<guid isPermaLink="false">http://blog.3esolutions.net/?p=59</guid>
		<description><![CDATA[Mobile application stores like Apple&#8217;s App Store and Google&#8217;s Android Market are open for business, and business  is clearly booming. The demand for talented developers is going at a  fast pace, as evidenced by the Online  Talent Report (dollars earned in the Mobile subcategory grew 180% in just 12 months). If  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.3esolutions.net/services/mobile-application-development"><a href="http://blog.3esolutions.net/wp-content/uploads/2010/03/iphone_dev.jpg"><img class="alignleft size-full wp-image-62" title="iphone_dev" src="http://blog.3esolutions.net/wp-content/uploads/2010/03/iphone_dev.jpg" alt="" width="252" height="252" /></a>Mobile application</a> stores like Apple&#8217;s App Store and Google&#8217;s Android Market are open for business, and business  is clearly booming. The demand for talented developers is going at a  fast pace, as evidenced by the Online  Talent Report (dollars earned in the <a href="http://www.3esolutions.net/services/mobile-application-development">Mobile</a> subcategory grew 180% in just 12 months). If  you&#8217;re a new <a href="http://www.3esolutions.net/services/mobile-application-development/iphone-development">iPhone developer</a> looking to get your feet wet or  are a seasoned veteran looking for some online resources, we&#8217;ve rounded  up 10 different websites, forums, blogs, and tools that can help you  jumpstart your next iPhone app.</p>
<p><a href="http://developer.apple.com/" target="_blank"><strong>Apple  Developer&#8217;s Site:</strong></a> This is the first stop that any potential  iPhone developer will need to visit when getting started. From this  site, you can sign up for the developer program and download the  necessary tools required to build iPhone apps. There is a developer fee  of $99/annually in order to submit your newly built creations to have  them appear on the app store, but you can download the tools and play  around with them with a free account.</p>
<p>The site also features the entire reference library for the iPhone SDK,  which although not as instructional as a tutorial, is still an  indispensable resource for those who have already gotten comfortable  with the iPhone development process. In addition to the reference  material, you will find developer forums at the site which allow you to  ask questions to other developers. Most developers are willing to help  new coders learn the ropes, as long as you show that you&#8217;ve made some  effort to learn on your own or to find the answer for yourself. The  forums at the official Apple site have the added benefit of being  frequented by Apple engineers.</p>
<p><a href="http://iphonedevsdk.com/" target="_blank"><strong>iPhone Dev SDK  Forums:</strong></a> The forums at iPhoneDevSDK.com are another great  resource for all developers. The community is robust and offers advice  on everything from coding to promotion techniques and even job postings.  One thing to be aware of is that there are frequently posters popping  in trying to capitalize on developers. Be wary of business offers,  especially from people with a low number of posts. Consider bringing the  potential client on to Elance so that you can not only be protected by  Escrow but you can also use it to build up your feedback and job  history.</p>
<p><strong><a href="http://icodeblog.com/" target="_blank">iCodeBlog:</a> </strong>iCodeBlog.com  features some of the best tutorials on the web, both on beginning and  more advanced development concepts. It should get the novice beginner  off to a good start as well as teach the established user a few things  about parts of the API that they may have not explored yet. The blog is  updated on a regular basis and would make a great addition to any iPhone  developer&#8217;s bookmarks.</p>
<p><strong><a href="http://adwhirl.com/" target="_blank">AdWhirl:</a> </strong>With  a large and growing list of companies offering ad services, many  developers have successfully used ads to earn a little green with their  free apps. When you install AdWhirl into your app, you will be able to  sign up for many of these services and serve all of them from the same  code. AdWhirl also features an online management system that allows you  to give preference to the ad company that is paying you the highest  rates. The real advantage of using an all-in-one solution such as  AdWhirl is that no single service offers 100% fill rate. With AdWhirl,  when your top priority ad provider doesn&#8217;t have an ad for you, your app  automatically falls back on the next choice. This helps to insure that  your app is showing as many ads as possible and increases your revenue.</p>
<p><a href="http://cocos2d-iphone.org/" target="_blank"><strong>Cocos2D:</strong></a> If you haven’t already heardGames comprise of a huge part of the mobile  App industry. If you plan on creating games for the iPhone, you are  going to want to step up the graphics level more than the basic iPhone  tools will allow. Cocos2D for iPhone is an amazing, and free, SDK that  will allow you to bring the full power of OpenGL ES to your game. With  an easy to learn API, you&#8217;ll be able to create and animate sprites,  complete with hardware scaling and rotation and many other, more  advanced special effects. Cocos2D also features two built-in physics  simulation libraries, Box2d and Chipmunk, for those developers looking  for more advanced object interactions. The toolkit has a large following  and users on the forums at the Cocos2D site are always willing to help  new people learn their way around.</p>
<p><a href="http://sio2interactive.com/" target="_blank"><strong>SIO2  Interactive:</strong></a> This free and open source 3D graphics engine  shares many features with its commercial counterparts. The engine is  based around the free Blender modeler and allows you to create the scene  for your 3D game within that program and then hook it almost  effortlessly to your code. There are several tutorials on the project&#8217;s  website to get beginners up and running quickly with SIO2 itself,  although some people find the learning curve for Blender to be steep.</p>
<p>Additionally, for those who want to study a completed program to learn  more about the inner workings of the engine, full source code to four  apps is available for purchase from the project&#8217;s homepage. The source  code comes with all resource files and a video tutorial to teach you key  points about the coding process. The license for the engine, while  free, does require a splash screen a credit within your app. Optionally,  developers can pay a fee for each game developed for the right to wave  those requirements.</p>
<p><strong><a href="http://stonetrip.com/" target="_blank">Shiva 3D:</a> </strong>Shiva  3D is a commercial 3D graphics engine designed for indie developers.  You&#8217;ll actually need Parallels running Windows to run the level editor,  making it slightly less than ideal. It is still a grand resource for  iPhone developers though, because other commercial 3D engines for  iPhone, such as Unity or Torque charge an additional, and rather large,  fee to use their platform on the iPhone. For one low fee, the makers of  Shiva include the tools necessary to build on the iPhone.</p>
<p>The software has a free learning addition that, unlike its competition,  is not time limited so you can get to know the software without feeling  rushed. Also unlike its competitors, the free version of Shiva includes  some iPhone projects so you don&#8217;t have to pay money before you get to  play around with using the system for iPhone development. In the end,  the hassle of installing Windows on your Mac is the cheaper option.  Especially considering the non-expiring demo will allow you to fully  flesh our your game before you spend a dime on licensing the software  needed to run it.</p>
<p><a href="http://openfeint.com/" target="_blank"><strong>OpenFeint:</strong></a> OpenFeint is a great way to add online functionality to your iPhone  app. After you integrate the SDK into your app, the OpenFeint website  connects with it to enable online high scores lists, wrapped in a  growing social network atmosphere. With OpenFeint installed, your users  will be able to see which games their friends are currently playing and  challenge them, access location-based leader boards, save their game to  the network and resume it on any compatible device, and connect with you  via forums. OpenFeint enables you to send newsletters to your users,  has systems in place for cross promotion of your apps, and includes  support for free to paid up sells.</p>
<p><strong><a href="http://urbanairship.com/" target="_blank">Urban Airship:</a></strong> The 3.0 release of the iPhone OS brought with it some powerful tools  for developers. These include push notifications and in app purchases.  The use of these tools, however, requires access to your own servers,  and for more complex apps, a large amount of custom code. Urban Airship,  for a fee of course, will provide the server space and custom code that  your app really needs to take advantage of these technologies. Like  many tools of this nature, Urban Airship provides you with source code  that you will need to integrate into your program in order to take  advantage of their features. Installation isn&#8217;t hard however, and since  they are a paid service, support questions are answered relatively  quickly.</p>
<p><strong><a href="http://ideaswarm.com/" target="_blank">AppViz:</a> </strong>Once  you have an app on the app store, Apple doesn&#8217;t really make it as easy  to track and monitor your sales as they could. The daily sales reports  come in the form of tab delimited spreadsheets in plain text files.  AppViz is a program that will download your daily and weekly financial  reports and present the data in a much more readable way. The program  will estimate what your payouts will be for a given month, and give you a  graph of sales trends. The AppViz demo comes with a 30 day free trial,  after which a modest fee is required to keep using it. Apple has been  known to make a lot of changes to the way iTunes Connect works, and the  developer does a great job of keeping up with these changes, but it does  mean that you may need to download updates frequently.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.3esolutions.net/2010/03/the-10-best-websites-and-resources-for-iphone-development.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

