<?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>Eugen Dimboiu</title> <atom:link href="http://dimboiu.com/feed/" rel="self" type="application/rss+xml" /><link>http://dimboiu.com</link> <description>A Web Developer&#039;s Blog</description> <lastBuildDate>Tue, 28 Apr 2015 08:52:31 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.5</generator> <item><title>2013 Redesign</title><link>http://dimboiu.com/2013-redesign/</link> <comments>http://dimboiu.com/2013-redesign/#comments</comments> <pubDate>Sun, 06 Jan 2013 21:45:02 +0000</pubDate> <dc:creator>Eugen Dimboiu</dc:creator> <category><![CDATA[Blog]]></category><guid isPermaLink="false">http://dimboiu.com/?p=51</guid> <description><![CDATA[Happy New Year everybody! I've been super busy lately researching / testing / building cool stuff and I haven't had any time to write on my blog. I'm planning to change that in 2013 and be more active on my English site (this one) and on my Romanian site (Dimboiu.ro).I finally finished the redesign of this site (been working for a few days) and I launched it officially today (6 January 2013).]]></description> <content:encoded><![CDATA[<p>Happy New Year everybody! I&#8217;ve been super busy lately researching / testing / building cool stuff and I haven&#8217;t had any time to write on my blog. I&#8217;m planning to change that in 2013 and be more active on my English site (this one) and on my Romanian site (<a title="Eugen Dimboiu" href="http://dimboiu.ro" target="_blank">Dimboiu.ro</a>).</p><p>I finally finished the redesign of this site (been working for a few days) and I launched it officially today (6 January 2013). As you might notice if you ever seen my other design &#8211; there&#8217;s not that much changed. The layout is still minimal (1-2 max columns) , no fancy stuff (yet anyway) or some WOW element. That&#8217;s because I believe that visitors to my site are looking for content (yeah &#8211; need to work on that to), not for a fancy/eye candy design that blows their mind. This redesign is all about usability / optimization. This way the visitor/reader finds the wanted content fast and without distractions , search engines can crawl my site faster and there&#8217;s a overall performance improvement without a single extra cent on server cost. I probably didn&#8217;t mention but right now I&#8217;m hosting this site on a very common shared server plan from <a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=dimboiu" target="_blank">hostgator</a>. While I use better hosting for some of my projects this one does perform well on a shared environment because it&#8217;s optimized to the code (as all my projects are).</p><p>Here are some techy changes that I&#8217;ve made , except for the obvious color / layout changes:</p><ul><li><span style="line-height: 13px;" data-mce-mark="1">Coded the whole theme from scratch using html5 </span></li><li>Implemented the <a href="http://schema.org" target="_blank">schema.org</a> microformat (on article pages)</li><li>Optimized css and js</li><li>Implemented a caching system (using a custom <a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a> build)</li><li>Minified and compressed everything that I could</li><li>Implemented a SEO optimized markup (best one I could come up with)</li></ul><p>Now this is not a final theme, as with all my projects &#8211; this will be a continuous work in progress with new things implemented on a regular basis.</p><p>I would love to get some feedback about the new design &#8211; even negative feedback helps (as always).</p> ]]></content:encoded> <wfw:commentRss>http://dimboiu.com/2013-redesign/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How to get the social share count for facebook, twitter, linkedin and pinterest</title><link>http://dimboiu.com/how-to-get-the-social-share-count-for-facebook-twitter-and-linkedin/</link> <comments>http://dimboiu.com/how-to-get-the-social-share-count-for-facebook-twitter-and-linkedin/#comments</comments> <pubDate>Sun, 08 Jul 2012 10:25:27 +0000</pubDate> <dc:creator>Eugen Dimboiu</dc:creator> <category><![CDATA[Blog]]></category><guid isPermaLink="false">http://dimboiu.com/?p=43</guid> <description><![CDATA[Yesterday I coded a custom wordpress sidebar and my client needed to show the "social love" that every post has (measured as a sum between facebook likes, twitter count and linkedin count). After reviewing the facebook / twitter / linkedin API I decided to code some useful functions that I can use to do this really easy in the future. ]]></description> <content:encoded><![CDATA[<p>Yesterday I coded a custom wordpress sidebar and my client needed to show the &#8220;social love&#8221; that every post has (measured as a sum between facebook likes, twitter count and linkedin count). After reviewing the facebook / twitter / linkedin API I decided to code some useful functions that I can use to do this really easy in the future.</p><pre class="brush: php; title: ; notranslate">
&lt;?php 
function getTwitterCount($url){
	$twittercount = json_decode( file_get_contents( 'http://urls.api.twitter.com/1/urls/count.json?url='.$url ) );
	return $twittercount-&gt;count;
}
function getFacebookCount($url){
	$facebookcount = json_decode( file_get_contents( 'http://graph.facebook.com/'.$url ) );
	return $facebookcount-&gt;shares;
}
function getLinkedinCount($url){
	$templinkedin = file_get_contents( 'http://www.linkedin.com/countserv/count/share?url='.$url );
	$templinkedin = explode('(',$templinkedin);
	$templinkedin = explode(',',$templinkedin[1]);
	$templinkedin = explode(':',$templinkedin[0]);
	$linkedincount = $templinkedin[1];
	return $linkedincount;
}
// Added as requested in the comments
function getPinterestCount($url){
	$pincount = json_decode( file_get_contents( 'http://api.pinterest.com/v1/urls/count.json?callback=receiveCount&amp;url='.$url ) );
	return $pincount-&gt;count;
}
function getSocialCount($url){
	return getTwitterCount($url) + getFacebookCount($url) + getLinkedinCount($url) + getPinterestCount($url);
}
echo getSocialCount('http://yahoo.com');
?&gt;
</pre><p>I think the code speaks for itself &#8211; but here&#8217;s a short description:</p><ul><li>getTwitterCount &#8211; gets the url and makes a API request on twitter. The API request returns a JSON object that&#8217;s decoded and the target information (the twitter count) is returned.</li><li>getFacebookCount &#8211; same as getTwitterCount but it returns the facebook shares.</li><li>getLinkedinCount &#8211; this is a more complex function (relative to the other two) because the result returned from the API call needs some processing to get the value out. After a series of explodes I managed to return the linkedin count.</li><li>getSocialCount &#8211; this function only sums the results from the other 3 functions , and returns it</li></ul><p>I&#8217;m sure a good developer can code a better way of doing this , but I needed a fast solution that works (and this does the a pretty good job). The functions have been tested and work at the date this article was posted.</p> ]]></content:encoded> <wfw:commentRss>http://dimboiu.com/how-to-get-the-social-share-count-for-facebook-twitter-and-linkedin/feed/</wfw:commentRss> <slash:comments>18</slash:comments> </item> <item><title>13 free/open source wordpress theme frameworks</title><link>http://dimboiu.com/14-free-open-source-wordpress-theme-frameworks/</link> <comments>http://dimboiu.com/14-free-open-source-wordpress-theme-frameworks/#comments</comments> <pubDate>Tue, 08 Mar 2011 18:03:18 +0000</pubDate> <dc:creator>Eugen Dimboiu</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[frameworks]]></category> <category><![CDATA[themes]]></category><guid isPermaLink="false">http://dimboiu.com/?p=34</guid> <description><![CDATA[Most developers use a framework theme when coding a new wordpress theme. I normally use a blank / stripped theme so I can code the design easily , without the need to delete a bunch of code and debug it. Other developers use more complex frameworks , that come with various build in options that they need (like a options pannel , ready made widgets etc). I scouted the web to learn more about open source wordpress frameworks , and in this article I'm featuring 13 of them. ]]></description> <content:encoded><![CDATA[<p>I received a comment to one of my posts from a reader that wants me to do some theme creation related posts. Well , that&#8217;s not as easy as it sounds. I barely have the time to write on the blog , so a complex post about building a wordpress theme is very hard to imagine. I found many tutorials on the web (Yes , Google is your friend) , and if you really want to make a wordpress theme I can recommend one of the best (if not the best) tutorials from WPDesigner.com <a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/"  target="_blank" rel="nofollow">So you want to create WordPress themes huh?</a>.</p><p>Most developers use a framework theme when coding a new wordpress theme. I normally use a blank / stripped theme so I can code the design easily , without the need to delete a bunch of code and debug it. Other developers use more complex frameworks , that come with various build in options that they need (like a options pannel , ready made widgets etc). I scouted the web to learn more about open source wordpress frameworks , and in this article I&#8217;m featuring 13 of them.</p><p>In the near future i will have my own theme framework ready and  I will start building some good themes , my way. My framework is still under development , but I can tell you 2 things: it will be lightning fast and super optimized.</p><p>So here are the 13 open source frameworks I talked before:</p><h2>Atahualpa</h2><p>Fixed or flexible width layout, with min/max width, 0 &#8211; 4 sidebars, very browser safe (incl. IE6), create custom widget areas, import/export styles, javascript color pickers, over 200 options.</p><h3>Features:</h3><ul><li><h4>Theme Customization through Options Page:</h4><ul><li>Change colors and layout of our themes easily in your WordPress admin area. Custom options include colors of almost all layout sections, widths of the left and right columns, and size and colors of fonts and borders. You can also add your own header image (if there is any). Your Bytes For All theme based blog can look quite different than someone else’s.</li></ul></li><li><h4>Highly compatible even with problematic browsers:</h4><ul><li>You won’t notice that yourself because you’re probably using Firefox or the newest Internet Explorer. But you want your site to look good for everyone, right? There’s up to 10% of people who use obscure or old browsers. Maybe a few of your potentially most rewarding visitors, customers, readers, members is among them? The Bytes For All Themes work with IE 6, IE 7, Firefox 2 &#038; 3, Opera, Safari and IE on Mac, and a whole range of smaller browsers.</li></ul></li><li><h4>W3C Validity</h4><ul><li>This is not as important as code standardistas make it out to be, but if given the choice, having a web site that is “valid” by W3C standards it better than the opposite. W3C validity is merely a test to see if there’s something fundamentally wrong with the code. The big browsers are very forgiving. They render a page even if the underlying code is “wrong”. But search engines are not that nice. Google may kick out a web site if i.e there’s ordinary HTML markup within the head section of a page. This might happen by accident and most browsers would still render the site perfectly fine.</li></ul></li><li><h4>Fluid and fixed width layouts</h4><ul><li>Most themes you see have a fixed width. It is harder to make a fluid theme. Fluid layouts adjust themselves to the browser window size of each visitor. Web site visitors with smaller screens do not need to scroll horizontally as early as they would have to with a fixed width layout. Bytes For All offers both fixed and fludi width themes, with a focus on fluid or hybrid width (fluid but set the min and max width) WP Themes.</li></ul></li><li><h4>Search Engine Optimization included</h4><ul><li>All our WP Themes are “SEO”-optimized, without the need for an additional plugin. The SEO features include Meta Tags, and nofollow and noarchive tags for certain pages or links (configurable via the options page).</li></ul></li></ul><p><a href="http://wordpress.org/extend/themes/atahualpa" target="_blank">More info and download</a></p><h2>The Buffet Framework</h2><p>The Buffet Framework is a theme framework designed not only for the theme developers who will be using the theme actions and filters to create the child themes, but also for the end users who would be able to add and remove what they want.<br /> Like most WordPress theme frameworks, the Buffet Framework utlises WordPress actions and filters to allow theme developers to add additional content without editing the templates files using the child theme concept.</p><h3>Framework Features</h3><ul><li>Search Engine Optimization – includes many SEO features such as breadcrumbs, headings, canonical URLs</li><li>Support for Microformats – compatible with some of the microformats like hAtom, hCard and XOXO</li><li>jQuery Powered – comments form validation, SuperSleight for IE6, Superfish menus, jBreadcrumb included</li><li>Packaged with CSS Frameworks – comes with 960gs and Blueprint CSS</li><li>Action &#038; Filter Hooks &#8211; using the parent-child theme concept (with inline documentation)</li><li>Theme Options – organized in tabs, with features such as custom RSS feed links and custom footer messages</li><li>Theme Extensions – allow end-users to enable/disable features using the extensions feature</li><li>Plugin Compatibility – works with WP-PageNavi, WP-Print, Subscribe to Comments and more</li><li>Localization – fully localized, ready for translation</li><li>Free, Open Source – under the General Public License (GPL) v3</li></ul><p><a href="http://wordpress.org/extend/themes/the-buffet-framework" target="_blank">More info and download</a></p><h2>Carrington</h2><p>Carrington is a theme platform for WordPress from Crowd Favorite. It includes the Carrington Core, a reactive templating engine that makes it easy to create different visual styles for different site areas and content and Carrington Build, an advanced drag and drop page layout system that enables full editorial control for complex pages.</p><p><a href="http://wordpress.org/extend/themes/carrington-blog" target="_blank">More info and download</a></p><h2>Hybrid</h2><p>Hybrid is a user-friendly, search-engine optimized theme framework, featuring 15 custom page templates and 8 widget-ready areas, allowing you to create any type of site you want.<br /> Like WordPress, this theme is completely free and open source. You can use it for your client work or for a blog about your grandchildren. It is continuously being developed and has a community growing around it.</p><p><a href="http://wordpress.org/extend/themes/hybrid" target="_blank">More info and download</a></p><h2>Thematic</h2><p>Thematic is a free, open-source, highly extensible, search-engine optimized WordPress Theme Framework featuring 13 widget-ready areas, grid-based layout samples, styling for popular plugins, and a whole community behind it. It’s perfect for beginner bloggers and WordPress development professionals.</p><h3>Thematic Features</h3><ul><li>Perfect to use as-is or as a blank WordPress theme for development</li><li>Fully Search-Engine Optimized</li><li>Extra widget-ready areas (13 in total) and more possible in your Child Theme</li><li>Free and commercially supported Child Themes are available for upgrading the theme</li><li>Includes a sample WordPress Child Theme for rapid development</li><li>A wiki-editable guide to Thematic Customization</li><li>Ready for WordPress plugins like Subscribe to Comments, WP-PageNavi, and Comment-license</li><li>Fully compatible with All-In-One SEO and Platinum SEO plugins</li><li>Multiple, easy to implement, bulletproof layout options for 2, or 3 column designs</li><li>Modular CSS with pre-packaged resets and basic typography</li><li>Dynamic post and body classes make it a hyper-canvas for CSS artists</li><li>Editable footer text—remove the theme credit without harming the theme</li><li>Options for multi-author blogs</li></ul><p><a href="http://wordpress.org/extend/themes/thematic" target="_blank">More info and download</a></p><h2>WP Framework</h2><p>A blank WordPress Theme Framework that&#8217;s everything you need, and nothing you don&#8217;t. With features like microformats, a traditional template structure, convention over configuration, clean semantic code, documenation, and it&#8217;s atomic templating system, WP Framework is completely extensible, flexible and the starting point for theme authoring and customization.</p><p><a href="http://wordpress.org/extend/themes/wp-framework" target="_blank">More info and download</a></p><h2>Ashford</h2><p>Ashford was developed by Tim Bednar to aid organizations in customizing, building and growing simple web sites. It is a theme framework that many kinds of web site owners will find valuable: web workers, small business, bloggers, authors, new media, magazines, churches and nonprofits.<br /> Selected as a &#8220;Brilliant&#8221;, &#8220;High Quality&#8221;, and &#8220;Beautiful&#8221; CMS theme framework for WordPress by Smashing Magazine, Noupe, Instashift, Six Revisions and Heal Your Church Website.</p><ul><li>Optimized for SEO</li><li>Tuned for page speed</li><li>Easy to use Theme Options</li><li>Admin In-Place tools</li></ul><p><a href="http://ashford.turtleinteractive.com/" target="_blank">More info and download</a></p><h2>Basis</h2><p>Basis has been built to make theme development for WordPress easier. If you are an experienced theme developer or a total beginner, Basis provides a highly customizable starting point for your theme development.<br /> Basis comes with a pre-defined set of templates. The otherwise empty stylesheet provides a list of IDs und class-names which have already been used in the templates. The theme is widget-ready and introduces a number of custom functions in functions.php.</p><p><a href="http://wpbasis.de/" target="_blank">More info and download</a></p><h2>Imagination</h2><p>Imagination is a Fully Customizable WordPress Theme and comes pre-loaded with 9 different site-wide styles to choose from, with just a click.<br /> Moreover, You can customize the style according to your mood, occasion or preferences. Use your imagination to create a unique look of your blog/website anytime you want.</p><h4>Features</h4><ul><li>Plug &#038; Play &#8211; No Programming Knowledge Required</li><li>Comes with 9 preloaded Color Schemes</li><li>Customize the Interface to make it unique</li><li>Built-In Twitter, Flickr and Entrecard Widgets</li><li>Built-In Feedburner RSS Integration</li><li>Widgets Ready &#038; Plugins Compatible</li><li>W3C Valid &#038; Cross-Browser Compatible</li><li>Fully Documented Admin Options</li><li>Standalone processing without interfering with default WordPress tables</li><li>All this and lot more, Absolutely Free!</li></ul><p><a href="http://www.cssjockey.com/imagination/" target="_blank">More info and download</a></p><h2>Starkers</h2><p>Starkers is a bare-bones WordPress theme created to act as a starting point for the theme designer.<br /> Free of all style, presentational elements, and non-semantic markup, Starkers is the perfect ‘blank slate’ for your projects, as it’s a stripped-back version of the ‘Twenty Ten’ theme that ships with WordPress.<br /> Best of all: it’s free and fully GPL-licensed, so you can use it for whatever you like ?-? even your commercial projects.</p><p><a href="http://starkerstheme.com/" target="_blank">More info and download</a></p><h2>Starter Theme</h2><p>Here are some of the features of my starter theme:</p><ul><li>Blank style.css with theme name, author, URL, etc. tags at the top</li><li>Content-ready 404, archive, search, index, single post, and page files</li><li>Full, working comments.php file</li><li>Complete header.php set up with links to RSS, a stylesheet, and JS file; template</li><li>Default search form template</li><li>Blank screenshot.png file and images folder</li></ul><p><a href="http://wpcandy.com/uncategorized/the-wordpress-starter-theme-project" target="_blank">More info and download</a></p><h2>Whiteboard</h2><p>Whiteboard encompasses many universal needs and consolidates them all into one compact package that is perfect for developers and designers alike &#8211; allowing them to quickly build upon and develop their very own unique and powerful website. With the Whiteboard Framework for WordPress, developers and designers no longer need to rewrite the same generic structure and WordPress functions, mobile versions, dynamic classes and divs, or improve SEO. Whiteboard’s strong, widely-used, and well-established structure takes care of all that and more.<br /> Save time and build a better website by using Whiteboard as a firm foundation to build your next WordPress-powered website.</p><h4>Whiteboard Framework Features</h4><ul><li>Free and Open Source &#8211; Use it for commercial and non-commercial projects</li><li>Speeds up WordPress development time to get you onto the next project</li><li>Built with the Less Framework for an instant mobile website</li><li>Comes with a minimalist theme to use or build off of or easily remove</li><li>The theme and Less Framework can be easily removed if desired</li><li>Strong and flexible div structure for easy development and diverse usage</li><li>More dynamic Classes and IDs than any other WordPress framework</li><li>Lightweight and well noted for a shallow learning curve</li><li>Cross browser compatible with all major browsers</li><li>Built with strong Search Engine Optimization</li><li>Many of WordPress’ awesome features such as manageable menus, background, and header image as well as featured images, several widget areas, and more</li><li>Custom admin menu and changing primary navigation for logged in users</li><li>Follows the Web Accessibility Initiative to ensure access by visitors with disabilities</li><li>Basic styles and classes to speed up development</li><li>HTML5 with graceful degradation</li><li>Simple CSS3 Animations with graceful degradation</li><li>Follows WordPress&#8217; CSS and PHP Coding Standards</li><li>Fully Compatible with WordPress 3.0 and up with fallbacks for older versions</li><li>Comes with a Child Theme ready to go</li><li>and much much more&#8230;</li></ul><p><a href="http://plainbeta.com/2008/05/20/whiteboard-a-free-wordpress-theme-framework/" target="_blank">More info and download</a></p><h2>Precious Theme</h2><p>Precious is a theme framework for WordPress 2.8+. Built with simplicity and web accessibility in mind.</p><h4>Features</h4><ul><li>Page Templates for Archives, Links, Search and Frontpage.</li><li>Blix Archive plugin included for a better Archive page</li><li>All time and dates shown respects your blog’s time and date settings</li><li>Ability to override standard header.php, footer.php and sidebar.php by creating template files called header-mine.php, footer-mine.php and sidebar-mine.php, this can be done both to parent theme and child themes</li><li>Global css file that take cares of different css classes and some positioning of forms and tables etc. to give a soft starting point in creating child themes. The path to the file can be filtered so you can use your own global css file</li><li>Browser detection in body_class (Credit: Nathan Rice)</li><li>Widgets for RSS blogfeeds, Random Links and “Home” link</li><li>Special template file: contentheader.php for easily changing the header markup in a child theme</li><li>Support for navbar.php template file that let you easily add a navigation bar right under the header of your theme</li><li>Top navigation to make your blog easier to navigate for people using screen readers and/ or browsing your site without using a mouse</li><li>Accesskeys (Shortcut keys) for all inline navigation: 1 – Top, 2 – Content, 3 – Sidebar, 4 – Comments</li><li>Ability to have a css file with IE-hacks for IE7 and lower</li><li>Ability to use custom single templates with help of Custom fields</li></ul><h4>Standards</h2><p>Okay, I know that some people consider this as features, but in my opinion this should be standards on all public WordPress themes</p><ul><li>Valid XHTML 1.0 Transitional</li><li>Valid CSS (level 2.1)</li><li>Widget enabled sidebar</li><li>Threaded comments support</li><li>Translation ready</li></ul><p><a href="http://wordpreciousss.org/" target="_blank">More info and download</a></p> ]]></content:encoded> <wfw:commentRss>http://dimboiu.com/14-free-open-source-wordpress-theme-frameworks/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Moving your WordPress site: different domain, same host</title><link>http://dimboiu.com/moving-your-wordpress-site-different-domain-same-host/</link> <comments>http://dimboiu.com/moving-your-wordpress-site-different-domain-same-host/#comments</comments> <pubDate>Wed, 16 Feb 2011 12:44:39 +0000</pubDate> <dc:creator>Eugen Dimboiu</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[database]]></category> <category><![CDATA[domain]]></category> <category><![CDATA[FTP]]></category> <category><![CDATA[host]]></category> <category><![CDATA[moving]]></category> <category><![CDATA[wordpress]]></category><guid isPermaLink="false">http://dimboiu.com/?p=28</guid> <description><![CDATA[This post is the first one in a series of articles about moving your WordPress installation. If you will use a different domain for your wordpress site , or you are moving your site from a development subdomain to the main domain you still have the 3 basic steps, and I will highlight the differences from my other article on this topic.]]></description> <content:encoded><![CDATA[<p>This post is the first one in a series of articles about moving your WordPress installation:</p><ul><li><a href="http://dimboiu.com/moving-your-wordpress-site-same-domain-new-host/" title="Moving your WordPress site: same domain , new host">Moving your WordPress site: same domain , new host</a></li><li>Moving your WordPress site: different domain , same host (Current)</li><li>Moving your WordPress site: different domain , new host (Coming soon)</li></ul><p>If you will use a different domain for your wordpress site , or you are moving your site from a development subdomain to the main domain you still have the 3 basic steps, and I will highlight the differences from <a href="http://dimboiu.com/moving-your-wordpress-site-same-domain-new-host/" title="Moving your WordPress site: same domain , new host">Moving your WordPress site: same domain , new host</a></p><h2>Adding the domain name to the hosting</h2><p>Most hosts use CPannel , so you just need to add the domain to the hosting (using addon domains option) and change it’s nameservers from your registrar. A root folder will be created for the domain.</p><h2>Moving the WordPress database</h2><p>As you might figure out , you still need to export your database. The database export process is explained in another post of mine, <a href="http://dimboiu.com/moving-your-wordpress-site-same-domain-new-host/" title="Moving your WordPress site: same domain , new host">Moving your WordPress site: same domain , new host</a>.<br /> The difference comes now. Many people like to use database querries to modify the domain names , but I like to use a text editor (this method is easier to use and leaves 0 room for error.)<br /> Get your favorite advanced text editor (I highly recommend <a href="http://notepad-plus-plus.org/">Notepad++</a>).</p><p>Open your .sql file with it and open the mass replace option. Replace your subdomain or old domain with your new domain name in all the document. This is a good place to pay attention to typos.<br /> Now you just need to create a new database and import the edited sql file.</p><h2>Moving the files</h2><p>Since both domains are on the same host , just copy the files from one folder to another (the folders corresponding to the addon domain root). Now download the wp-config.php file and modify the info to connect to your newly created database.</p> ]]></content:encoded> <wfw:commentRss>http://dimboiu.com/moving-your-wordpress-site-different-domain-same-host/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Top 30 Premium WordPress Themes from Themeforest</title><link>http://dimboiu.com/top-30-premium-wordpress-themes-from-themeforest/</link> <comments>http://dimboiu.com/top-30-premium-wordpress-themes-from-themeforest/#comments</comments> <pubDate>Sat, 12 Feb 2011 15:33:41 +0000</pubDate> <dc:creator>Eugen Dimboiu</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[premium]]></category> <category><![CDATA[themeforest]]></category> <category><![CDATA[themes]]></category> <category><![CDATA[top]]></category> <category><![CDATA[wordpress]]></category><guid isPermaLink="false">http://dimboiu.com/?p=24</guid> <description><![CDATA[As you might know, ThemeForest is an Envato Marketplace. At ThemeForest you can buy and sell HTML templates as well as themes for popular CMS products like WordPress, Joomla and Drupal with prices ranging from just $5 up to $40. Items are priced on the complexity, quality and use of the file. The site is home to a bustling community of web designers and developers and is the biggest marketplace of its kind. ]]></description> <content:encoded><![CDATA[<p>As you might know, ThemeForest is an Envato Marketplace. At ThemeForest you can buy and sell HTML templates as well as themes for popular CMS products like WordPress, Joomla and Drupal with prices ranging from just $5 up to $40. Items are priced on the complexity, quality and use of the file. The site is home to a bustling community of web designers and developers and is the biggest marketplace of its kind.</p><p>I really like the site and the whole idea (helping designers and developers to sell their work &#8211; helping clients find the best theme at a great price). This post is a top 30 of the best WordPress themes for sale at Themeforest. Now you might wonder how I decided to evaluate the themes and how I know which one is better than the other. Well , I didn&#8217;t. This top is based on the number of sales every theme has. How better to evaluate a theme if not by the number of people that bought it?</p><h2>1.inFocus &#8211; Powerful Professional WordPress Theme(5049 Sales)</h2><p>inFocus is a Powerful Professional Premium WordPress theme. It comes with an impressive fully customizable jQuery homepage slider with 3 different staging effects.<br /> Whether you&#8217;re a WordPress pro or just a beginner, this theme has you covered. With a huge custom back end area you have complete control over the look and style of your theme. Add images to your homepage slider, add as many sidebar widgets as you like, pull in your latest tweet from Twitter and much much more, all without having to touch a single line of code!<br /> For your convenience inFoucs comes with 10 skins to choose from. Click on color name below for a full preview. Also below is a full list of inFocus&#8217;s features.</p><p><a href="http://themeforest.net/item/infocus-powerful-professional-wordpress-theme/85486?ref=dimboiu" rel="nofollow" title="More info regarding inFocus - Powerful Professional WordPress Theme">More Info</a></p><h2>2.Display 3 in 1 &#8211; Business &#038; Portfolio WordPress(3609 Sales)</h2><p>DISPLAY is a WordPress Theme, best suited for Business and Portfolio sites. It comes with a fantastic 3D Image slideshow that can be controlled from your backend with a custom tool. The Theme has a huge wordpress custom backend (8 additional Admin Pages) that make customization of the Theme easy for those who dont know much about coding or wordpress.</p><p><a href="http://themeforest.net/item/display-3-in-1-business-portfolio-wordpress-/74542?ref=dimboiu" rel="nofollow" title="More info regarding Display 3 in 1 - Business &#038; Portfolio WordPress">More Info</a></p><h2>3.BigFeature &#8211; WordPress Theme(3104 Sales)</h2><p>Clean and flexible wordpress theme, with big article images and nice typography. Very many settings. Many page templates. 5 custom widgets. Easy to add article and preview images. Check the &#8220;Introduction to the theme&#8221; article in the live preview for more information. All the documentation is also on the live preview.</p><p><a href="http://themeforest.net/item/bigfeature-wordpress-theme/51702?ref=dimboiu" rel="nofollow" title="More info regarding BigFeature - WordPress Theme">More Info</a></p><h2>4.Unite &#8211; WordPress Business, Magazine Theme(2809 Sales)</h2><p>Unite is a merger of crisp design and powerful communication. It takes a clean, organized approach to presenting content so it&#8217;s easier to find what you want.</p><p>This is a premium WordPress theme with 5 pre-made skins including a dark theme and textured background theme. The theme is easy to modify and ready to be up and running out of the box. The PSD files included have been customized to allow fast skinning.</p><p><a href="http://themeforest.net/item/unite-wordpress-business-magazine-theme/90959?ref=dimboiu" rel="nofollow" title="More info regarding Unite - WordPress Business, Magazine Theme">More Info</a></p><h2>5.London Creative + (Portfolio &#038; Blog WP Theme)(2633 Sales)</h2><p>London Creative + comes with fully working contact form, awesome slider for your featured images, nasty spinning slider buttons (never saw them anywhere else, so you can call it unique), 2 message buttons under the slider and PrettyPhoto plugin (better clone of Lightbox).</p><p>You will also have user-friendly dropdown navigation with infinite dropdown levels where you can style every even list item via Jquery, so no more hassle, it&#8217;s automatic, you can just add posts and you are ready to go!</p><p><a href="http://themeforest.net/item/london-creative-portfolio-blog-wp-theme/70613?ref=dimboiu" rel="nofollow" title="More info regarding London Creative + (Portfolio &#038; Blog WP Theme)">More Info</a></p><h2>6.Striking Premium Corporate &#038; Portfolio WP Theme(2576 Sales)</h2><p>Striking is a Powerful Professional Premium WordPress theme made for your Blog, Portfolio, Business or almost any other kind of website. It is incredibly easy to use with the admin panel, and give you full control over every major design element throughout your site. With the color and font options page, you can customize you website more than you could ever imagine.</p><p><a href="http://themeforest.net/item/striking-premium-corporate-portfolio-wp-theme/128763?ref=dimboiu" rel="nofollow" title="More info regarding Striking Premium Corporate &#038; Portfolio WP Theme">More Info</a></p><h2>7.Twicet Business &#038; Portfolio &#8211; WordPress &#8211; 5 in 1(2343 Sales)</h2><p>Twicet is a WordPress Template, best suited for Business and Portfolio sites. It comes with 5 sleek skins, if the WordPress Live Preview is not enough for you, please check out the html templates that are already available, the look stays the same in the WordPress version.</p><p><a href="http://themeforest.net/item/twicet-business-portfolio-wordpress-5-in-1/49773?ref=dimboiu" rel="nofollow" title="More info regarding Twicet Business &#038; Portfolio - WordPress - 5 in 1">More Info</a></p><h2>8.Photo Nexus WordPress gallery 2 in 1(2185 Sales)</h2><p>Photo Nexus wordpress gallery is a 2 column , 2 color variation ( Bright and Dark) theme.</p><p>This theme is great for those who need a convenient way to publish and showcase a self managed Gallery of Photos, Artworks or Designs.</p><p>The theme features modern yet minimalistic style so that your work will be guaranteed to be on focus. The theme comes added with Admin theme options so you won&#8217;t need to manually edit the files to get it running.</p><p><a href="http://themeforest.net/item/photo-nexus-wordpress-gallery-2-in-1/38530?ref=dimboiu" rel="nofollow" title="More info regarding Photo Nexus WordPress gallery 2 in 1">More Info</a></p><h2>9.Awake &#8211; Powerful Professional WordPress Theme(2134 Sales)</h2><p>Awake is a Powerful Professional Premium WordPress theme. It comes with an intuitive easy to use admin panel giving you full control over every major design element throughout your site. Whether you need to add custom sidebars, edit your homepage content or change your footer column layout you&#8217;ll find just the option you need when you need it.</p><p>Awake also comes with an impressive easy to customize homepage slider with two transition effects and five staging options.</p><p>Need an image gallery or slideshow on every page? Want to embed a widget into a page? You can do all this and more using simple content shortcodes.</p><p>Creating your website has never been easier with Awake.</p><p><a href="http://themeforest.net/item/awake-powerful-professional-wordpress-theme/111267?ref=dimboiu" rel="nofollow" title="More info regarding Awake - Powerful Professional WordPress Theme">More Info</a></p><h2>10.Newscast 4 in 1 &#8211; WordPress Magazine and Blog(1841 Sales)</h2><p>Newscast is a WordPress Theme, best suited for Magazines and Blogs. It comes with 3 fantastic Image and News slideshows has multiple Page templates and of course gives you the option to choose from 4 Fantastic skins.</p><p><a href="http://themeforest.net/item/newscast-4-in-1-wordpress-magazine-and-blog/91058?ref=dimboiu" rel="nofollow" title="More info regarding Newscast 4 in 1 - WordPress Magazine and Blog">More Info</a></p><h2>11.ShapeShifter &#8211; One Page, Infinite Possibilities(1698 Sales)</h2><p>This is easily the most fun I&#8217;ve ever had working on a WordPress theme to date! ShapeShifter is a single-page WordPress template that has been designed to be just about the simplest theme you could possibly use. This theme is lean, mean, and ready for you to install in minutes.</p><p><a href="http://themeforest.net/item/shapeshifter-one-page-infinite-possibilities/75759?ref=dimboiu" rel="nofollow" title="More info regarding ShapeShifter - One Page, Infinite Possibilities">More Info</a></p><h2>12.Cubit 6 in 1- Business &#038; Portfolio Theme(1522 Sales)</h2><p>Cubit is a clean and flexible wordpress theme with 6 different cholor schemes(see preview Pics), which is best used for portfolio and business sites.</p><p><a href="http://themeforest.net/item/cubit-6-in-1-business-portfolio-theme/38712?ref=dimboiu" rel="nofollow" title="More info regarding Cubit 6 in 1- Business &#038; Portfolio Theme">More Info</a></p><h2>13.Luxury WordPress Template(1437 Sales)</h2><p>Luxury is a clean, feature packed WordPress theme designed to make your life easier.</p><p><a href="http://themeforest.net/item/luxury-wordpress-template/83220?ref=dimboiu" rel="nofollow" title="More info regarding Luxury WordPress Template">More Info</a></p><h2>14.Dandelion &#8211; Powerful Elegant WordPress Theme(1428 Sales)</h2><p>andelion is a Powerful Premium WordPress Theme. This theme provides all the main functionality you will need to present your products, work and yourself in an elegant and professional style. The Dandelion theme is highly flexible, so changing the color scheme is super simple and for the most parts you won&#8217;t need an image editor. The theme is best suited for any business, portfolio, photography and personal sites.</p><p><a href="http://themeforest.net/item/dandelion-powerful-elegant-wordpress-theme/136628?ref=dimboiu" rel="nofollow" title="More info regarding Dandelion - Powerful Elegant WordPress Theme">More Info</a></p><h2>15.DynamiX &#8211; Premium WordPress Theme(1427 Sales)</h2><p><a href="http://themeforest.net/item/dynamix-premium-wordpress-theme/113901?ref=dimboiu" rel="nofollow" title="More info regarding DynamiX - Premium WordPress Theme">More Info</a></p><h2>16.Avisio &#8211; Business and Portfolio(1403 Sales)</h2><p>Avisio is a WordPress Theme that takes advantage with all the amazing new wordpress 3 features and is best suited for Portfolio and Business Websites. It has the ability to create unique skins right from your backend without the need to edit anything within your css files whith just a few mouse clicks and also offers the option to install content automatically when setting up the theme, so it will look like my theme preview!</p><p><a href="http://themeforest.net/item/avisio-business-and-portfolio/113278?ref=dimboiu" rel="nofollow" title="More info regarding Avisio - Business and Portfolio">More Info</a></p><h2>17.Sansation – Business &#038; Portfolio Premium WordPress(1395 Sales)</h2><p>Sansation is a professionally-designed Premium WordPress Theme. This theme is perfect for all businesses, corporations and creative portfolio sites. It has powerful CMS functionality and a long list of premium features. Whether you&#8217;re a pro or just a beginner, you&#8217;ll have absolutely no trouble customizing this theme.</p><p>We&#8217;ve invested over 250 hours refining every aspect of this theme, ensuring that it&#8217;s one of the most usable wordpress themes you&#8217;ve every experienced. It also comes with video tutorials that walk you through every aspect of setting up your new website.</p><p><a href="http://themeforest.net/item/sansation-business-portfolio-premium-wordpress/97112?ref=dimboiu" rel="nofollow" title="More info regarding Sansation – Business &#038; Portfolio Premium WordPress">More Info</a></p><h2>18.CONTRAST(1387 Sales)</h2><p>Contrast, a wordpress theme which is suitable for photographers, graphic &#038; web designers, corporates with a kickass features.</p><p><a href="http://themeforest.net/item/contrast/68089?ref=dimboiu" rel="nofollow" title="More info regarding CONTRAST">More Info</a></p><h2>19.Convergence &#8211; Community WordPress Theme(1382 Sales)</h2><p>Convergence is a nicely put together WordPress theme with the intent and focus on creating a community site. This theme includes many popular features seen in today&#8217;s industry leading community sites.</p><p><a href="http://themeforest.net/item/convergence-community-wordpress-theme/34924?ref=dimboiu" rel="nofollow" title="More info regarding Convergence - Community WordPress Theme">More Info</a></p><h2>20.Vulcan &#8211; Minimalist Business WordPress Theme 4(1349 Sales)</h2><p>Vulcan template is designed Modern and minimalist template, suit any kind of website. Vulcan available in five color option, it comes with three variations slider. With New Features of WordPress 3.0 Vulcan has been coded to improve capability of the WordPresss 3.0 features.</p><p><a href="http://themeforest.net/item/vulcan-minimalist-business-wordpress-theme-4/111625?ref=dimboiu" rel="nofollow" title="More info regarding Vulcan - Minimalist Business WordPress Theme 4">More Info</a></p><h2>21.OpenHouse Real Estate and Automotiv Car Dealership Bundle(1346 Sales)</h2><p>Openhouse (currently the highest rated WordPress Real Estate theme (realestate) with 5 stars average and over 150 ratings) is a very powerful and flexible Real Estate theme. It includes a very powerful and flexible Search, where you can search by location, number of baths, beds, max price, min price, and property type. The Location search alone is unique in that you can have multiple levels of locations. Check out the demo for an example. This theme also includes a fully featured Loan calculator which can be shown or hidden in Theme Options. It even has a link to generate a complete amortization table which you can print out. The color scheme choice is unlimited. Simply supply a color, and the whole site changes, including all gradients and effects.</p><p><a href="http://themeforest.net/item/-openhouse-real-estate-and-automotiv-car-dealership-bundle/104662?ref=dimboiu" rel="nofollow" title="More info regarding OpenHouse Real Estate and Automotiv Car Dealership Bundle">More Info</a></p><h2>22.Prosto &#8211; Business &#038; Portfolio, CMS WordPress theme(1332 Sales)</h2><p>Prosto is a professional developed, clean designed WordPress Theme with powerful CMS features. That is well suited for personal portfolio, blog, or any kind of business website. Easy to customize with extended admin panel for any kind of users. You can simply control your theme look and content without any special knowledge. Setup layout and choose custom sidebar for each page. Make unlimited portfolios in 3 different layouts that is give you a great flexibility and much more.</p><p><a href="http://themeforest.net/item/prosto-business-portfolio-cms-wordpress-theme/102796?ref=dimboiu" rel="nofollow" title="More info regarding Prosto - Business &#038; Portfolio, CMS WordPress theme">More Info</a></p><h2>23.The Jewelry Shop &#8211; WordPress eCommerce(1316 Sales)</h2><p><a href="http://themeforest.net/item/the-jewelry-shop-wordpress-ecommerce/102478?ref=dimboiu" rel="nofollow" title="More info regarding The Jewelry Shop - WordPress eCommerce">More Info</a></p><h2>24.Levitation WordPress Business &#038; Portfolio &#8211; 4 in 1(1241 Sales)</h2><p>Levitation is a WordPress Template, best suited for Business and Portfolio sites. It comes with 5 sleek skins and 2 different front page designs (if the WordPress Live Preview is not enough for you, please check out the html templates that are already available, the look stays the same in the WordPress version)</p><p><a href="http://themeforest.net/item/levitation-wordpress-business-portfolio-4-in-1/60299?ref=dimboiu" rel="nofollow" title="More info regarding Levitation WordPress Business &#038; Portfolio - 4 in 1">More Info</a></p><h2>25.Breeze &#8211; Professional Corporate and Portfolio WP(1236 Sales)</h2><p>Breeze is a WordPress theme designed with corporate businesses in mind. The theme is also well suited for online portfolios and blogs.</p><p><a href="http://themeforest.net/item/breeze-professional-corporate-and-portfolio-wp/118824?ref=dimboiu" rel="nofollow" title="More info regarding Breeze - Professional Corporate and Portfolio WP">More Info</a></p><h2>26.Bluelight WordPress | 2.0 Portfolio and Blog(1224 Sales)</h2><p>Huge code overhaul in this update! Bluelight now makes use of the new Menu Manager, updated homepage slider, updated layout, tons of style tweaks, lightbox portfolio items, 1-level drop down menu, and many other enhancements!</p><p><a href="http://themeforest.net/item/bluelight-wordpress-20-portfolio-and-blog/40433?ref=dimboiu" rel="nofollow" title="More info regarding Bluelight WordPress | 2.0 Portfolio and Blog">More Info</a></p><h2>27.Atlantica (WordPress) &#8211; Premium Portfolio Template(1221 Sales)</h2><p>This theme is a complete WordPress Theme, designed from the ground up to function first and foremost as a portfolio, then as a comprehensive WordPress theme that can be used for just about any site that needs a beautiful layout. This theme is ideal for artists, designers, photographer, and other creatives that are in need of a portfolio template that is professional and &#8220;to the point&#8221;. Even if you don&#8217;t need the huge image gallery page, this template will also work great for sites that need to showcase a few images above each content-page in a slick, sophisticated way.</p><p><a href="http://themeforest.net/item/atlantica-wordpress-premium-portfolio-template/49034?ref=dimboiu" rel="nofollow" title="More info regarding Atlantica (WordPress) - Premium Portfolio Template">More Info</a></p><h2>28.Prestige – Ultimate WordPress Theme(1212 Sales)</h2><p>Prestige is an unique and advanced WordPress theme. It comes with a big pack of various skins, shortcodes, widgets and fonts. Thanks to massive CMS options panel you can fully customize this theme to your needs. Prestige is the ultimate package with functional and powerful features.</p><p><a href="http://themeforest.net/item/prestige-ultimate-wordpress-theme/132654?ref=dimboiu" rel="nofollow" title="More info regarding Prestige – Ultimate WordPress Theme">More Info</a></p><h2>29.Studio Box Premium WordPress 9 in 1(1205 Sales)</h2><p>Studio Box Premium WordPress Theme is about simplifying building of your online portfolio. It is packed with useful showcases to have your creative work displayed for customers and clients.</p><p><a href="http://themeforest.net/item/studio-box-premium-wordpress-9-in-1/92483?ref=dimboiu" rel="nofollow" title="More info regarding Studio Box Premium WordPress 9 in 1">More Info</a></p><h2>30.The Clothes Shop -WordPress eCommerce(1157 Sales)</h2><p>A Flexible, Plugin Free and Localized (Translation-Ready) eCommerce theme!</p><p><a href="http://themeforest.net/item/the-clothes-shop-wordpress-ecommerce/64132?ref=dimboiu" rel="nofollow" title="More info regarding The Clothes Shop -WordPress eCommerce">More Info</a></p> ]]></content:encoded> <wfw:commentRss>http://dimboiu.com/top-30-premium-wordpress-themes-from-themeforest/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Moving your WordPress site: same domain, new host</title><link>http://dimboiu.com/moving-your-wordpress-site-same-domain-new-host/</link> <comments>http://dimboiu.com/moving-your-wordpress-site-same-domain-new-host/#comments</comments> <pubDate>Fri, 11 Feb 2011 23:36:50 +0000</pubDate> <dc:creator>Eugen Dimboiu</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[domain]]></category> <category><![CDATA[moving]]></category> <category><![CDATA[phpmyadmin]]></category> <category><![CDATA[wordpress]]></category><guid isPermaLink="false">http://dimboiu.com/?p=18</guid> <description><![CDATA[This post is the first one in a series of articles about moving your Wordpress installation. Moving a Wordpress site is a pretty straightforward  process. You have 2 parts: the Wordpress database and the Wordpress files (including your uploads / themes / plugins). ]]></description> <content:encoded><![CDATA[<p>This post is the first one in a series of articles about moving your WordPress installation:</p><ul><li>Moving your WordPress site: same domain , new host (Current)</li><li><a href="http://dimboiu.com/moving-your-wordpress-site-different-domain-same-host/" title="Moving your WordPress site: different domain , same host">Moving your WordPress site: different domain , same host</a></li><li>Moving your WordPress site: different domain , new host (Coming soon)</li></ul><p>Moving a WordPress site is a pretty straightforward  process. You have 2 parts: the WordPress database and the WordPress files (including your uploads / themes / plugins).</p><h2>Moving the WordPress Database</h2><p>The database holds all your posts / comments / pages / configuration options. Most hosts have phpmyadmin installed , so login to your control panel , and go to phpmyadmin.</p><p>Now click on the database of the site that you want moved. Click the export tab. Make sure all your tables are selected , and SQL is selected as the export. When you&#8217;re done click &#8220;GO&#8221;.</p><p>You will get a SQL extension file that contains your database.<br /> Now it&#8217;s time to import it on your new host. Login to the control panel from your new host , and create a new database and database user (note them somewhere , you will need them later). After you&#8217;ve created a new database and a new user , link them together (add the user to the database , will full rights ).<br /> Now you have a empty database , and a database user that can connect to it. Go to phpmyadmin and select your new database. After you selected it , you have a import tab , click it.</p><p>You have the option to upload a file , click &#8220;Browse&#8221; and select your database export (the one you downloaded from your other host). After you selected the SQL file , click &#8220;GO&#8221;.<br /> Congratulations, your database is now moved! That&#8217;s just half of the WordPress moving process.</p><h2>Moving the WordPress Files</h2><p>Connect using FTP yo your site. Go to the folder that has all your files (it&#8217;s where the wp-admin, wp-content and wp-includes folders and many files are). Select all and download them to a local folder.<br /> Now connect using FTP to your new host, and upload all your files. Be careful where you upload them , if the domain is the main domain , upload in the public_html folder , if you are hosting multiple domains be sure to upload the files where your domain name is setup.<br /> This is it , the second part of moving your WordPress site is done.</p><h2>Configuring wp-config.php</h2><p>Wp-config.php is a file located on the root of your WordPress installation. Open it , and find the next lines:</p><pre class="brush: php; title: ; notranslate">
/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');

/** MySQL database username */
define('DB_USER', 'username_here');

/** MySQL database password */
define('DB_PASSWORD', 'password_here');

/** MySQL hostname */
define('DB_HOST', 'localhost');
</pre><p>As the code is commented , put your new database name , database username , password and your MySQL hostname(most hosts use localhost). Upload your modified wp-config.php file to your new host.<br /> Now all you need to do is link you domain to your new host(add the domain to the hosting , change the nameservers etc) and test it.</p> ]]></content:encoded> <wfw:commentRss>http://dimboiu.com/moving-your-wordpress-site-same-domain-new-host/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: dimboiu.com @ 2015-04-28 12:46:26 -->