<?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>Blog - WP2X</title> <atom:link href="https://wp2x.com/category/blog/feed/" rel="self" type="application/rss+xml" /><link>https://wp2x.com</link> <description>We can help your Wordpress faster</description> <lastBuildDate>Sat, 26 Dec 2015 14:39:02 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod> hourly </sy:updatePeriod> <sy:updateFrequency> 1 </sy:updateFrequency> <generator>https://wordpress.org/?v=5.6.16</generator> <item><title>.htaccess redirection tips</title><link>https://wp2x.com/htaccess-redirection-tips/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Sat, 26 Dec 2015 14:39:02 +0000</pubDate> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[wordpress html]]></category> <category><![CDATA[wordpress programming]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=425</guid><description><![CDATA[<p>.htaccess is very powerful. Even the slightest syntax error (like a missing space) can result in your content not displaying correctly or at all. Since .htaccess is a hidden system file, please make sure your FTP client is configured to show hidden files. This is usually an option in the program&#8217;s preferences/options. Let&#8217;s do these ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/htaccess-redirection-tips/">.htaccess redirection tips</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>.htaccess is very powerful. Even the slightest syntax error (like a missing space) can result in your content not displaying correctly or at all.<span
id="more-425"></span></p><p><img
loading="lazy" class="aligncenter size-full wp-image-426" src="http://wp2x.com/wp-content/uploads/2015/12/illu_htaccess.gif?4b2a2c&amp;4b2a2c" alt="illu_htaccess" width="300" height="300" /></p><p>Since .htaccess is a hidden system file, please make sure your FTP client is configured to show hidden files. This is usually an option in the program&#8217;s preferences/options.</p><p>Let&#8217;s do these step to create a redirection by .htaccess file.</p><h2>1. Create an empty text file using a text editor such as notepad, and save it as htaccess.txt.</h2><h2>2. Edit the contents of the file. Check the following examples:</h2><p>301 (Permanent) Redirect: Point an entire site to a different URL on a permanent basis. This is the most common type of redirect and is useful in most situations. In this example, we are redirecting to the &#8220;mt-example.com&#8221; domain:</p><pre class="lang:default decode:true "># This allows you to redirect your entire website to any other domain
Redirect 301 / http://mt-example.com/</pre><p>302 (Temporary) Redirect: Point an entire site to a different temporary URL. This is useful for SEO purposes when you have a temporary landing page and plan to switch back to your main landing page at a later date:</p><pre class="lang:default decode:true "># This allows you to redirect your entire website to any other domain
Redirect 302 / http://mt-example.com/</pre><p>Redirect index.html to a specific subfolder:</p><pre class="lang:default decode:true "># This allows you to redirect index.html to a specific subfolder
Redirect /index.html http://example.com/newdirectory/

Redirect an old file to a new file path:

# Redirect old file path to new file path
Redirect /olddirectory/oldfile.html http://example.com/newdirectory/newfile.html
Redirect to a specific index page:

# Provide Specific Index Page (Set the default handler)
DirectoryIndex index.html</pre><h2>3. Upload this file and re-name it to .htaccess</h2><p>MORE POWERFUL URL CHANGES WITH MOD_REWRITE</p><p>If you need to make complex changes to the way your URL displays, you should visit Using .htaccess rewrite rules. You can do things like add &#8220;www&#8221; to the beginning of your URL, redirect all requests to a subfolder but keep the rest of the URL, etc.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/htaccess-redirection-tips/">.htaccess redirection tips</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>How to enable Gzip in .Htaccess for WordPress?</title><link>https://wp2x.com/how-to-enable-for-wordpress/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Wed, 18 Nov 2015 10:37:19 +0000</pubDate> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[php tips]]></category> <category><![CDATA[wordpress programming]]></category> <category><![CDATA[wordpress tips]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=421</guid><description><![CDATA[<p>In case you have not heard of it in the past, Gzip is a server process that essentially compresses your files on the fly before transmission to the user. It is primarily used to compress text files such as HTML, CSS, and JavaScript with impressive results. Take the 90KB Mootools framework for example, Gzip reduces ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/how-to-enable-for-wordpress/">How to enable Gzip in .Htaccess for WordPress?</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>In case you have not heard of it in the past, Gzip is a server process that essentially compresses your files on the fly before transmission to the user. <span
id="more-421"></span>It is primarily used to compress text files such as HTML, CSS, and JavaScript with impressive results. Take the 90KB Mootools framework for example, Gzip reduces it to 26KB saving the visitor time and your bandwidth.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/11/gzip3d.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-422" src="http://wp2x.com/wp-content/uploads/2015/11/gzip3d.png?4b2a2c&amp;4b2a2c" alt="gzip3d" width="299" height="198" /></a></p><pre class="lang:ini decode:true ">#Gzip
&lt;ifmodule mod_deflate.c&gt;
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript
&lt;/ifmodule&gt;
#End Gzip</pre><p>If your hosting setup has Gzip enabled I highly recommend that you enable it in your .htaccess file by copying and pasting the above code into your .htaccess. If they don&#8217;t have it enabled, simply ask, most of the time they will simply enable it for you. It also comes recommended by Google and <a
href="http://developer.yahoo.com/performance/rules.html#gzip" target="_blank">Yahoo</a>.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/how-to-enable-for-wordpress/">How to enable Gzip in .Htaccess for WordPress?</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Install Redis Caching to Speed Up WordPress on Ubuntu</title><link>https://wp2x.com/install-redis-caching-to-speed-up-wordpress-on-ubuntu/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Mon, 28 Sep 2015 10:03:46 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[cache]]></category> <category><![CDATA[redis]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=417</guid><description><![CDATA[<p>In this tutorial, Redis will be configured as a cache for WordPress to alleviate the redundant and time-consuming database queries used to render a WordPress page. The result is a WordPress site which is much faster, uses less database resources, and provides a tunable persistent cache. Redis is an open-source key value store that can ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/install-redis-caching-to-speed-up-wordpress-on-ubuntu/">Install Redis Caching to Speed Up WordPress on Ubuntu</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>In this tutorial, Redis will be configured as a cache for WordPress to alleviate the redundant and time-consuming database queries used to render a WordPress page. The result is a WordPress site which is much faster, uses less database resources, and provides a tunable persistent cache.<span
id="more-417"></span></p><p><a
href="http://wp2x.com/wp-content/uploads/2015/09/redis_cashing_for_wordpress.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-418" src="http://wp2x.com/wp-content/uploads/2015/09/redis_cashing_for_wordpress.png?4b2a2c&amp;4b2a2c" alt="redis_cashing_for_wordpress" width="547" height="338" srcset="https://wp2x.com/wp-content/uploads/2015/09/redis_cashing_for_wordpress.png 547w, https://wp2x.com/wp-content/uploads/2015/09/redis_cashing_for_wordpress-300x185.png 300w" sizes="(max-width: 547px) 100vw, 547px" /></a></p><p>Redis is an open-source key value store that can operate as both an in-memory store and as cache. Redis is a data structure server that can be used as a database server on its own, or paired with a relational database like MySQL to speed things up, as we&#8217;re doing in this tutorial.</p><p>Default WordPress home page without Redis:</p><p>804ms page load time</p><p>Default WordPress home page with Redis:</p><p>449ms page load time</p><h2>Redis vs. Memcached</h2><p>Memcached is also a popular cache choice. However, at this point, Redis does everything Memcached can do, with a much larger feature set. This Stack Overflow page has some general information as an overview or introduction to persons new to Redis.</p><h2>Step 1 — Install Redis</h2><p>In order to use Redis with WordPress, two packages need to be installed: redis-server and php5-redis. The redis-server package provides Redis itself, while the php5-redis package provides a PHP extension for PHP applications like WordPress to communicate with Redis.</p><p>Install the softare:</p><pre class="lang:default decode:true">sudo apt-get install redis-server php5-redis</pre><h2>Step 2 — Configure Redis as a Cache</h2><p>Redis can operate both as a NoSQL database store as well as a cache. For this guide and use case, Redis will be configured as a cache. In order to do this, the following settings are required.</p><p>Edit the file /etc/redis/redis.conf and add the following lines at the bottom:</p><p>Add these lines at the end of the file:</p><pre class="lang:default decode:true ">maxmemory 256mb
maxmemory-policy allkeys-lru</pre><p>When changes are complete, save and close the file.</p><h2>Step 3 — Obtain Redis Cache Backend Script</h2><p>This PHP script for WordPress was originally developed by Eric Mann. It is a Redis object cache backend for WordPress.</p><p>Download the object-cache.php script. This download is from DigitalOcean&#8217;s asset server, but this is a third-party script. You should read the comments in the script to see how it works.</p><p>Download the PHP script:</p><pre class="lang:default decode:true">wget https://assets.digitalocean.com/articles/wordpress_redis/object-cache.php</pre><p>Move the file to the /wp-content directory of your WordPress installation:</p><pre class="lang:default decode:true ">sudo mv object-cache.php /var/www/html/wp-content/</pre><p>Depending on your WordPress installation, your location may be different.</p><h2>Step 4 — Enable Cache Settings in wp-config.php</h2><p>Next, edit the wp-config.php file to add a cache key salt with the name of your site (or any string you would like).</p><pre class="lang:default decode:true ">nano /var/www/html/wp-config.php</pre><p>Add this line at the end of the * Authentication Unique Keys and Salts. section:</p><pre class="lang:default decode:true ">define('WP_CACHE_KEY_SALT', 'example.com');</pre><p>You can use your domain name or another string as the salt.</p><p><strong>Note</strong>: For users hosting more than one WordPress site, each site can share the same Redis installation as long as it has its own unique cache key salt.</p><p>Also, add the following line after the WP_CACHE_KEY_SALT line to create a persistent cache with the Redis object cache plugin:</p><pre class="lang:default decode:true">define('WP_CACHE', true);</pre><p>All together, your file should look like this:</p><p>* Authentication Unique Keys and Salts.</p><pre class="lang:default decode:true ">. . .

define('NONCE_SALT', 'put your unique phrase here');

define('WP_CACHE_KEY_SALT', 'example.com');
define('WP_CACHE', true);
Save and close the file.
</pre><h2>Step 5 — Restart Redis and Apache</h2><p>Finally, restart redis-service and apache2.</p><p>Restart Redis:</p><pre class="lang:default decode:true ">sudo service redis-server restart</pre><p>Restart Apache:</p><pre class="lang:default decode:true ">sudo service apache2 restart</pre><p>Restart php5-fpm if you are using it; this is not part of the basic installation on DigitalOcean:</p><pre class="lang:default decode:true ">sudo service php5-fpm restart</pre><p>That&#8217;s it! Your WordPress site is now using Redis caching. If you check your page load speeds and resource use, you should notice improvements.</p><p>Monitor Redis with redis-cli</p><p>To monitor Redis, use the redis-cli command like so:</p><pre class="lang:default decode:true ">redis-cli monitor</pre><p>When you run this command, you will see the real-time output of Redis serving cached queries. If you don&#8217;t see anything, visit your website and reload a page.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/install-redis-caching-to-speed-up-wordpress-on-ubuntu/">Install Redis Caching to Speed Up WordPress on Ubuntu</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Free wordpress theme AccessPress Root</title><link>https://wp2x.com/free-wordpress-theme-accesspress-root/</link> <comments>https://wp2x.com/free-wordpress-theme-accesspress-root/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Wed, 12 Aug 2015 10:16:51 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Themes]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress programming]]></category> <category><![CDATA[wordpress theme]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=410</guid><description><![CDATA[<p>Today I will show you a totally free responsive wordpress theme AccessPress Root with minimal and useful features AccessPress Root is a simple, clean, beautifully designed responsive WordPress business theme with drag and drop homepage sections. &#160; Its minimal but mostly used features will help you setup your website easily and quickly. Full width and ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/free-wordpress-theme-accesspress-root/">Free wordpress theme AccessPress Root</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Today I will show you a totally free responsive wordpress theme AccessPress Root with minimal and useful features<span
id="more-410"></span></p><p>AccessPress Root is a simple, clean, beautifully designed responsive WordPress business theme with drag and drop homepage sections.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/08/screenshot-e1439374454818.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-412" src="http://wp2x.com/wp-content/uploads/2015/08/screenshot-e1439374454818.png?4b2a2c&amp;4b2a2c" alt="screenshot" width="600" height="450" /></a></p><p>&nbsp;</p><p>Its minimal but mostly used features will help you setup your website easily and quickly. Full width and boxed layout, featured slider, featured posts, services/features/projects layout, testimonial layout, blog layout, social media integration, call to action and many other page layouts.</p><p>Fully responsive, WooCommerce compatible, bbPress compatible, translation ready, cross-browser compatible, SEO friendly, RTL support.</p><p>AccessPress Root is multi-purpose and is suitable for any type of business. Highest level of compatibility with mostly used WP plugins.</p><p>Demo: <a
href="http://demo.accesspressthemes.com/accesspress-root" target="_blank">http://demo.accesspressthemes.com/accesspress-root</a></p><p>Download Free <strong>AccessPress Root theme </strong>with this form<div
class="freebie-sub-box"><div
class="freebie-sub-inner"><h3>Please enter your email and get it now!</h3><p>Simply enter your email address and the download link will be sent right to your email box.</p><form
class="freebie-sub-form"><div
class="replaceArea"><div
class="replaceArea-error"></div><center> <input
type="text" onblur="if(this.value=='')this.value='Email Address';" onfocus="if(this.value=='Email Address')this.value='';" value="Email Address" name="email" class="name"> <input
type="submit" value="Download" class="freebie-submit"></center> <input
type="hidden" name="id" id="id" value="aHR0cHM6Ly93b3JkcHJlc3Mub3JnL3RoZW1lcy9hY2Nlc3NwcmVzcy1yb290Lw=="></div></form></div></div><p>The post <a
rel="nofollow" href="https://wp2x.com/free-wordpress-theme-accesspress-root/">Free wordpress theme AccessPress Root</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/free-wordpress-theme-accesspress-root/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Top 3 Free Contact Form WordPress Plugin</title><link>https://wp2x.com/top-3-free-contact-form-wordpress-plugin/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Thu, 06 Aug 2015 11:20:39 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress management]]></category> <category><![CDATA[wordpress plugin]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=405</guid><description><![CDATA[<p>Contact form wordpress plugin is what we can&#8217;t miss for our wordpress site. Any website need feedback from user at least via contact form. Today I will show you top 3 free contact form wordpress plugin from a hundred of contact form plugins on wordpress plugin directory. &#160; 1. Contact Form 7 WordPress Plugin URL: https://wordpress.org/plugins/contact-form-7/ Contact ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/top-3-free-contact-form-wordpress-plugin/">Top 3 Free Contact Form WordPress Plugin</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Contact form wordpress plugin is what we can&#8217;t miss for our wordpress site. Any website need feedback from user at least via contact form. Today I will show you top 3 free contact form wordpress plugin from a hundred of contact form plugins on wordpress plugin directory.<span
id="more-405"></span></p><p>&nbsp;</p><h2><img
loading="lazy" class="aligncenter size-full wp-image-406" src="http://wp2x.com/wp-content/uploads/2015/07/contact-form-286x300.png?4b2a2c&amp;4b2a2c" alt="contact-form-286x300" width="286" height="300" /></h2><h2>1. Contact Form 7 WordPress Plugin</h2><p>URL: <a
href="https://wordpress.org/plugins/contact-form-7/" target="_blank">https://wordpress.org/plugins/contact-form-7/</a></p><p>Contact form 7 is very popular contact form wordpress plugin with more than 20 million downloads at a moment and keep growing.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/07/contact-form-7.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-407" src="http://wp2x.com/wp-content/uploads/2015/07/contact-form-7.png?4b2a2c&amp;4b2a2c" alt="contact-form-7" width="530" height="720" srcset="https://wp2x.com/wp-content/uploads/2015/07/contact-form-7.png 530w, https://wp2x.com/wp-content/uploads/2015/07/contact-form-7-221x300.png 221w" sizes="(max-width: 530px) 100vw, 530px" /></a></p><p>&nbsp;</p><p>Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p><h2>2. Contact Form wordpress plugin</h2><p>URL: <a
href="https://wordpress.org/plugins/contact-form-plugin/" target="_blank">https://wordpress.org/plugins/contact-form-plugin/</a></p><p>This plugin name too general but it &#8216;s usable.</p><p>The Contact Form plugin allows you to implement a feedback form to a web-page or a post in no time. It is an extremely easy form, that doesn’t require any additional settings, though there are some available options. All you need is just to activate the plugin and insert the shortcode [ bestwebsoft_contact_form ] into the text. There is also a premium version of the plugin with more useful features available.</p><p><iframe
width="618" height="348" src="https://www.youtube.com/embed/nGwh-oslK-c?feature=oembed" frameborder="0" allowfullscreen></iframe></p><h2>3. Fast Secure Contact Form WordPress Plugin</h2><p>URL: <a
href="https://wordpress.org/plugins/si-contact-form/" target="_blank">https://wordpress.org/plugins/si-contact-form/</a></p><p>Something nice for people who want the most security contact form plugin.</p><p>Easily create and add forms to WordPress. Fields are easy to add, remove, and re-order. The contact form will let the user send emails to a site&#8217;s admin, and also send a meeting request to talk over phone or video.</p><p><iframe
width="618" height="348" src="https://www.youtube.com/embed/HM7MXUSGh50?feature=oembed" frameborder="0" allowfullscreen></iframe></p><p>The post <a
rel="nofollow" href="https://wp2x.com/top-3-free-contact-form-wordpress-plugin/">Top 3 Free Contact Form WordPress Plugin</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>WordPress Hosting/Server System Requirements</title><link>https://wp2x.com/wordpress-hostingserver-system-requirements/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Thu, 30 Jul 2015 11:14:42 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Hosting]]></category> <category><![CDATA[best wordpress hosting]]></category> <category><![CDATA[php programming]]></category> <category><![CDATA[php tips]]></category> <category><![CDATA[php web hosting]]></category> <category><![CDATA[top wordpress hosting]]></category> <category><![CDATA[web hosting]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=402</guid><description><![CDATA[<p>WordPress require a very small server configuration hardware and software. In this post, I only talk about the wordpress system requirements what enough to run wordpress (not wordpress fully optimized hosting what make wordpress work fast). Here is simple requirements When you use WordPress with system requirements, you can check these plugins for help</p><p>The post <a
rel="nofollow" href="https://wp2x.com/wordpress-hostingserver-system-requirements/">WordPress Hosting/Server System Requirements</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>WordPress require a very small server configuration hardware and software. In this post, I only talk about the wordpress system requirements what enough to run wordpress (not wordpress fully optimized hosting what make wordpress work fast).<span
id="more-402"></span></p><p><img
loading="lazy" class="aligncenter size-full wp-image-403" src="http://wp2x.com/wp-content/uploads/2015/07/Wordpress-Hosting-System-Requirements.jpg?4b2a2c&amp;4b2a2c" alt="Wordpress-Hosting-System-Requirements" width="606" height="306" srcset="https://wp2x.com/wp-content/uploads/2015/07/Wordpress-Hosting-System-Requirements.jpg 606w, https://wp2x.com/wp-content/uploads/2015/07/Wordpress-Hosting-System-Requirements-300x151.jpg 300w" sizes="(max-width: 606px) 100vw, 606px" /></p><p>Here is simple requirements<br
/><div
class="su-list" style="margin-left:0px"><ul><li><i
class="sui sui-check-square-o" style="color:#2fd730"></i> wOS: Linux/Unix/Mac/Windows</li><li><i
class="sui sui-check-square-o" style="color:#2fd730"></i> Web server: Apache/Nginx (or any web server support PHP well)</li><li><i
class="sui sui-check-square-o" style="color:#2fd730"></i> PHP 5.2.4 or greater</li><li><i
class="sui sui-check-square-o" style="color:#2fd730"></i> MySQL 5.0 or greater</li><li><i
class="sui sui-check-square-o" style="color:#2fd730"></i> The mod_rewrite Apache module</li></ul></div> When you use WordPress with system requirements, you can check these plugins for help<br
/><div
class="su-list" style="margin-left:0px"><ul><li><i
class="sui sui-check-square-o" style="color:#2fd730"></i> Library for handling minimum system requirements in WordPress Plugins:<a
href="https://github.com/dsawardekar/wp-requirements" target="_blank">https://github.com/dsawardekar/wp-requirements</a></li><li><i
class="sui sui-check-square-o" style="color:#2fd730"></i> System Requirements Check:<a
href="https://wordpress.org/plugins/system-requirements-check/" target="_blank">https://wordpress.org/plugins/system-requirements-check/</a></li></ul></div><p>The post <a
rel="nofollow" href="https://wp2x.com/wordpress-hostingserver-system-requirements/">WordPress Hosting/Server System Requirements</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Security tips for WordPress</title><link>https://wp2x.com/security-tips-for-wordpress/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Thu, 23 Jul 2015 10:45:20 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[security]]></category> <category><![CDATA[wordpress optimization]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress programming]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=398</guid><description><![CDATA[<p>There are a lot of risks from internet for a webmaster to maintain their website, but with wordpress it &#8216;s easy to do the basic security, today I will share you 3 wordpress security tips what always need for any wordpress site. &#160; 1. WordPress security with daily backup No one can guarantee their website ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/security-tips-for-wordpress/">Security tips for WordPress</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>There are a lot of risks from internet for a webmaster to maintain their website, but with wordpress it &#8216;s easy to do the basic security, today I will share you 3 wordpress security tips what always need for any wordpress site.<span
id="more-398"></span></p><p>&nbsp;</p><h2><img
loading="lazy" class="aligncenter size-full wp-image-399" src="http://wp2x.com/wp-content/uploads/2015/07/Wordpress-Security-Plugins.jpg?4b2a2c&amp;4b2a2c" alt="Wordpress-Security-Plugins" width="570" height="300" srcset="https://wp2x.com/wp-content/uploads/2015/07/Wordpress-Security-Plugins.jpg 570w, https://wp2x.com/wp-content/uploads/2015/07/Wordpress-Security-Plugins-300x158.jpg 300w" sizes="(max-width: 570px) 100vw, 570px" /></h2><h2>1. WordPress security with daily backup</h2><p>No one can guarantee their website is secured 100% so that let &#8216;s prepare a backup version daily via your hosting plan. Almost hosting service provide daily backup service include files and database. Just one-click to restore if you meet any risk later on. This way will make sure you are safe 100%.</p><h2>2. Internet activity security</h2><p><strong>1. Use A Secure Network At Home</strong> – If you are using Wifi at your home or office, then I would suggest setting up a private WPA2 network with a strong, randomly-generated name and network passphrase. For additional protection, you can employ “security through obscurity” methods such as enabling MAC Address Filtering.<br
/> <strong>2. Use An Encrypted VPN Connection Over Public Wifi</strong> – Generally speaking, it’s best to never log in to a sensitive area such as your WordPress Dashboard when connected to the internet over public Wifi. If you are using your laptop or phone over a public network, always run your connection through an encrypted VPN and make sure that you are signing in to your website over SSL. You can purchase a VPN from StrongVPN.com.</p><h2>3. Securing Your Personal Computer</h2><p>If I can recommend, I recommend you use Linux or Mac to anti virus. In windows I usually meet the key logger software what can&#8217;t be detected by any anti virus software. It &#8216;s a lot of risk if you lose server account and email accounts.</p><p>But anyway, if you can&#8217;t use Linux or Mac I think you can a good anti virus software like <a
href="https://www.kaspersky.com/" target="_blank">Kaspersky</a></p><p>They are simple but strong to help you in any risk situation. Hope it help!</p><p>Welcome any comment.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/security-tips-for-wordpress/">Security tips for WordPress</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>WordPress 20x faster with Turbo Cache on SwiftServer</title><link>https://wp2x.com/wordpress-20x-faster-with-turbo-cache-on-swiftserver/</link> <comments>https://wp2x.com/wordpress-20x-faster-with-turbo-cache-on-swiftserver/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Sun, 12 Jul 2015 02:16:16 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Hosting]]></category> <category><![CDATA[20x faster]]></category> <category><![CDATA[a2 hosting]]></category> <category><![CDATA[best wordpress hosting]]></category> <category><![CDATA[fast host]]></category> <category><![CDATA[fast wordpress]]></category> <category><![CDATA[swiftserver]]></category> <category><![CDATA[turbo cache]]></category> <category><![CDATA[turbo platform]]></category> <category><![CDATA[wordpress hosting]]></category> <category><![CDATA[wordpress optimization]]></category> <category><![CDATA[wordpress tips]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=390</guid><description><![CDATA[<p>First of all, 20x faster for wordpress load is real, if you read this post and follow all of steps for basic wordpress installation and wordpress default theme. We are sure you can reach to 20x speed. But belong to your custom theme and plugin can decrease the speed. But for sure you can see ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/wordpress-20x-faster-with-turbo-cache-on-swiftserver/">WordPress 20x faster with Turbo Cache on SwiftServer</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>First of all, 20x faster for wordpress load is real, if you read this post and follow all of steps for basic wordpress installation and wordpress default theme. We are sure you can reach to 20x speed. But belong to your custom theme and plugin can decrease the speed. But for sure you can see the speed faster a lot with Turbo Cache.<span
id="more-390"></span><a
href="http://s.wp2x.com/a2hosting"><img
loading="lazy" class="aligncenter size-full wp-image-391" src="http://wp2x.com/wp-content/uploads/2015/07/turbo-hosting.png?4b2a2c&amp;4b2a2c" alt="turbo-hosting" width="248" height="158" /></a></p><h2>1. What if your site have 1-second page load delay</h2><p>Let&#8217;s check what you have to face to if you have 1-second page load delay. According to an Aberdeen Group study 1-second delay can cause a:</p><ul><li>7% decrease in your conversion rate</li><li>16% decrease in visitor satisfaction</li><li>11% fewer page views</li><li>Potential drop in search engine rankings</li></ul><p>You can think about a dream situation where your site can speed up 20x then how much money can make from your site? That &#8216;s the main reason why we share you this post.</p><h2>2. What is Turbo Cache on SwiftServer Platform</h2><p>Turbo Cache or Turbo Server on SwiftServer Platform is a collection of softwares and tools what are designed to make the best page load and server performance by <a
href="http://s.wp2x.com/a2hosting" target="_blank">A2 Hosting</a>. It include:</p><ul><li>Memcached</li><li>APC/OPCache</li><li>Varnish Cache</li><li>Pre-configuration for best combination for WordPress and server by A2 Optimization</li></ul><p>You just need to install wordpress then visit Control panel of A2 Hosting, click icon &#8220;A2 Optimized&#8221; you will see a very easy to use user interface like this</p><p><a
href="http://s.wp2x.com/a2hosting"><img
loading="lazy" class="aligncenter size-full wp-image-392" src="http://wp2x.com/wp-content/uploads/2015/07/cPanel_-_A2_Optimized-e1436667069391.jpg?4b2a2c&amp;4b2a2c" alt="cPanel_-_A2_Optimized" width="601" height="449" /></a></p><h2>3. Where and How to use Turbo Cache?</h2><p>It &#8216;s quite simple to have Turbo Cache to make your wordpress site 20x faster. Just need to visit <a
href="http://s.wp2x.com/a2hosting" target="_blank">A2 Hosting</a> and buy the Turbo Cache package then everything will be ready for you in affordable price.</p><p><a
href="http://s.wp2x.com/a2hosting"><img
loading="lazy" class="aligncenter size-full wp-image-393" src="http://wp2x.com/wp-content/uploads/2015/07/Shared_Hosting___Fastest_Web_Hosting.jpg?4b2a2c&amp;4b2a2c" alt="Shared_Hosting___Fastest_Web_Hosting" width="421" height="134" srcset="https://wp2x.com/wp-content/uploads/2015/07/Shared_Hosting___Fastest_Web_Hosting.jpg 421w, https://wp2x.com/wp-content/uploads/2015/07/Shared_Hosting___Fastest_Web_Hosting-300x95.jpg 300w" sizes="(max-width: 421px) 100vw, 421px" /></a></p><p>And what if you choose Turbo Cache package from A2 Hosting? You can get these things</p><ul><li>Fewer users per server</li><li>SwiftCache &#8211; Powered By APC/OPcache &amp; Turbo Cache</li><li>Hosted on SwiftServer SSDs</li><li>Uses less CPU and memory than Apache</li><li>Handles connections faster and more efficiently</li><li>Provides enhanced stability</li></ul><p>Don&#8217;t forget to use coupon <strong>51FAST</strong> to save <strong>51%</strong> for first order. Good luck with your new crazy fast wordpress site with 20x faster.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/wordpress-20x-faster-with-turbo-cache-on-swiftserver/">WordPress 20x faster with Turbo Cache on SwiftServer</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/wordpress-20x-faster-with-turbo-cache-on-swiftserver/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Top 3 Image Optimize WordPress Plugin for SEO</title><link>https://wp2x.com/top-3-image-optimize-wordpress-plugin-for-seo/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Wed, 24 Jun 2015 04:55:26 +0000</pubDate> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[image]]></category> <category><![CDATA[optimize]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=383</guid><description><![CDATA[<p>Image optimize in wordpress is quite simple to solve what give us a lot of score in Google Speed insight check. If you check score with Google Insight you will see something like this. &#160; In this tutorial we will show you 3 wordpress plugins what can help you reduce the image size but still ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/top-3-image-optimize-wordpress-plugin-for-seo/">Top 3 Image Optimize WordPress Plugin for SEO</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Image optimize in wordpress is quite simple to solve what give us a lot of score in Google Speed insight check. If you check score with Google Insight you will see something like this.<span
id="more-383"></span></p><p><a
href="http://wp2x.com/wp-content/uploads/2015/06/PageSpeed_Insights.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-384" src="http://wp2x.com/wp-content/uploads/2015/06/PageSpeed_Insights.jpg?4b2a2c&amp;4b2a2c" alt="PageSpeed_Insights" width="540" height="177" srcset="https://wp2x.com/wp-content/uploads/2015/06/PageSpeed_Insights.jpg 540w, https://wp2x.com/wp-content/uploads/2015/06/PageSpeed_Insights-300x98.jpg 300w" sizes="(max-width: 540px) 100vw, 540px" /></a></p><p>&nbsp;</p><p>In this tutorial we will show you 3 wordpress plugins what can help you reduce the image size but still keep a very good image quality. It will help to speed up the image load and page load.</p><h2>1. EWWW Image Optimizer</h2><p>Download: <a
href="https://wordpress.org/plugins/ewww-image-optimizer/" target="_blank">https://wordpress.org/plugins/ewww-image-optimizer/</a></p><p>This is my No. 1 suggestion since it &#8216;s very easy to use and save time. Even though you got a lot of old images what need to reduce size, it still help you solve that with Bulk feature. Check this screen</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/06/Bulk_Optimize.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-385" src="http://wp2x.com/wp-content/uploads/2015/06/Bulk_Optimize.jpg?4b2a2c&amp;4b2a2c" alt="Bulk_Optimize" width="549" height="325" srcset="https://wp2x.com/wp-content/uploads/2015/06/Bulk_Optimize.jpg 549w, https://wp2x.com/wp-content/uploads/2015/06/Bulk_Optimize-300x178.jpg 300w" sizes="(max-width: 549px) 100vw, 549px" /></a></p><p>&nbsp;</p><p>The EWWW Image Optimizer is a WordPress plugin that will automatically optimize your images as you upload them to your blog. It can optimize the images that you have already uploaded, convert your images automatically to the file format that will produce the smallest image size (make sure you read the WARNINGS), and optionally apply lossy reductions for PNG and JPG images.</p><h2>2. WP Smush</h2><p>Download: <a
href="https://wordpress.org/plugins/wp-smushit/" target="_blank">https://wordpress.org/plugins/wp-smushit/</a></p><p>WP Smush strips hidden, bulky information from your images, reducing the file size without losing quality. The faster your site loads, the more Google, Bing, Yahoo and other search engines will like it.</p><p>Look at this video and you will how it do</p><p><iframe
width="560" height="315" src="https://www.youtube.com/embed/GCzH7z05s5U?feature=oembed" frameborder="0" allowfullscreen></iframe></p><h2>3. Kraken Image Optimizer</h2><p>Download: <a
href="https://kraken.io/?ref=d48f2eb26e3a" target="_blank">https://wordpress.org/plugins/kraken-image-optimizer/</a></p><p>This plugin allows you to optimize your WordPress images through the Kraken API, the world&#8217;s most advanced image optimization solution.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/06/Kraken_Image_Optimizer.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-386" src="http://wp2x.com/wp-content/uploads/2015/06/Kraken_Image_Optimizer.jpg?4b2a2c&amp;4b2a2c" alt="Kraken_Image_Optimizer" width="464" height="248" srcset="https://wp2x.com/wp-content/uploads/2015/06/Kraken_Image_Optimizer.jpg 464w, https://wp2x.com/wp-content/uploads/2015/06/Kraken_Image_Optimizer-300x160.jpg 300w" sizes="(max-width: 464px) 100vw, 464px" /></a></p><p>This plugin allows you to optimize new and existing WordPress image uploads through Kraken Image Optimizer&#8217;s API. Both lossless and intelligent lossy optimization modes are supported. Supported filetypes are JPEG, PNG and GIF. Maximum filesize limit is 16 MB.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/top-3-image-optimize-wordpress-plugin-for-seo/">Top 3 Image Optimize WordPress Plugin for SEO</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Randomise elements in PHP array with shuffle</title><link>https://wp2x.com/randomise-elements-in-php-array-with-shuffle/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Fri, 29 May 2015 15:14:41 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[php]]></category> <category><![CDATA[wordpress development]]></category> <category><![CDATA[wordpress ebook]]></category> <category><![CDATA[wordpress html]]></category> <category><![CDATA[wordpress programming]]></category> <category><![CDATA[wordpress theme]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=370</guid><description><![CDATA[<p>Randomise elements in PHP array with shuffle is quite easy. I have to spend at least an hour to optimise this task until I found shuffle function what already done this task :). The function reference you can check more detail here: http://php.net/manual/en/function.shuffle.php Here is an example for how to randomise elements in PHP array with ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/randomise-elements-in-php-array-with-shuffle/">Randomise elements in PHP array with shuffle</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Randomise elements in PHP array with shuffle is quite easy. I have to spend at least an hour to optimise this task until I found shuffle function what already done this task :).<span
id="more-370"></span></p><p>The function reference you can check more detail here: <a
href="http://php.net/manual/en/function.shuffle.php" target="_blank">http://php.net/manual/en/function.shuffle.php</a></p><p><a
href="http://wp2x.com/wp-content/uploads/2015/05/PHP__shuffle_-_Manual.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-371" src="http://wp2x.com/wp-content/uploads/2015/05/PHP__shuffle_-_Manual.jpg?4b2a2c&amp;4b2a2c" alt="PHP__shuffle_-_Manual" width="564" height="326" srcset="https://wp2x.com/wp-content/uploads/2015/05/PHP__shuffle_-_Manual.jpg 564w, https://wp2x.com/wp-content/uploads/2015/05/PHP__shuffle_-_Manual-300x173.jpg 300w" sizes="(max-width: 564px) 100vw, 564px" /></a></p><p>Here is an example for how to randomise elements in PHP array with <strong>shuffle</strong></p><p>Let &#8216;s run this code</p><pre class="lang:php decode:true ">&lt;?php
    $natural_born_killers = array("lions", "tigers", "bears", "kittens");
    shuffle($natural_born_killers);
    var_dump($natural_born_killers);
?&gt;</pre><p>Run in many times and try to see the result array, it will show you different result every time you run it.<br
/> One major drawback to using shuffle() is that it mangles your array keys. This is unavoidable sadly, and you need to live with it when you use shuffle(). Note that shuffle uses its parameter by reference &#8211; it returns true, but shuffles up the parameter you pass to it.</p><p>If you want to pick out just one random value from an array, you can use array_rand() &#8211; it takes an array to read from, then returns one random key from inside there. The advantage to array_rand() is that it leaves the original array intact &#8211; you can use the random key returned to grab the related value from the array, but other than that the original array is left untouched.</p><p><strong>Array_rand</strong>() has an optional second parameter that allows you to specify the number of elements you would like returned. These are each chosen randomly from the array, and are not necessarily returned in any particular order.</p><p>Before I show you an example, you need to be aware of the following attributes of <strong>array_rand</strong>():</p><p>It returns the keys in your array. If these aren&#8217;t specified, the default integer indexes are used. To get the value out of the array, just look up the value at the key.</p><p>If you ask for one random element, or do not specify parameter two, you will get a standard variable back.</p><p>If you ask for more than one random element, you will receive an array of variables back.</p><p>If you ask for more random elements than there are in the array you will get an error</p><p><strong>Array_rand</strong>() will not return duplicate elements if you request more than one random element</p><p>If you want to read most or all of the elements from your array in a random order, use a mass-randomiser like shuffle() &#8211; it is faster.</p><p>With that in mind, here&#8217;s an example of array_rand() in action:</p><pre class="lang:php decode:true">&lt;?php
    $natural_born_killers = array("lions", "tigers", "bears", "kittens");
    var_dump(array_rand($natural_born_killers, 2));
?&gt;</pre><p>&nbsp;</p><p>The post <a
rel="nofollow" href="https://wp2x.com/randomise-elements-in-php-array-with-shuffle/">Randomise elements in PHP array with shuffle</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Convert a string to a number in PHP</title><link>https://wp2x.com/convert-string-number-php/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Sat, 16 May 2015 05:41:16 +0000</pubDate> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[convert]]></category> <category><![CDATA[number]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=365</guid><description><![CDATA[<p>Convert a string to a number in PHP is quite simple, let me show you the problem and the solution for it. &#160; Here is what we need to do Input Output '2' 2 '2.34' 2.34 '0.3454545' 0.3454545 Now, let &#8216;s do the magic $num = "3.14"; $int = (int)$num; $float = (float)$num; For more ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/convert-string-number-php/">Convert a string to a number in PHP</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Convert a string to a number in PHP is quite simple, let me show you the problem and the solution for it.<span
id="more-365"></span></p><p>&nbsp;</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/05/number.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-366" src="http://wp2x.com/wp-content/uploads/2015/05/number.png?4b2a2c&amp;4b2a2c" alt="number" width="290" height="238" /></a></p><p>Here is what we need to do</p><pre class="lang:sh decode:true ">Input             Output
'2'               2
'2.34'            2.34
'0.3454545'       0.3454545</pre><p>Now, let &#8216;s do the magic</p><pre class="lang:default decode:true ">$num = "3.14";
$int = (int)$num;
$float = (float)$num;</pre><p>For more detail you can do like this</p><p>1. Cast the strings to numeric primitive data types:</p><pre class="lang:php decode:true ">$num = (int) "10";
$num = (double) "10.12"; // same as (float) "10.12";</pre><p>2. Perform math operations on the strings:</p><pre class="lang:php decode:true ">$num = "10" + 1;
$num = floor("10.1");</pre><p>3. Use intval() or floatval():</p><pre class="lang:php decode:true ">$num = intval("10");
$num = floatval("10.1");</pre><p>I think they are good enough for you to convert string to any number type.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/convert-string-number-php/">Convert a string to a number in PHP</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Get last character from string in PHP</title><link>https://wp2x.com/get-last-character-from-string-in-php/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Sun, 19 Apr 2015 12:53:56 +0000</pubDate> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[php programming]]></category> <category><![CDATA[php string]]></category> <category><![CDATA[php tips]]></category> <category><![CDATA[php wordpress]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress tutorial]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=361</guid><description><![CDATA[<p>Easy but not for all of us to get last character from string in PHP. It &#8216;s quite simple to figure out with a quick Google it. So if you found my article about this. Then you are in right place to solve this issuse with a simplest way. 1. Get the last char of a ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/get-last-character-from-string-in-php/">Get last character from string in PHP</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Easy but not for all of us to get last character from string in PHP. It &#8216;s quite simple to figure out with a quick Google it. So if you found my article about this. Then you are in right place to solve this issuse with a simplest way.<span
id="more-361"></span></p><h2><a
href="http://wp2x.com/wp-content/uploads/2015/04/php-string.jpeg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-362" src="http://wp2x.com/wp-content/uploads/2015/04/php-string.jpeg?4b2a2c&amp;4b2a2c" alt="php string" width="259" height="194" /></a></h2><h2>1. Get the last char of a string in PHP</h2><p>If you want to get the only one character in a string, here is simplest function to do.</p><pre class="lang:php decode:true">substr("testers", -1); // returns "s"</pre><p>So simple?</p><p>And what if you want 2 characters? Let &#8216;s do this</p><pre class="lang:default decode:true ">substr("testers", -2); // returns "rs"</pre><h2> 2. Remove the last character from string</h2><p>Just a bonus if this article, if you want to remove the last character in a string. You can do this function</p><pre class="lang:php decode:true ">substr("a,b,c,d,e,", 0, -1);</pre><p>The output is a,b,c,d,e</p><p>Hope this article help you solve the problem with string.</p><p>Thanks</p><p>The post <a
rel="nofollow" href="https://wp2x.com/get-last-character-from-string-in-php/">Get last character from string in PHP</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Install and configure wordpress multisite (WPMU)</title><link>https://wp2x.com/install-and-configure-wordpress-multisite-wpmu/</link> <comments>https://wp2x.com/install-and-configure-wordpress-multisite-wpmu/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Fri, 27 Mar 2015 02:10:05 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[wordpress install]]></category> <category><![CDATA[wordpress multisite]]></category> <category><![CDATA[wordpress setup]]></category> <category><![CDATA[wordpress site]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wpmu]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=353</guid><description><![CDATA[<p>Getting some requests from our nice customers about Install and configure wordpress multisite (WPMU), we are happy to show you how to do it in this post to make your wordpress to a WordPress Network 1. Wildcard sub-domain You will need to set up a wildcard subdomain on your account. Now let &#8216;s do these steps in ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/install-and-configure-wordpress-multisite-wpmu/">Install and configure wordpress multisite (WPMU)</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Getting some requests from our nice customers about Install and configure wordpress multisite (WPMU), we are happy to show you how to do it in this post to make your wordpress to a WordPress Network<span
id="more-353"></span></p><p><a
href="http://wp2x.com/wp-content/uploads/2015/03/Install-and-configure-wordpress-multisite.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-357" src="http://wp2x.com/wp-content/uploads/2015/03/Install-and-configure-wordpress-multisite.jpg?4b2a2c&amp;4b2a2c" alt="Install and configure wordpress multisite" width="605" height="517" srcset="https://wp2x.com/wp-content/uploads/2015/03/Install-and-configure-wordpress-multisite.jpg 605w, https://wp2x.com/wp-content/uploads/2015/03/Install-and-configure-wordpress-multisite-300x256.jpg 300w" sizes="(max-width: 605px) 100vw, 605px" /></a></p><h2>1. Wildcard sub-domain</h2><p>You will need to set up a wildcard subdomain on your account. Now let &#8216;s do these steps in your cPanel. If you don&#8217;t know what hositng you can do this. You can check our <a
title="Top 10 WordPress Hosting for the Best Performance and Security" href="http://wp2x.com/top-10-wordpress-hosting-best-performance-security/" target="_blank">top hosting list for wordpress</a></p><p>&#8211; First, log into your cPanel account and under the &#8220;Domains&#8221; section select &#8220;Subdomains&#8221;</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/03/sub1.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-354" src="http://wp2x.com/wp-content/uploads/2015/03/sub1.jpg?4b2a2c&amp;4b2a2c" alt="sub1" width="530" height="167" srcset="https://wp2x.com/wp-content/uploads/2015/03/sub1.jpg 530w, https://wp2x.com/wp-content/uploads/2015/03/sub1-300x95.jpg 300w" sizes="(max-width: 530px) 100vw, 530px" /></a></p><p>&#8211; Next, in the first open field, place a * symbol there signifying that you are creating a wildcard subdomain and click &#8220;Create&#8221;.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/03/wild1-e1427421864673.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-355" src="http://wp2x.com/wp-content/uploads/2015/03/wild1-e1427421864673.jpg?4b2a2c&amp;4b2a2c" alt="wild1" width="600" height="222" /></a></p><p>&#8211; Congratulations! You have now successfully set up your account for wildcard domains. You still may need to modify your .htaccess file. However, if you have set up wildcard subdomains for WordPress Multisite, it will automatically configure the .htaccess file for you.</p><h2>2. Enable WordPress Multisite</h2><p>Once wildcard subdomains are set up, you will need to enable multisite on your current WordPress installation. To do this go into your File Manager and edit the wp-config.php file in your file on your WordPress directory. Once you have opened the file for editing, add the following line of code:</p><pre class="lang:php decode:true">define ('WP_ALLOW_MULTISITE', true);</pre><p>Place the code one line above the code that says /* That&#8217;s all, stop editing! Happy blogging. */:. Once the code has been inserted, click on &#8220;save changes&#8221; at the top right of the page. Keep your cPanel open, we will be making more modifications in a moment.</p><h2>3. Access WordPress Networks</h2><p>Next, you will need to open your WordPress Dashboard. Under Administration, click Tools and then Networks. This is where you will be configuring your new mutlisite or network.</p><p><strong>Addresses of the Sites in your Network:</strong> Here you decide if you want to use subdomains (site1.yourdomain.com) or sub-directores (yourdomain.com/site1)</p><p><strong>Network Details:</strong> These will be filled in automatically, just make sure they&#8217;re correct.<br
/> Once you are done choosing your settings, click Install.</p><h2>4. Enable Network</h2><p>The last step, you need to enable the network. Keep your dashboard open as we will need to retrieve some information from it. Go back yo your cPanel file manager and into the WordPress directory. Then, create a blogs.dir folder in the /wp-content/ folder.</p><p>Next, you will need to reference your WordPress Dashboard. Under tools, click Network. This will show a page with custom coding that needs to be placed into your wp-config.php file. It should look something like this:</p><h2><a
href="http://wp2x.com/wp-content/uploads/2015/03/WPMU.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-356" src="http://wp2x.com/wp-content/uploads/2015/03/WPMU.jpg?4b2a2c&amp;4b2a2c" alt="WPMU" width="600" height="450" srcset="https://wp2x.com/wp-content/uploads/2015/03/WPMU.jpg 600w, https://wp2x.com/wp-content/uploads/2015/03/WPMU-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /></a></h2><p>With your cPanel file manager, edit the same <strong>wp-config.php</strong> file that you edited in step 2.</p><p>Directly above the /* That&#8217;s all, stop editing! Happy blogging. */: line, put in the two blocks of code marked with a &#8220;1&#8221; in the picture above.</p><p>Next, you will add the generated mod_rewrite rules to the .htaccess file in your WordPress folder. In the .htaccess file, add all coding marked in the picture with a &#8220;2.&#8221; Remember that your code may be different then the one in our picture.</p><p>Log out of your WordPress Dashboard and back in to make sure the changes take effect. To make any additional changes, there is now a new Network Admin sub-section in your Dashboard.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/install-and-configure-wordpress-multisite-wpmu/">Install and configure wordpress multisite (WPMU)</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/install-and-configure-wordpress-multisite-wpmu/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Extract youtube ID from youtube URL in PHP</title><link>https://wp2x.com/extract-youtube-id-from-youtube-url-in-php/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Tue, 10 Mar 2015 10:50:05 +0000</pubDate> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[php programming]]></category> <category><![CDATA[php tips]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[youtube]]></category> <category><![CDATA[youtube id]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=350</guid><description><![CDATA[<p>Today I will show you a very easy way to Extract youtube ID from youtube URL in PHP. This is very simple task what shouldn&#8217;t take time but we usually do it not official with all of situations. It &#8216;s very simple, you just need to run this wayway function getIDFromYoutubeURL($url){ $video_id = false; if (preg_match('%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/&#124;(?:v&#124;e(?:mbed)?)/&#124;.*[?&#38;]v=)&#124;youtu\.be/)([^"&#38;?/ ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/extract-youtube-id-from-youtube-url-in-php/">Extract youtube ID from youtube URL in PHP</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Today I will show you a very easy way to Extract youtube ID from youtube URL in PHP. This is very simple task what shouldn&#8217;t take time but we usually do it not official with all of situations.<span
id="more-350"></span></p><p><a
href="http://wp2x.com/wp-content/uploads/2015/03/YouTube-Content-ID.jpeg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-351" src="http://wp2x.com/wp-content/uploads/2015/03/YouTube-Content-ID.jpeg?4b2a2c&amp;4b2a2c" alt="YouTube-Content-ID" width="200" height="212" /></a></p><p>It &#8216;s very simple, you just need to run this wayway</p><pre class="lang:php decode:true">function getIDFromYoutubeURL($url){
        $video_id = false;
        if (preg_match('%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&amp;]v=)|youtu\.be/)([^"&amp;?/ ]{11})%i', $url, $match)) {
            $video_id = $match[1];
        }
        return $video_id;
    }</pre><p>Now let &#8216;s use function like this</p><pre class="lang:default decode:true ">$youtubeID = getIDFromYoutubeURL("https://www.youtube.com/watch?v=_URzW7CH8Dg");

// $youtubeID = _URzW7CH8Dg</pre><p>&nbsp;</p><p>The post <a
rel="nofollow" href="https://wp2x.com/extract-youtube-id-from-youtube-url-in-php/">Extract youtube ID from youtube URL in PHP</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>WordPress jQuery Tiles Gallery Free</title><link>https://wp2x.com/wordpress-jquery-tiles-gallery-free/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Fri, 20 Feb 2015 02:15:10 +0000</pubDate> <category><![CDATA[HTML/JavaScript/CSS]]></category> <category><![CDATA[css]]></category> <category><![CDATA[html]]></category> <category><![CDATA[html5]]></category> <category><![CDATA[javascript]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[theme]]></category> <category><![CDATA[wordpress html]]></category> <category><![CDATA[xhtml]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=346</guid><description><![CDATA[<p>jQuery Tiles Gallery is a gorgeus way to immediately present all your pictures, the visitors of your web site can see all the pictures at a glance, like no other gallery or slider can do! And now It &#8216;s free one on codecanyon this month. You can check the demo URL here http://tiles-gallery.com/ &#160; NO ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/wordpress-jquery-tiles-gallery-free/">WordPress jQuery Tiles Gallery Free</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>jQuery Tiles Gallery is a gorgeus way to immediately present all your pictures, the visitors of your web site can see all the pictures at a glance, like no other gallery or slider can do! And now It &#8216;s free one on codecanyon this month. You can check the demo URL here <a
href="http://tiles-gallery.com/" target="_blank">http://tiles-gallery.com/</a><span
id="more-346"></span></p><p>&nbsp;</p><h2><a
href="http://wp2x.com/wp-content/uploads/2015/02/artwork-tg.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-348" src="http://wp2x.com/wp-content/uploads/2015/02/artwork-tg.jpg?4b2a2c&amp;4b2a2c" alt="artwork-tg" width="590" height="300" srcset="https://wp2x.com/wp-content/uploads/2015/02/artwork-tg.jpg 590w, https://wp2x.com/wp-content/uploads/2015/02/artwork-tg-300x153.jpg 300w" sizes="(max-width: 590px) 100vw, 590px" /></a></h2><h2>NO PROGRAMMING SKILLS REQUIRED</h2><p>jQuery Tiles Gallery arranges your images inside a random-generated grid, it’s much more than a simple multiple column layout, it’s a beautiful and fancy way to present your showcases, galleries, photos… and so on. The subject of the photos will always be focused, since you can choose the better alignment for each photo.. If you don’t know where to start just copy/paste the script in the demo file bundled with the script.</p><h2>NO GRAPHIC SKILLS REQUIRED</h2><p>This script preloads and resizes images to fit them inside each “cell”, so you don’t need to make images of same size or proportions! Be just sure the weight of your photos is good for web (that could mean from few Kb up to 100Kb depending on desired quality).</p><h2>CAPTIONS</h2><p>It’s also possible to add captions simply adding them as ALT attribute of each image. The captions can be static or shown on rollover.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/02/jQuery-Tiles-Gallery.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-347" src="http://wp2x.com/wp-content/uploads/2015/02/jQuery-Tiles-Gallery.jpg?4b2a2c&amp;4b2a2c" alt="jQuery Tiles Gallery" width="400" height="375" srcset="https://wp2x.com/wp-content/uploads/2015/02/jQuery-Tiles-Gallery.jpg 400w, https://wp2x.com/wp-content/uploads/2015/02/jQuery-Tiles-Gallery-300x281.jpg 300w" sizes="(max-width: 400px) 100vw, 400px" /></a></p><p>&nbsp;</p><h2>CALLBACK</h2><p>If you know a bit of javascript you can easiliy add any further functionality to the gallery, simply passing your function as callback.</p><h2>CUSTOM ALIGNMENT, BEST FRAMING</h2><p>You can set a default horizontal and vertical alignment for all the pictures, but you can also overwrite the default alignment simply using the “data” attributes on the IMG tag.</p><p>And now it &#8216;s <strong>FREE</strong> here <div
class="freebie-sub-box"><div
class="freebie-sub-inner"><h3>Please enter your email and get it now!</h3><p>Simply enter your email address and the download link will be sent right to your email box.</p><form
class="freebie-sub-form"><div
class="replaceArea"><div
class="replaceArea-error"></div><center> <input
type="text" onblur="if(this.value=='')this.value='Email Address';" onfocus="if(this.value=='Email Address')this.value='';" value="Email Address" name="email" class="name"> <input
type="submit" value="Download" class="freebie-submit"></center> <input
type="hidden" name="id" id="id" value="aHR0cHM6Ly9hcHAuYm94LmNvbS9zL2k5ajB5MGc3amlieDU1YWV1dWtubm5zdGdhbHpsbnc5"></div></form></div></div><p>The post <a
rel="nofollow" href="https://wp2x.com/wordpress-jquery-tiles-gallery-free/">WordPress jQuery Tiles Gallery Free</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Search text in nano text editor</title><link>https://wp2x.com/search-text-nano-text-editor/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Mon, 02 Feb 2015 12:39:25 +0000</pubDate> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[nano text editor]]></category> <category><![CDATA[text editor]]></category> <category><![CDATA[wordpress tips]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=343</guid><description><![CDATA[<p>Instead using &#8220;vi&#8221; editor in linux system, we usually use nano text editor to make everything easier. But not many people know how to search text in nano text editor. In this tutorial I will show you a very simple tips. To enter the nano text editor you just need to type this line nano ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/search-text-nano-text-editor/">Search text in nano text editor</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Instead using &#8220;vi&#8221; editor in linux system, we usually use nano text editor to make everything easier. But not many people know how to search text in nano text editor. In this tutorial I will show you a very simple tips.<span
id="more-343"></span></p><p>To enter the nano text editor you just need to type this line</p><pre class="lang:default decode:true ">nano /tmp/mytext.txt</pre><p>Let &#8216;s say you are writing a lot of text and you want to find a string, then <strong>Ctrl + W</strong> is the shortcut for searching. After entering the <strong>search term</strong>, press <strong>Enter</strong>. To repeat the search, issue <strong>Alt + W</strong>. In this menu, you can select earlier searches using the arrow <strong>up/ down</strong> keys.</p><p><img
loading="lazy" class="aligncenter size-full wp-image-344" src="http://wp2x.com/wp-content/uploads/2015/02/nano-text-editor.png?4b2a2c&amp;4b2a2c" alt="nano text editor" width="507" height="341" srcset="https://wp2x.com/wp-content/uploads/2015/02/nano-text-editor.png 507w, https://wp2x.com/wp-content/uploads/2015/02/nano-text-editor-300x202.png 300w, https://wp2x.com/wp-content/uploads/2015/02/nano-text-editor-290x195.png 290w" sizes="(max-width: 507px) 100vw, 507px" /></p><p>To toggle backwards searching, you need to press <strong>Alt + B</strong> in the search dialog.</p><p>For more shortcuts, press <strong>F1</strong></p><p>Is it quite easy?</p><p>The post <a
rel="nofollow" href="https://wp2x.com/search-text-nano-text-editor/">Search text in nano text editor</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Top 5 wordpress SEO plugins 2015</title><link>https://wp2x.com/top-5-wordpress-seo-plugins-2015/</link> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Thu, 22 Jan 2015 15:18:37 +0000</pubDate> <category><![CDATA[Wordpress SEO]]></category> <category><![CDATA[security]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress tech]]></category> <category><![CDATA[wordpress tips]]></category> <category><![CDATA[wordpress webmaster]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=338</guid><description><![CDATA[<p>The SEO art change all of time from day by day. In 2015, the SEO methods need to update quickly to keep the best position on Google Search Engine. In this post, we list top 5 wordpress SEO plugin what will help us update the good way to keep your SEO methods always up to date. ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/top-5-wordpress-seo-plugins-2015/">Top 5 wordpress SEO plugins 2015</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>The SEO art change all of time from day by day. In 2015, the SEO methods need to update quickly to keep the best position on Google Search Engine. In this post, we list top 5 wordpress SEO plugin what will help us update the good way to keep your SEO methods always up to date.<span
id="more-338"></span></p><h2>1. WordPress SEO by Yoast</h2><p>This is always the first WordPress SEO plugin I suggest to anyone if they want a good wordpress plugin can help them solve all issues about SEO. And even more than that, this plugin have a very good function is SEO article estimation. It can show you if your article is good enough for not and many score and why &#8216;s that. It &#8216;s pretty useful.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/01/WordPress_SEO_by_Yoast.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-374" src="http://wp2x.com/wp-content/uploads/2015/01/WordPress_SEO_by_Yoast.png?4b2a2c&amp;4b2a2c" alt="WordPress_SEO_by_Yoast" width="591" height="245" srcset="https://wp2x.com/wp-content/uploads/2015/01/WordPress_SEO_by_Yoast.png 591w, https://wp2x.com/wp-content/uploads/2015/01/WordPress_SEO_by_Yoast-300x124.png 300w" sizes="(max-width: 591px) 100vw, 591px" /></a></p><p>&nbsp;</p><p>Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast&#8217;s WordPress SEO plugin.</p><p>Download &amp; Install: <a
href="https://wordpress.org/plugins/wordpress-seo/" target="_blank">https://wordpress.org/plugins/wordpress-seo/</a></p><h2>2. All in One SEO Pack WordPress Plugin</h2><p>All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.</p><p><a
href="http://wp2x.com/wp-content/uploads/2015/01/All_in_One_SEO_Pack.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-375" src="http://wp2x.com/wp-content/uploads/2015/01/All_in_One_SEO_Pack.png?4b2a2c&amp;4b2a2c" alt="All_in_One_SEO_Pack" width="591" height="248" srcset="https://wp2x.com/wp-content/uploads/2015/01/All_in_One_SEO_Pack.png 591w, https://wp2x.com/wp-content/uploads/2015/01/All_in_One_SEO_Pack-300x126.png 300w" sizes="(max-width: 591px) 100vw, 591px" /></a></p><p>&nbsp;</p><p>Some features you may need to know:</p><ul><li>XML Sitemap support &#8211; submit your sitemap to Google and Bing and improve your SEO</li><li>Google Analytics support</li><li>Support for SEO on Custom Post Types</li><li>Advanced Canonical URLs</li><li>Fine tune Page Navigational Links</li><li>Built-in API so other plugins/themes can access and extend functionality</li><li>ONLY plugin to provide SEO Integration for WP e-Commerce sites</li><li>Nonce Security built into All in One SEO Pack</li><li>Support for CMS-style WordPress installations</li><li>Automatically optimizes your titles for Google and other search engines</li><li>Generates META tags automatically</li><li>Avoids the typical duplicate content found on WordPress blogs</li><li>For beginners, you don&#8217;t even have to look at the options, it works out-of-the-box. Just install.</li><li>For advanced users, you can fine-tune everything to optimize your SEO</li><li>You can override any title and set any META description and any META keywords you want.</li><li>Compatibility with many other plugins</li></ul><p>Download &amp; Install: <a
href="https://wordpress.org/plugins/all-in-one-seo-pack/" target="_blank">https://wordpress.org/plugins/all-in-one-seo-pack/</a></p><h2>3. SEO Ultimate</h2><p>This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets</p><p>Download &amp; Install: <a
href="https://wordpress.org/plugins/seo-ultimate/" target="_blank">https://wordpress.org/plugins/seo-ultimate/</a></p><h2>4. SEO Wizard</h2><p>SEO Wizard is one of the most coveted WordPress plugins because of the flexibility it offers its users. The tool helps designers write better content, keep track of posts, write optimized meta titles and descriptions, and integrate social media. It&#8217;s a comprehensive plugin that&#8217;s proving its worth in the wordpress community.</p><p>Download &amp; Install: <a
href="https://wordpress.org/plugins/seo-wizard/" target="_blank">https://wordpress.org/plugins/seo-wizard/</a></p><h2>5. SEO Plugin LiveOptim</h2><p>The SEO Plugin LiveOptim optimizes your content according to Google rules and gives you access to 100% FREE and personalized advices for your site.</p><p>Download &amp; Install: <a
href="https://wordpress.org/plugins/liveoptim/" target="_blank">https://wordpress.org/plugins/liveoptim/</a></p><p>The post <a
rel="nofollow" href="https://wp2x.com/top-5-wordpress-seo-plugins-2015/">Top 5 wordpress SEO plugins 2015</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> </item> <item><title>Fast WordPress Hosting by Hostoople &#8211; Interview Nick</title><link>https://wp2x.com/fast-wordpress-hosting-hostoople-interview-nick/</link> <comments>https://wp2x.com/fast-wordpress-hosting-hostoople-interview-nick/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Tue, 30 Dec 2014 03:32:21 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Hosting]]></category> <category><![CDATA[best wordpress hosting]]></category> <category><![CDATA[cheap wordpress hosting]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[managed wordpress hosting]]></category> <category><![CDATA[wordpress hosting]]></category> <category><![CDATA[wordpress service]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=334</guid><description><![CDATA[<p>WordPress is one of the most popular CMS on the world with a big community and a big users. As you see, we have a lot of services around wordpress what help us have the best wordpress site. One of the most important service is wordpress hosting. Today, I have chance to talk with Nick from Hostoople who will ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/fast-wordpress-hosting-hostoople-interview-nick/">Fast WordPress Hosting by Hostoople &#8211; Interview Nick</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>WordPress is one of the most popular CMS on the world with a big community and a big users. As you see, we have a lot of services around wordpress what help us have the best wordpress site. One of the most important service is wordpress hosting.<span
id="more-334"></span> Today, I have chance to talk with Nick from <a
title="hostoople" href="http://www.hostoople.com/" target="_blank">Hostoople</a> who will show us how they manage to provide a Fast WordPress Hosting with a lot of good extra features.</p><p>Before doing the interview, let &#8216;s look at Hostoople hosting plans</p><p><a
href="http://www.hostoople.com/shared-hosting/" target="_blank"><img
loading="lazy" class="aligncenter wp-image-335 size-full" src="http://wp2x.com/wp-content/uploads/2014/12/shared_hosting__Cheap_Shared_Hosting_Plans-e1419909971469.png?4b2a2c&amp;4b2a2c" alt="shared_hosting__Cheap_Shared_Hosting_Plans" width="600" height="205" /></a></p><p>&nbsp;</p><p>What I can say that it &#8216;s perfect for any website with these plans since we can keep our websites in a high quality hosting but very good price.</p><p>Now, let &#8216;s talk with Nick from Hostoople to figure out what they have done to build the magic.</p><p><a
href="http://www.hostoople.com"><img
loading="lazy" class="aligncenter wp-image-336 size-full" src="http://wp2x.com/wp-content/uploads/2014/12/hoostople-logo.png?4b2a2c&amp;4b2a2c" alt="hoostople-logo" width="250" height="70" /></a></p><p><strong>Q: Hi Nick, before we get started can you tell us a little about your company and experience with wordpress hosting? Hello, Thank you for the interview . </strong></p><p>A: I have been in the hosting space for over 14 years. I have been dealing with WP from the time it came to the market. It is one of the greatest tools for anyone to use as there website platform.</p><p><strong>Q: What your company vision and how your company keep it? </strong></p><p>A: We envision to be a fast growing company offering a lot of extra add&#8217;s for free to our customers for a low rate. We enviosn by getting to the top by offering 24/7 support and true hands on customer relations.</p><p><strong>Q: If you choose one feature what people should choose you as their magento hosting provider then what is it? </strong></p><p>A: We support every CMS because the top CMS like WordPress, Joomla, Magento and more to be named of course are what we specialize in.</p><p><strong>Q: How many years Hostoople has been around? And how change year by year? </strong></p><p>A: We have been around 2 years now and we are seeing growth from word of mouth referrals . If your customers are happy they will tell everyone.</p><p><strong>Q: Who is your customer base? Are they happy so far? </strong></p><p>A: We host everything from personal to major businesses. We will host anyone , we believe we are the best.</p><p><strong>Q: If you choose one feature what your customer usually complain, what is it? Did you fix it? </strong></p><p>A: At first people couldnt understand why our pricing was cheaper then most hosts. We buy our servers in bulk, and also our racks upfront in long term leases, we pass the savings onto you. We cant fix something thats working for everyone <img
src="https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p><p>Thank you Nick! We always love to have a hosting package from you. Wish a new year 2015 will be a nice year for you with a high quality wordpress hosting.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/fast-wordpress-hosting-hostoople-interview-nick/">Fast WordPress Hosting by Hostoople &#8211; Interview Nick</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/fast-wordpress-hosting-hostoople-interview-nick/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Upgrade wordpress via command line shell</title><link>https://wp2x.com/upgrade-wordpress-via-command-line-shell/</link> <comments>https://wp2x.com/upgrade-wordpress-via-command-line-shell/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Sat, 13 Dec 2014 01:20:40 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[command line]]></category> <category><![CDATA[security]]></category> <category><![CDATA[upgrade wordpress]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress security]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=330</guid><description><![CDATA[<p>There are some reasons why we have to upgrade wordpress via command line in linux shell. Upgrade in admin panel fail because of network connection happen in upgrade process No FTP account to upgrade (if hosting require) File permission problem Security problem It &#8216;s quite easy, let &#8216;s do these steps to upgrade wordpress in ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/upgrade-wordpress-via-command-line-shell/">Upgrade wordpress via command line shell</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>There are some reasons why we have to upgrade wordpress via command line in linux shell.<span
id="more-330"></span></p><ul><li>Upgrade in admin panel fail because of network connection happen in upgrade process</li><li>No FTP account to upgrade (if hosting require)</li><li>File permission problem</li><li>Security problem</li></ul><p>It &#8216;s quite easy, let &#8216;s do these steps to upgrade wordpress in command line.</p><p>1. Login to server via SSH account</p><p>2. Download the latest version of wordpress and unzip via command line with this way</p><pre class="lang:sh decode:true">$ cd /tmp
$ wget http://wordpress.org/latest.zip
$ unzip latest.zip</pre><p>&nbsp;</p><p><a
href="http://wp2x.com/wp-content/uploads/2014/12/ssh.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-379" src="http://wp2x.com/wp-content/uploads/2014/12/ssh.jpg?4b2a2c&amp;4b2a2c" alt="ssh" width="584" height="309" srcset="https://wp2x.com/wp-content/uploads/2014/12/ssh.jpg 584w, https://wp2x.com/wp-content/uploads/2014/12/ssh-300x159.jpg 300w" sizes="(max-width: 584px) 100vw, 584px" /></a></p><p>3. Then Overwrite all new files</p><pre class="lang:sh decode:true ">$ cd /var/www/html/blog
$ cp -avr /tmp/wordpress/* .
$ rm -rf /tmp/wordpress /tmp/latest.zip</pre><p>Now login to admin panel of wordpress it will require you upgrade database, just perform the action and everything will be done.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/upgrade-wordpress-via-command-line-shell/">Upgrade wordpress via command line shell</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/upgrade-wordpress-via-command-line-shell/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>PHP function to display time ago base on timestamp</title><link>https://wp2x.com/php-function-display-time-ago-base-timestamp/</link> <comments>https://wp2x.com/php-function-display-time-ago-base-timestamp/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Wed, 03 Dec 2014 10:21:56 +0000</pubDate> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[php function]]></category> <category><![CDATA[php tips]]></category> <category><![CDATA[time ago]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=326</guid><description><![CDATA[<p>Timestamp in PHP only for system usage, for user we have to show it in easy to read way like: 1 minutes ago, 1 hour ago &#8230; Today I will show you to use PHP function to display time ago base on timestamp. Here is very simple PHP function what you can use in any PHP ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/php-function-display-time-ago-base-timestamp/">PHP function to display time ago base on timestamp</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Timestamp in PHP only for system usage, for user we have to show it in easy to read way like: 1 minutes ago, 1 hour ago &#8230; Today I will show you to use PHP function to display time ago base on timestamp.<span
id="more-326"></span></p><p><a
href="http://wp2x.com/wp-content/uploads/2014/12/php-function-time-ago.png?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-327" src="http://wp2x.com/wp-content/uploads/2014/12/php-function-time-ago.png?4b2a2c&amp;4b2a2c" alt="php function time ago" width="728" height="546" srcset="https://wp2x.com/wp-content/uploads/2014/12/php-function-time-ago.png 728w, https://wp2x.com/wp-content/uploads/2014/12/php-function-time-ago-300x225.png 300w" sizes="(max-width: 728px) 100vw, 728px" /></a>Here is very simple PHP function what you can use in any PHP project to display time.</p><pre class="lang:php decode:true ">&lt;?php
function timeAgo($time_ago){
$cur_time 	= time();
$time_elapsed 	= $cur_time - $time_ago;
$seconds 	= $time_elapsed ;
$minutes 	= round($time_elapsed / 60 );
$hours 		= round($time_elapsed / 3600);
$days 		= round($time_elapsed / 86400 );
$weeks 		= round($time_elapsed / 604800);
$months 	= round($time_elapsed / 2600640 );
$years 		= round($time_elapsed / 31207680 );
// Seconds
if($seconds &lt;= 60){
	echo "$seconds seconds ago";
}
//Minutes
else if($minutes &lt;=60){
	if($minutes==1){
		echo "one minute ago";
	}
	else{
		echo "$minutes minutes ago";
	}
}
//Hours
else if($hours &lt;=24){
	if($hours==1){
		echo "an hour ago";
	}else{
		echo "$hours hours ago";
	}
}
//Days
else if($days &lt;= 7){
	if($days==1){
		echo "yesterday";
	}else{
		echo "$days days ago";
	}
}
//Weeks
else if($weeks &lt;= 4.3){
	if($weeks==1){
		echo "a week ago";
	}else{
		echo "$weeks weeks ago";
	}
}
//Months
else if($months &lt;=12){
	if($months==1){
		echo "a month ago";
	}else{
		echo "$months months ago";
	}
}
//Years
else{
	if($years==1){
		echo "one year ago";
	}else{
		echo "$years years ago";
	}
}
}

?&gt;</pre><p>Now, time to show and use it &#8216;s quite simple like this</p><pre class="lang:php decode:true ">&lt;?php
  $curenttime="2013-07-10 09:09:09";
  $time_ago =strtotime($curenttime);
  echo timeAgo($time_ago);
?&gt;</pre><p>You will see the output like this</p><pre class="lang:default decode:true ">one year ago</pre><p>&nbsp;</p><p>&nbsp;</p><p>The post <a
rel="nofollow" href="https://wp2x.com/php-function-display-time-ago-base-timestamp/">PHP function to display time ago base on timestamp</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/php-function-display-time-ago-base-timestamp/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>