<?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 &#8211; Asalta &#8211; An End-to-End Business Automation Software</title>
	<atom:link href="https://www.asalta.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.asalta.com</link>
	<description></description>
	<lastBuildDate>Mon, 29 Oct 2018 09:09:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.6.12</generator>
	<item>
		<title>PHP Hardening &#038; Security</title>
		<link>https://www.asalta.com/2014/12/11/php-hardening-security-2/</link>
		<pubDate>Thu, 11 Dec 2014 13:08:07 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Hardening PHP]]></category>
		<category><![CDATA[intrusion detection system]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Suhosin]]></category>
		<category><![CDATA[vulnerabilities]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=137</guid>
		<description><![CDATA[<p>PHP Hardening &#038; Security Hardening Patch for PHP &#8211; The Suhosin Hardening-Patch for PHP provides low-level protections that cannot be implemented with an extension such as Zend-created vulnerabilities and PHP core vulnerabilities such as buffer overflows and format string vulnerabilities. &#8230; <a href="https://www.asalta.com/2014/12/11/php-hardening-security-2/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/12/11/php-hardening-security-2/">PHP Hardening &#038; Security</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">PHP Hardening &#038; Security</h4>
<p><b>Hardening Patch for PHP</b> &#8211; The Suhosin Hardening-Patch for PHP provides low-level protections that cannot be implemented with an extension such as Zend-created vulnerabilities and PHP core vulnerabilities such as buffer overflows and format string vulnerabilities. Consequently, the patch is PHP version-specific.</p>
<p><b>Suhosin Extension</b> &#8211; The Suhosin Extension contains the bulk of suhosin&#8217;s protection features. It&#8217;s focus is to protect from code-level vulnerabilities and hacker tricks. It is not PHP version-specific. From PHP 5.4 on words Suhosin is available as a extension and can be <a href="http://www.suhosin.org/stories/download.html" target="_blank">downloaded here</a></p>
<p>&nbsp;</p>
<h2>Hardening PHP Application</h2>
<p><span style="color: #0000ff;"><a href="http://localhost/asaltaold.com/blog/wordpress-security-tutorial/" target="_blank"><span style="color: #0000ff;">Read here to know more about security measures on php application</span></a></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>Hardening PHP from php.ini</h2>
<p>PHP&#8217;s default configuration file, php.ini (usually found in /etc/php.ini on most Linux systems) contains a host of functionality that can be used to help secure your web applications. Unfortunately many PHP users and administrators are unfamiliar with the various options that are available with php.ini and leave the file in it&#8217;s stock configuration. By utilizing a few of the security related options in the configuration file you can greatly strengthen the security posture of web applications running on your server.</p>
<h3>Safe Mode</h3>
<p><a style="color: #0088cc;" title="PHP safe mode" href="http://us2.php.net/features.safe-mode">PHP safe mode</a> is a comprehensive &#8220;attempt to solve the shared server security problem&#8221; that includes many useful features. Note that safe mode support is being removed in PHP 6. Safe mode effectively checks if functions in one file on the server that affect other files all have the same ownership. For instance, if you have a page script1.php that attempts to read the contents of a directory img/. Safe mode with check the UID of script1.php and the img/ directory. If they match then the script will be allowed access, if they don&#8217;t match then safe mode will disable access. This is an interesting security mechanism that allows you to restrict access by scripts outside of the normal application installation directory. Safe mode may cause problems though when the web server ends up owning files (for instance when a new file is uploaded or created by an application it is usually owned by &#8216;apache&#8217; or a similar web server account).</p>
<p>Safe mode will also restrict executables that may be run by scripts in the same way it restricts file and directory access. Safe mode can also be configured so that only executables in a certain directory can be run. This can help limit exposure of shell commands to certain scripts.</p>
<p>To enable safe mode, alter (or add) the safe mode directive in the php.ini to:</p>
<p>&nbsp;</p>
<pre>safe_mode = On
</pre>
<p>&nbsp;</p>
<p>In some cases you&#8217;ll want to use a group to check ownership (for instance in the case that you have multiple people deploying web application scripts). To have safe mode check group permissions use:</p>
<p>&nbsp;</p>
<pre>safe_mode_gid = On
</pre>
<p>&nbsp;</p>
<p>If you want to limit directories that can contain included files or executables use the following php.ini directives respectively:</p>
<p>&nbsp;</p>
<pre>safe_mode_include_dir = /path/to/dir
safe_mode_exec_dir = /path/to/exec/dir
</pre>
<p>&nbsp;</p>
<p>Safe mode has several other useful features that are worth looking into. Browse the documentation at the PHP website and see if safe mode is right for your environment.</p>
<h3>Restricting Includes</h3>
<p>Using the open_basedir directive in PHP makes a lot of sense given most file include vulnerability vectors. This directive limits all PHP file operations to the listed directory and below. It is common for attackers to search for ways to include local files in PHP scripts to expose local filesystem files through the web server. For instance, if an attacker found a file inclusion vulnerability they might try to include the /etc/passwd file to enumerate all the user accounts on the system. With the open_basedir directive PHP can restrict file inclusion to the web root, for instance /var/www. Once set files outside that directory cannot be included in scripts, and thus the aforementioned attack would fail. To enable the open_basedir directive update your php.ini file to include:</p>
<p>&nbsp;</p>
<pre>open_basedir = /path/to/web/root
</pre>
<p>&nbsp;</p>
<h3>Disabling Functionality</h3>
<p>There are certain functions in PHP that you probably don&#8217;t want your developers to use because of the danger they pose. Even if you know your users aren&#8217;t utilizing certain functions it is wise to completely disable them so an attacker can&#8217;t use them. This security precaution is especially effective at stopping an attacker who has somehow managed to upload a PHP script, write one to the filesystem, or even include a remote PHP file. By disabling functionality you ensure that you can limit the effectiveness of these types of attacks. It should be noted that it is virtually impossible to do something like preventing an attacker from executing a command at a shell by disabling functions, but it can certainly stop an attacker who isn&#8217;t a skillful PHP programmer.</p>
<p>By disabling functions like shell_exec() and system() you can prevent users and attackers from utilizing these functions. It is important to restrict functionality for developers because use of these command opens the potential for a remote code execution vulnerability if not utilized with great care. There are certainly cases for operations such as executing a command at a shell, but PHP provides a drove of functions that are essentially the same. Developers can standardize on one such function and the rest can be disabled to help prevent attacks. While this isn&#8217;t a foolproof solution it will probably prevent attacks like the dreaded c99 shell. To enable the disable_functions directive simply add it to your php.ini with a comma separated list of functions you want to restrict. For instance:<br />
disable_functions = php_uname, getmyuid, getmypid, passthru, leak, listen, diskfreespace, tmpfile, link, ignore_user_abord, shell_exec, dl, set_time_limit, exec, system, highlight_file, source, show_source, fpaththru, virtual, posix_ctermid, posix_getcwd, posix_getegid, posix_geteuid, posix_getgid, posix_getgrgid, posix_getgrnam, posix_getgroups, posix_getlogin, posix_getpgid, posix_getpgrp, posix_getpid, posix, _getppid, posix_getpwnam, posix_getpwuid, posix_getrlimit, posix_getsid, posix_getuid, posix_isatty, posix_kill, posix_mkfifo, posix_setegid, posix_seteuid, posix_setgid, posix_setpgid, posix_setsid, posix_setuid, posix_times, posix_ttyname, posix_uname, proc_open, proc_close, proc_get_status, proc_nice, proc_terminate, phpinfo</p>
<p>&nbsp;</p>
<h3>Preventing Information Disclosure</h3>
<p>Attackers will often use information that your web server exposes in order to gain information about the server configuration, application layout, and components. Error messages are some of the most common paths to information disclosure, often leaking information such as application installation path, database connectivity, data model details such as table and column names, and script details such as variables. While this debugging information is invaluable to developers it is useless to end users and dangerous to expose to attackers. PHP debugging output should be disabled in the php.ini using:</p>
<p>&nbsp;</p>
<pre>display_errors = Off
</pre>
<p>&nbsp;</p>
<p>This prevents PHP from showing run time errors in pages served to users. PHP will continue to log the errors as normal, however, so they can be reviewed by developers. Be wary of developer tactics to end run PHP errors, however, as disabling this functionality does not prevent information disclosure. Some developers may use custom debugging output nested in HTML comments, third party tools like <a style="color: #0088cc;" title="FirePHP - Firebugs style debugging with PHP and AJAX" href="http://www.firephp.org/">FirePHP</a>, or writing PHP error logs to local directories using .htaccess files and the error_log directive. However, by preventing the display of errors by default you reduce the possibility of exposing information to attackers.</p>
<h3>Disable Globals</h3>
<p>Global variables are a horrible hold over from the PHP 3 days. In most distributions register global variables is set to off (and thankfully it won&#8217;t be supported in future versions of PHP). However, you should ensure that the directive is properly in place. You should find the following in your php.ini file:</p>
<p>&nbsp;</p>
<pre>register_globals = Off
</pre>
<p>&nbsp;</p>
<p>Register globals allows various HTTP variables to be used without specifying their source. For instance, if a developer wants to use a URL variable named &#8216;id&#8217;, for instance from the URL request index.php?id=4, with globals they can simply use $id rather than $_GET[&#8216;id&#8217;]. This is a great convenience but it can cause collisions. For instance, if a form post uses a variable called &#8216;id&#8217; and there is a variable $id defined in a script and a user alters the URL of the script to include an &#8216;id=&#8217; in the URL which variable has precedence? Even more damaging is the ability of attackers to override configuration variables such as DOCUMENT_ROOT from the URL. This can cause no end of problems, especially if attackers are able to call scripts that are normally included in other scripts and expect predefined variables, which could be overwritten via GET variables by an attacker.</p>
<p>Many legacy applications may require globally registered variables. If this is the case at least limit the configuration to specific application directories rather than throughout your PHP installation. You can do this using PHP directives in .htaccess files included in specific directories. Ensure that register_globals is set to Off, however, in your php.ini configuration!</p>
<h3>Disable Remote File Includes</h3>
<p>Attackers will often attempt to identify file inclusion vulnerabilities in applications then use them to include malicious PHP scripts that they write. Even if an attacker doesn&#8217;t have write access to the web application directories if remote file inclusion is enabled the attacker can host malicious PHP scripts on other servers and the web application will fetch them and execute them locally! This can have devastating consequences. To restrict remote file execution be sure the following appears in your php.ini file:</p>
<p>&nbsp;</p>
<pre>allow_url_fopen = Off
allow_url_include = Off
</pre>
<p>&nbsp;</p>
<p>This prevents remote scripts from being included and executed by scripts on your system.</p>
<h3>Restrict File Uploads</h3>
<p>If you&#8217;re not utilizing file upload functionality in any of your PHP scripts then it&#8217;s a good idea to turn it off. Attackers will attempt to (mis)use file uploads to quickly inject malicious scripts into your web applications. By disabling file uploads altogether this makes moving scripts onto your web server more difficult. To disable file uploads change the file_uploads directive in your php.ini to read:</p>
<p>&nbsp;</p>
<pre>file_uploads = Off
</pre>
<p>&nbsp;</p>
<p>Even if you do allow file uploads you should change the default temporary directory used for file uploads. This can be done by changing the upload_tmp_dir directive. You may also want to restrict the size of files that can be uploaded. This is usually more of a system administration alteration than a security fix, but it can be useful. Use the upload_max_filesize directive for this purpose. To restrict upload directories and file sizes change your php.ini so that it reads:</p>
<p>&nbsp;</p>
<pre>upload_tmp_dir = /var/php_tmp
upload_max_filezize = 2M
</pre>
<p>&nbsp;</p>
<h3>Protect Sessions</h3>
<p>Session stealing is a popular attack that allows a malicious user to hijack the session of a legitimate user. Using session hijacking an attacker can bypass authorization and access portions of web applications without authorization. PHP uses strong (meaning long pseudo randomly generated) session identifiers so that guessing a session id is extremely difficult. When logging into a PHP application you can view your cookies and likely identify a cookie with an name like &#8216;phpsessid&#8217; and a value similar to &#8216;bbbca6bb7a23bdc8de3baef2b506e654&#8217;. The cookie is composed of 32 hexadecimal characters, making it extremely hard to predict. The flaw in this system, however, is that these session identifiers are written to the filesystem when they&#8217;re created so PHP can keep track of them. Changing the default location of these session identifiers will confound some attempts to read them. To change the location where session information is written alter the session.save_path in the php.ini configuration so that it points to your desired location like so:</p>
<p>&nbsp;</p>
<pre>session.save_path = /var/lib/php
</pre>
<p>&nbsp;</p>
<p>Make sure that the web server can read and write to the location you specify, however, or sessions won&#8217;t work. You may also wish to set PHP so that it writes cookies in such a way that they are inaccessible to JavaScript. If you don&#8217;t have any PHP applications that utilize JavaScript to manipulate cookies this is a great idea. Attackers will often exploit Cross Site Scripting (XSS) flaws in web applications to inject JavaScript into pages, which could be used to steal session cookies. By setting the php.ini directive:</p>
<p>&nbsp;</p>
<pre>session.cookie_httponly = 1
</pre>
<p>&nbsp;</p>
<p>you restrict JavaScript from accessing your cookies. Another small security feature is allowing PHP to check HTTP referer values so that session information is only passed internally while a user is viewing an application. This prevents users from accidentally publishing session information in a way that would allow external users to follow links and steal a session. This is especially useful if session information is being passed in a URL that could accidentally be published to a mailing list or web site. To enable this functionality use the following in your php.ini:</p>
<p>&nbsp;</p>
<pre>session.referer_check = your_url.tld
</pre>
<p>&nbsp;</p>
<p>For more information about session security see <a style="color: #0088cc;" title="PHP session security on Zend.com" href="http://devzone.zend.com/manual/ref.session.html">http://devzone.zend.com/manual/ref.session.html</a>.</p>
<p>&nbsp;</p>
<h3>Conclusions</h3>
<p>Implementing these security features within your PHP configuration isn&#8217;t a recipe for complete security, but it does increase the overall security posture of your web applications. By combining these measures with others, such as <strong><a style="color: #0088cc;" title="Suhosin - Hardened PHP" href="http://www.hardened-php.net/suhosin/">Suhosin</a> </strong>and an <strong>intrusion detection system</strong> like <a style="color: #0088cc;" title="OSSEC host based intrusion detection" href="http://www.ossec.net/">OSSEC</a> you incrementally increase the security of your server and web applications. You must be careful to implement configurations that restrict functionality that could be used to the detriment of your installation but not to restrict developers. Frustrating developers is a sure fire recipe for home grown solutions to end run your restrictions and invariably these solutions weaken the overall security of your server and often introduce vulnerabilities. Take care to harden your servers as much as possible, but don&#8217;t become over zealous. Beginning the process of server hardening with your php.ini configuration is a great step as it affects all the PHP web applications installed on the server and can be applied incrementally. Remember to restart your web server after making changes to the php.ini file so that those changes are put into effect.</p>
<p>&nbsp;</p>
<p>Source: http://www.madirish.net/199</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/12/11/php-hardening-security-2/">PHP Hardening &#038; Security</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
		<item>
		<title>WordPress Security Tutorial</title>
		<link>https://www.asalta.com/2014/12/11/wordpress-security-tutorial/</link>
		<pubDate>Thu, 11 Dec 2014 13:05:26 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Online security tips]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=135</guid>
		<description><![CDATA[<p>WordPress Security Tutorial I have been revisiting the various security settings of my WordPress blog after the sudden database table corruption of this blog for unknown reason last week. In this post I have highlighted some of the security tips &#8230; <a href="https://www.asalta.com/2014/12/11/wordpress-security-tutorial/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/12/11/wordpress-security-tutorial/">WordPress Security Tutorial</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">WordPress Security Tutorial</h4>
<p>I have been revisiting the various security settings of my WordPress blog after the sudden database table corruption of this blog for <strong>unknown</strong> reason last week. In this post I have highlighted some of the security tips that can help protect your blog from possible outside attacks.</p>
<p><img class="alignnone size-full wp-image-998" title="blog_security_128_2" src="https://www.tipsandtricks-hq.com/wp-content/uploads/2009/03/blog_security_128_2.jpg" alt="blog_security_128_2" width="128" height="129" /></p>
<div class="custom_yellow_box" style="color: #3f2502;">
<p>&nbsp;</p>
<h2 class="heading h3" style="font-weight: 400; color: #666666;"><span style="color: rgb(0, 0, 128);"><strong>Protect your WordPress Admin Area</strong></span></h2>
<p style="color: #666666;">It is important to restrict the access to your WordPress admin area only to people that actually need access to it. If your site does not support registration or front-end content creation, your visitors should not be able to access your <strong>/wp-admin/</strong> folder or the <strong>wp-login.php</strong> file. The best you can do is to get our home IP address (you can use a site like <a style="color: #4290c5;" href="http://www.whatismyip.com/" target="_blank">whatismyip.com</a> for that) and add these lines to the <em>.htaccess</em> file in your WordPress admin folder replacing <em>xx.xxx.xxx.xxx</em> with your IP address.</p>
<pre style="color: #666666;">&lt;Files wp-login.php&gt;
order deny,allow
Deny from all
Allow from xx.xxx.xxx.xxx
&lt;/Files&gt;</pre>
<p style="color: #666666;">In case you want to allow access to multiple computers (like your office, home PC, laptop, etc.), simply add another <em>Allow from xx.xxx.xxx.xxx</em> statement on a new line.</p>
<p style="color: #666666;">If you want to be able to access your admin area from any IP address (for example, if you often rely on free Wi-Fi networks) restricting your admin area to a single IP address or to few IPs can be inconvenient. In such cases we recommend that you limit the number of incorrect login attempt to your site. This way you will protect your WordPress site from brute-force attacks and people trying to guess your password. For such purposes, you can use a nice little plugin called <a style="color: #4290c5;" href="http://wordpress.org/plugins/limit-login-attempts/" target="_blank">Limit login attempts</a>.</p>
<p><a style="color: #4290c5;" name="username"></a></p>
<h2 class="heading h3" style="font-weight: 400; color: #666666;"><span style="color: rgb(0, 0, 128);"><strong>Don&#8217;t use the &#8220;admin&#8221; username</strong></span></h2>
<p style="color: #666666;">Most of the attackers will assume that your admin username is &#8220;admin&#8221;. You can easily block a lot of brute-force and other attacks simply by naming your admin username differently. If you&#8217;re installing a new WordPress site, you will be asked for username during the <a style="color: #4290c5;" href="http://www.siteground.com/tutorials/wordpress/wordpress-installation.htm" target="_blank">WordPress installation</a> process. If you already have a WordPress site, you can follow the instructions in our tutorial on <a style="color: #4290c5;" href="http://www.siteground.com/tutorials/wordpress/change-wordpress-username.htm" target="_blank">how to change your WordPress username</a>.</p>
<p><a style="color: #4290c5;" name="password"></a></p>
<h2 class="heading h3" style="font-weight: 400; color: #666666;"><span style="color: rgb(0, 0, 128);"><strong>Use strong passwords</strong></span></h2>
<p style="color: #666666;">You will be surprised to know that there are thousands of people that use phrases like &#8220;password&#8221; or &#8220;123456&#8221; for their admin login details. Needles to say, such passwords can be easily guessed and they are on the top of the list of any dictionary attack. A good tip is to use an entire sentence that makes sense to you and you can remember easily. Such passwords are much, much better than single phrase ones.</p>
<p><a style="color: #4290c5;" name="twofactor"></a></p>
<h2 class="heading h3" style="font-weight: 400; color: #666666;"><span style="color: rgb(0, 0, 128);"><strong>Consider two-factor authentication</strong></span></h2>
<p style="color: #666666;">Enabling two-factor authentication for your WordPress website will significantly improve the security of your website. One of the easiest ways to do this is to use<strong><span style="color: #0000ff;"> <a href="https://www.google.com/landing/2step/" target="_blank"><span style="color: #0000ff;">Google 2 factor  authentication</span></a></span></strong> or  Clef to authenticate using your mobile phone. For all SiteGround users, Clef authors have created an ad-free version of their plugin. Check out our <a style="color: #4290c5;" href="http://www.siteground.com/tutorials/wordpress/clef.htm" target="_blank">Clef tutorial</a> for more information on that matter.</p>
<p><a style="color: #4290c5;" name="hosting"></a></p>
<h2 class="heading h3" style="font-weight: 400; color: #666666;"><span style="color: rgb(0, 0, 128);"><strong>Make sure you&#8217;re site is on a secured WordPress hosting</strong></span></h2>
<p style="color: #666666;">Your WordPress site is as secured as your hosting account. If someone can exploit a vulnerability in an old PHP version for example or other service on your hosting platform it won&#8217;t matter that you have the latest WordPress version. This is why it is important to be hosted with a company that has security as a priority. Some of the features that you should look for are:</p>
<ul style="color: #666666;">
<li>Support for the latest PHP and MySQL versions</li>
<li>Account isolation</li>
<li>Web Application Firewall</li>
<li>Intrusion detecting system</li>
</ul>
<p><a style="color: #4290c5;" name="computer"></a></p>
<h2 class="heading h3" style="font-weight: 400; color: #666666;"><span style="color: rgb(0, 0, 128);"><strong>Ensure your computer is free of viruses and malware</strong></span></h2>
<p style="color: #666666;">If your computer is infected with virus or a malware software, a potential attacker can gain access yo your login details and make a valid login to your site bypassing all the measures you&#8217;ve taken before. This is why it is very important do have an up-to-date antivirus program and keep the overall security of all computers you use to access your WordPress site on a high level.</p>
<p style="color: #666666;">
</div>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);"><strong>Use Strong Passwords for all Entry Points</strong></span></h2>
<p>I was surprised to find out how many of my friends use the WordPress admin password generated by WordPress during install time and thinks that their blog is protected from attacks as they are using a strong password! The WordPress admin password generated during install time is normally pretty strong (consists lowercase and uppercase letters with numbers and symbols) so there is nothing wrong with that. I was mainly shocked to find out that their ftp/cPanel password for that domain is not that strong. It gets even better… one of them were using his partners name as the password (Did I mention that his partner’s name was mentioned on his blog’s ‘About’ page?)! The ftp/cPanel password for your domain is equally important. If someone can access your cPanel then that person can delete your WordPress database from the cPanel-&gt;Databases-&gt;MySQL Databases. Anyway, the bottom line is to use strong passwords for all entry points not just one.</p>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);">Add a CAPTCHA on your WordPress Login page</span></h2>
<p>Adding a simple captcha to your WordPress login page is another great way to minimize the chance of a bot/script gaining access to your site via a brute force attack. Its recommended to add <strong><span style="color: #000080;"><a href="https://www.google.com/recaptcha/intro/index.html" target="_blank"><span style="color: #000080;">Googles Recaptcha</span></a></span></strong> for WP <a href="https://www.google.com/recaptcha/intro/index.html" target="_blank">https://www.google.com/recaptcha/intro/index.html</a></p>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);">Protect the ‘wp-admin’ Directory</span></h2>
<p>Use a .htaccess file in the ‘wp-admin’ directory to limit access to only certain IP addresses (your home, work etc). The <a style="color: #16a6b6;" href="https://www.tipsandtricks-hq.com/cool-wordpress-htaccess-tips-to-boost-your-wordpress-sites-security-1676">WordPress htaccess</a> tips post has more htaccess related tips and tricks. Below is an example .htaccess file that can be used for this purpose (replace ‘x’ and ‘y’ with your IP address)</p>
<p>AuthUserFile /dev/null<br />
AuthGroupFile /dev/null<br />
AuthName “Access Control”<br />
AuthType Basic<br />
order deny,allow<br />
deny from all<br />
# whitelist home IP address<br />
allow from xxx.xxx.xxx.xxx<br />
# whitelist work IP address<br />
allow from yy.yyy.yyy.yyy</p>
<p>If you don’t have static IP addresses then the above method can be a bit hard to implement. In that case you could the use of <a style="color: #16a6b6;" href="https://wordpress.org/extend/plugins/askapache-password-protect/" rel="nofollow">AskApache Password Protect</a>WordPress plugin. The ‘AskApache Password Protect’ plugin adds good password protection to your WordPress Blog. Use the Login Lockdown feature of the all in one <a style="color: #16a6b6;" href="https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin" target="_blank">WP Security Plugin</a> to protect your blog against brute force attack (a brute force attack is a method of defeating a cryptographic scheme by systematically trying a large number of possibilities)</p>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);">Deny access to your Plugins and other directories</span></h2>
<p>A lot of bloggers don’t protect access to their WordPress plugins directory. What I mean by this is that if you go to the www.your-domain.com/wp-content/plugins/ from a browser it shows all the plugins that you are using. Many wordpress plugins can have vulnerabilities which the attacker can use to harm your blog. So, its a good idea to block access to these directories. You can use a .htaccess file or just upload a blank ‘index.html’ file to that directory to block access to these directories. (download a blank <a style="color: #16a6b6;" href="https://www.tipsandtricks-hq.com/wp-content/plugins/index.html" rel="nofollow">index.html</a>)</p>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);">Update WordPress to the Latest Release</span></h2>
<p>As new WrodPress versions are released the security bugs for previous release becomes public information. WordPress could have vulnerabilities as a result of how the program is written that allow an attacker to pass HTTP arguments, bad URI strings, form input, etc, that could cause Bad Things to happen. So always upate your WordPress to the latest version to make sure that you are protected against any known security bugs.</p>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);">Don’t Show WordPress Version on Your Blog</span></h2>
<p>You should not make the WordPress version that you are using visible to others for the same reason explained above. The specific WordPress version that you are using can give the attacker an upper hand in finding a way to break in.</p>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);">Backup Your Data</span></h2>
<p>I can’t stress this enough… always keep backups of all the important files. I always backup my WordPress Database and WordPress files in case of emergency. Read my <a style="color: #16a6b6;" href="https://www.tipsandtricks-hq.com/what-would-you-do-if-somehow-you-lost-your-blog-content-today-958">what would you do if you lost all your blog’s content</a> article to find out how backups can help you sleep better at night <img class="wp-smiley" src="https://www.tipsandtricks-hq.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<h2 style="color: #0f548b;"><span style="color: rgb(0, 0, 128);">Be careful when you upload something to your site</span></h2>
<p>When you upload a script (example: a plugin, a theme or just a normal script) to your site you need to be extra careful as it can harm your site if it was designed to do so. Only upload authentic content to your site. <strong>Never </strong>download a plugin or a theme from a warez or torrent or file sharing sites. The content on these sites can be disguised as a plugin or a theme but it will harm your site when uploaded to your server. You can read more on these types of attack from the <a style="color: #16a6b6;" href="https://www.tipsandtricks-hq.com/free-premium-plugin-and-theme-downloaders-beware-3035">free premium plugin and theme downloaders beware</a> article.</p>
<p>&nbsp;</p>
<h1 class="entry-title"><span style="color: rgb(0, 0, 128);">Advanced WordPress Security Tips</span></h1>
<div class="post-info" style="color: #666666;">In general WordPress is pretty secure as long as you apply common sense and follow standard security practices. The tips mentioned in this article are for added security (you don’t need to apply them all).</div>
<div class="entry-content">
<p>However, if you are in the mood for some advanced tweaking then the following security tips should come in handy <img class="wp-smiley" src="https://www.tipsandtricks-hq.com/wp-includes/images/smilies/icon_wink.gif" alt=";)" /></p>
<h3><span style="color: rgb(0, 0, 128);">NOTE and DISCLAIMER</span></h3>
<p>Most of these techniques require you to understand what you are doing.</p>
<p>It is strongly recommended that you first test these techniques on a test or development site before applying them to your live site. Doing some of the tips suggested here can break your site if not performed correctly.</p>
<p>We take no responsibility for any mishaps as a result of your efforts in applying the techniques discussed in this article.</p>
<p>Also note that these techniques assume that your WordPress installation is running Apache and you have <strong>mod_alias</strong> and <strong>mod_rewrite</strong> installed.</p>
<h2><span style="color: rgb(0, 0, 128);">1. Disable HTTP Trace Method</span></h2>
<p>There is a security attack technique called <strong>Cross Site Tracing (XST)</strong> which can be used together with another attack mechanism called Cross Site Scripting (XSS) which exploits systems which have HTTP TRACE functionality. HTTP TRACE is a default functional feature on most webservers and is used for things like debugging. Hackers who use XST will usually steal cookie and other sensitive server information via header requests.</p>
<p>You can disable the trace functionality either via your Apache configuration file or by putting the following in your .htaccess file:<br />
<code><br />
RewriteEngine On<br />
RewriteCond %{REQUEST_METHOD} ^TRACE<br />
RewriteRule .* - [F]<br />
</code></p>
<h2><span style="color: rgb(0, 0, 128);">2. Remove header outputs from your WordPress installation</span></h2>
<p>WordPress can often add quite a lot of output in your header pertaining to various services. The following code shows how you can remove a lot of this output.</p>
<p><strong>Warning</strong><strong>:</strong> <strong>This can break some functionality if you are not careful. Eg, if you’re using RSS feeds then you may want to comment that line out.</strong></p>
<p>Add the following code to your theme’s functions.php file:<br />
<code><br />
remove_action('wp_head', 'index_rel_link');<br />
remove_action('wp_head', 'feed_links', 2);<br />
remove_action('wp_head', 'feed_links_extra', 3);<br />
remove_action('wp_head', 'rsd_link');<br />
remove_action('wp_head', 'wlwmanifest_link');<br />
remove_action('wp_head', 'parent_post_rel_link', 10, 0);<br />
remove_action('wp_head', 'start_post_rel_link', 10, 0);<br />
remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);<br />
remove_action('wp_head', 'wp_generator');<br />
remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);<br />
remove_action('wp_head', 'noindex', 1);<br />
</code></p>
<h2><span style="color: rgb(0, 0, 128);">3. Deny comment posting via proxy server</span></h2>
<p>You can reduce spam and general proxy requests by attempting to prevent comments which are posted via a proxy server. Use the code below (compliments of perishablepress.com) in your .htaccess file:<br />
<code><br />
RewriteCond %{REQUEST_METHOD} =POST<br />
RewriteCond %{HTTP:VIA}%{HTTP:FORWARDED}%{HTTP:USERAGENT_VIA}%{HTTP:X_FORWARDED_FOR}%{HTTP:PROXY_CONNECTION} !^$ [OR]<br />
RewriteCond %{HTTP:XPROXY_CONNECTION}%{HTTP:HTTP_PC_REMOTE_ADDR}%{HTTP:HTTP_CLIENT_IP} !^$<br />
RewriteCond %{REQUEST_URI} !^/(wp-login.php|wp-admin/|wp-content/plugins/|wp-includes/).* [NC]<br />
RewriteRule .* - [F,NS,L]<br />
</code></p>
<h2><span style="color: rgb(0, 0, 128);">4. Change your default WordPress DB prefix</span></h2>
<p>You may already be aware that WP uses a default prefix value of “wp_” for the DB tables. This can in turn be used by malicious bots and hackers to guess your DB table names.</p>
<p>In general, changing your WP DB prefix value is much easier to do at installation time because you can set it in your wp-config.php file.</p>
<p>Conversely if you already have a live WP site and you wish to change your DB prefix, then the procedure is a little more complicated.</p>
<p>A basic guide for changing the DB prefix after an install for those who are curious is briefly outlined below:</p>
<p>1) Do a full DB backup and save the backup somewhere offboard. Using something like BackupBuddy can useful.<br />
2) Do a complete dump of your WP DB using PHPMyAdmin into a text file and save 2 copies – one for editing and the other as an original just in case.<br />
3) Using a good code editor, replace all instances of “wp_” with your own prefix.<br />
4) From your WP admin panel, deactivate all plugins<br />
5) Using PHPMyAdmin, drop your old DB and import your new one using the file you edited in step 3.<br />
6) Edit your wp-config.php file with the new DB prefix value.<br />
7) Re-activate your WP plugins<br />
8) Perform another save on your permalink settings by going to Settings-&gt;Permalinks in order to refresh your permalink structure.</p>
<p><strong>Caution</strong>:</p>
<p>Sometimes plugins add their own prefix after the wordpress prefix where both are identical.</p>
<p>example, you might have a table name from a certain plugin has a name like the following: wp_wp_abc_table_name.</p>
<p>Be sure when replacing the “wp_” instances in step 2 above that you only replace the first “wp_” prefix and not the one following it.<br />
For instance if we take the example we just mentioned we would replace the first prefix with our new prefix which for this example might be called “trx_”.</p>
<p>The new name would look like:</p>
<p><strong>trx_</strong>wp_abc_tablename</p>
<p>Note that there are also WP plugins out there which can achieve the above steps for those who are not prepared to get their hands dirty.</p>
<h2><span style="color: rgb(0, 0, 128);">5. Deny Potentially Dangerous Query Strings</span></h2>
<p>You can put the following code in your .htacces file to help prevent XSS attacks.</p>
<p><strong>BEWARE</strong><strong>: Functionality of some plugins or themes could break if you are not careful to exclude strings which are used by them.</strong><br />
<code><br />
# QUERY STRING EXPLOITS<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteCond %{QUERY_STRING} ../   [NC,OR]<br />
RewriteCond %{QUERY_STRING} boot.ini [NC,OR]<br />
RewriteCond %{QUERY_STRING} tag= [NC,OR]<br />
RewriteCond %{QUERY_STRING} ftp: [NC,OR]<br />
RewriteCond %{QUERY_STRING} http: [NC,OR]<br />
RewriteCond %{QUERY_STRING} https:   [NC,OR]<br />
RewriteCond %{QUERY_STRING} mosConfig [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*([|]|(|)|&lt;|&gt;|'|"|;|?|*).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(%22|%27|%3C|%3E|%5C|%7B|%7C).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(%0|%A|%B|%C|%D|%E|%F|127.0).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(globals|encode|config|localhost|loopback).* [NC,OR]<br />
RewriteCond %{QUERY_STRING} ^.*(request|select|insert|union|declare|drop).* [NC]<br />
RewriteRule ^(.*)$ - [F,L]<br />
&lt;/IfModule&gt;<br />
</code></p>
<h2><span style="color: rgb(0, 0, 128);">6. Apply PHP hardening to your system</span></h2>
<p>You can install and enable <strong>Suhosin </strong>which is a PHP hardening system on your server. This can further increase the security of your system by protecting against various vulnerabilities.</p>
<p>Suhosin typically installs on most PHP installations and is sometimes included by webhosting companies by default. (Check with your hosting provider)</p>
<p>If you can read more about Suhosin <a style="color: #16a6b6;" href="http://www.hardened-php.net/suhosin/index.html" target="_blank">here</a>.</p>
<p>&nbsp;</p>
<p>Further reading:<a href="%20http://codex.wordpress.org/Hardening_WordPress"> http://codex.wordpress.org/Hardening_WordPress</a></p>
<p>&nbsp;</p>
<p>Source:</p>
<div class="entry-content-asset">
<blockquote data-secret="6MneEC2xyP" class="wp-embedded-content"><a href="https://www.tipsandtricks-hq.com/advanced-wordpress-security-tips-4659">Advanced WordPress Security Tips</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" src="https://www.tipsandtricks-hq.com/advanced-wordpress-security-tips-4659/embed#?secret=6MneEC2xyP" data-secret="6MneEC2xyP" width="600" height="338" title="&#8220;Advanced WordPress Security Tips&#8221; &#8212; Tips and Tricks HQ" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></div>
<div class="entry-content-asset">
<blockquote data-secret="DRZL1bOGGz" class="wp-embedded-content"><a href="https://www.tipsandtricks-hq.com/essential-wordpress-security-tips-is-your-blog-protected-987">Essential WordPress Security Tips &#8211; Is Your Blog Protected?</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" src="https://www.tipsandtricks-hq.com/essential-wordpress-security-tips-is-your-blog-protected-987/embed#?secret=DRZL1bOGGz" data-secret="DRZL1bOGGz" width="600" height="338" title="&#8220;Essential WordPress Security Tips &#8211; Is Your Blog Protected?&#8221; &#8212; Tips and Tricks HQ" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></div>
<p>&nbsp;</p>
</div>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/12/11/wordpress-security-tutorial/">WordPress Security Tutorial</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
		<item>
		<title>9 Common iPhone 6 Plus Problems &#038; How to Fix Them</title>
		<link>https://www.asalta.com/2014/10/24/9-common-iphone-6-plus-problems-how-to-fix-them/</link>
		<pubDate>Fri, 24 Oct 2014 13:03:53 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone 6]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=133</guid>
		<description><![CDATA[<p>9 Common iPhone 6 Plus Problems &#038; How to Fix Them The iPhone 6 Plus release delivered a large new iPhone to users, but a number of common iPhone 6 Plus problems frustrate users. The iOS 8.1 release fixes some &#8230; <a href="https://www.asalta.com/2014/10/24/9-common-iphone-6-plus-problems-how-to-fix-them/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/10/24/9-common-iphone-6-plus-problems-how-to-fix-them/">9 Common iPhone 6 Plus Problems &#038; How to Fix Them</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">9 Common iPhone 6 Plus Problems &#038; How to Fix Them</h4>
<div class="content-sidebar-wrap" style="color: #222222;" data-page-url="http://www.gottabemobile.com/2014/10/22/iphone-6-plus-problems-fixes/" data-page-title="9 Common iPhone 6 Plus Problems &amp; How to Fix Them">
<article class="post-272598 post type-post status-publish format-standard has-post-thumbnail category-apple category-ios category-iphone-apple category-iphone-6-plus category-mobile tag-apple tag-ios-8 tag-ios-8-1 tag-iphone tag-iphone-6-plus tag-iphone-6-plus-problems entry">
<div class="entry-content">
<p>The <a style="color: #469bd1;" href="http://www.gottabemobile.com/iphone-6/">iPhone 6 Plus</a> release delivered a large new iPhone to users, but a number of common iPhone 6 Plus problems frustrate users. The iOS 8.1 release fixes some of these problems, while others remain even after updating from <a style="color: #469bd1;" href="http://www.gottabemobile.com/ios-8">iOS 8</a> and <a style="color: #469bd1;" href="http://www.gottabemobile.com/2014/09/26/ios-8-0-2-on-iphone-6-impressions-and-performance/">iOS 8.0.2</a>. Here, we take a look at the most common iPhone 6 Plus problems and how to fix them on your iPhone 6 Plus without a trip to the Apple Store.</p>
<p>Some of these issues are lingering iOS 8 problems that Apple will need to continue to work on, while others are easy to fix by installing the free <a style="color: #469bd1;" title="iOS 8.1 Update: 11 New Features &amp; Fixes" href="http://www.gottabemobile.com/2014/10/21/ios-8-1-update-11-new-features-fixes/">iOS 8.1 update</a>. Others are strictly iPhone 6 Plus problems that are not a problem on older devices.</p>
<p>After a troubling start to iPhone 6 Plus updates knocked out cell service, Apple is finally delivering real fixes to these common iPhone 6 Plus problems.</p>
<p>&nbsp;</p>
<p><a style="color: #469bd1;" href="http://www.gottabemobile.com/iphone-6/"><img class="size-large wp-image-272889 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/iPhone-6-Plus-Problems-3-620x413.jpg" alt="Learn how to fix common iPhone 6 Plus problems." width="620" height="413" /></a></p>
<p>&nbsp;</p>
<h2 style="font-weight: 500;">iPhone 6 Plus Battery Life</h2>
<p>Overall iPhone 6 Plus battery life is good, but some users experience bad iPhone 6 Plus battery life after the latest update to iOS 8.1.</p>
<p>If the iPhone 6 Plus battery doesn’t last all day under average use you should go to <span style="font-weight: bold;">Settings -&gt; General -&gt; Usage -&gt; Battery Usage</span>.</p>
<div class="wpInsert wpInsertInPostAd wpInsertMiddle"><center></center></div>
<p>Here you can see if Usage and Standby are the same. If that is the case there is something wrong with your iPhone and iOS 8.1. You can try resetting settings and deleting recently installed apps as well as other iPhone 6 Plus battery fixes. To reset iPhone 6 Plus settings without deleting your files go to <span style="font-weight: bold;">Settings -&gt; General -&gt; Reset -&gt; Reset All Settings. </span></p>
<p>&nbsp;</p>
<p><img class="size-large wp-image-272892 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/iPhone-6-Plus-Battery-Life-Fixes-620x348.jpg" alt="Check your use to find the reason for bad iPhone 6 Plus battery life." width="620" height="348" /></p>
<p>&nbsp;</p>
<p>If they are closer to what you see in the image above an app may be the problem. If the iPhone 6 Plus is warm and slow, you can hold the home and power button to reboot the phone.</p>
<p>You can see what apps use the most battery life on your iPhone 6 Plus and, if need be, delete the app. Facebook is a major battery drain for many users. Google Hangouts and other apps with background activity can cause bad iPhone 6 Plus battery life.</p>
<h2 style="font-weight: 500;">How to Fix iPhone 6 Plus WiFi Problems</h2>
<p>iPhone 6 Plus WiFi problems include poor speeds, random disconnections and the inability to connect to certain routers. This is not unique to the iPhone 6 Plus, as small updates and iPhone releases deliver WiFi problems to the iPhone. A common problem we ran into is the inability to print to a Wireless printer. Rebooting the iPhone, router and printer fixed this for a while.</p>
<p>WiFi problems are tougher to fix due to the variety of factors causing connectivity issues. Here are several steps you can try on your iPhone and at your home network to fix iPhone 6 Plus WiFi problems. Hopefully this will prevent the need to buy a new router.</p>
<p>Before you try any of these make sure you install the iOS 8.1 update. Go to <span style="font-weight: bold;">Settings -&gt; General -&gt; Software Update -&gt; Download &amp; Install</span>. If you are already on iOS 8.1 you can see it listed here.</p>
<p>Reset your router. Go to your router, unplug it and count to 45 then plug it back in. This can fix some problems easily. You can also try restarting the iPhone 6 Plus. If it only happens in specific areas of your house or office you may need to move the router.</p>
<p>&nbsp;</p>
<p><img class="size-large wp-image-272884 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/iPhone-6-Plus-Problems-7-620x443.jpg" alt="iOS 8.1 fixes some iPhone 6 plus WiFi problems." width="620" height="443" /></p>
<p>&nbsp;</p>
<p>The next step is to reset network settings. This easy step does not wipe any data from your iPhone, but it will restore the networking to factory defaults. Go to <span style="font-weight: bold;">Settings &gt; General &gt; Reset &gt; Reset Network Settings.</span></p>
<p>You’ll enter your passcode and wait for the iPhone to reboot. When it does, enter your router password again and see if you can connect.</p>
<p>If that fails the next step is to toggle WiFi Network location services off. For some reason this fixes some random iPhone WiFi problems. Go to <span style="font-weight: bold;">Settings &gt; Privacy &gt; Location Services &gt; System Services.</span> When you toggle WiFi off restart the iPhone and then see if it works. If it works you can try turning this back on and see if it still works.</p>
<h2 style="font-weight: 500;">How to Fix iPhone 6 Plus Bluetooth Issues</h2>
<p>The iPhone 6 Plus does not connect to in-car entertainment and hands free systems well on iOS 8 and iOS 8.0.2. If you experience these problems the first step is to update to iOS 8.1, which fixes many iPhone 6 Plus Bluetooth problems.</p>
<p>If you still can’t connect to specific Bluetooth devices or accessories you may need to reset all settings. You will need to re-setup your settings, but you don’t lose data or apps. Go to <span style="font-weight: bold;">Settings &gt; General &gt; Reset &gt; Reset All Settings.</span></p>
<h2 style="font-weight: 500;">How to Fix iPhone 6 Plus App Problems</h2>
<p>The iOS 8.1 update for the iPhone 6 Plus fixes a lot of the iPhone 6 Plus app problems we ran into over the last month. Install that to get started on a fix.</p>
<p>&nbsp;</p>
<p><img class="size-large wp-image-272885 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/iPhone-6-Plus-Problems-6-620x358.jpg" alt="Update your apps to fix  iPhone 6 Plus app crashes. " width="620" height="358" /></p>
<p>&nbsp;</p>
<p>If you don’t have automatic app updates turned on you should open the App Store and update your apps. Developers routinely deliver bug fixes and new features that solve many issues.</p>
<p>Many apps are already updated for the iPhone 6 Plus, which removes our biggest complaints of blurry, blown up apps with odd sized keyboards on the iPhone 6 Plus.</p>
<p><span style="font-weight: bold;">Tap on the App Store app -&gt; Updates -&gt; Update All</span> to make sure your apps are up to date.</p>
<h2 style="font-weight: 500;">Fix iPhone 6 Plus Landscape Problems</h2>
<p>If your iPhone 6 plus is stuck in landscape mode all the time you need to install iOS 8.1. This update fixes a lot of the landscape issues, but they aren’t completely gone.</p>
<p>&nbsp;</p>
<p><img class="size-full wp-image-272883 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/iPhone-6-Plus-Problems-Landscape.jpg" alt="Apple fixed most landscape problems, but there are still occasional issues. " width="620" height="465" /></p>
<p>&nbsp;</p>
<p>When the iPhone 6 Plus is stuck in landscape you can fix it by double tapping the home button to open multitasking, tapping on another app and then switching back. Most of the time this will solve the problem.</p>
<p>You can also open Control Center and tap on the lock icon to stick in portrait mode all the time.</p>
<h2 style="font-weight: 500;">iPhone 6 Plus iMessage Problems</h2>
<p>iPhone 6 Plus iMessage problems include messages not staying marked as read and no option to leave a group iMessage.</p>
<p>Update to iOS 8.1 for a fix to the unread iMessage problem on the iPhone 6 Plus. You can also try restarting the iPhone and other devices with iMessage.</p>
<p>If you cannot leave a group iMessage on the iPhone 6 Plus it is because there has been a text message in that group at some point. Apple won’t break text messaging, so you are stuck in the group. This may also happen if one of your devices is not on iOS 8 or your computer is not on OS X Yosemite.</p>
<h2 style="font-weight: 500;">iPhone 6 Plus Cellular Problems</h2>
<p>Sometimes the iPhone 6 Plus cellular connection slows to a crawl or is stuck on 3G or Edge, making it essentially useless.</p>
<p>The quickest fix is to toggle Airplane mode on, wait a minute and turn it back off. This normally forces the iPhone to grab a better connection to a tower. <span style="font-weight: bold;">Open Control Center and tap on the airplane</span>, wait a little bit and <span style="font-weight: bold;">tap it again</span>.</p>
<p>Turning Cellular Data off and back on may also fix it. Go to <span style="font-weight: bold;">Cellular &gt; Cellular Data &gt; Toggle Off</span>.</p>
<p>&nbsp;</p>
<p><img class="size-large wp-image-272890 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/iPhone-6-Plus-Problems-2-620x422.jpg" alt="Fixes for iPhone 6 Plus problems with LTE." width="620" height="422" /></p>
<p>&nbsp;</p>
<p>Another option is to remove the SIM card and restart the phone. Then place the SIM card back in. This is something Verizon recommended to fix connectivity problems on our iPhone before. Results may vary.</p>
<p>You can also check for new carrier settings. Go to <span style="font-weight: bold;">Settings -&gt; General -&gt; About,</span> and if there is an update a pop up will appear in a few seconds.</p>
<p>If all else fails, there may be a hardware problem with your iPhone 6 Plus. Check with your carrier or Apple.</p>
<h2 style="font-weight: 500;">iPhone 6 Plus Bending Problems</h2>
<p>There have been a lot of scares about <a style="color: #469bd1;" title="iPhone 6 Bending Problems Dismissed by Apple" href="http://www.gottabemobile.com/2014/10/14/iphone-6-bending-problems-dismissed-by-apple/">iPhone 6 Plus bending problems</a>, and it is a real issue for some users. To prevent bending you can use a case and avoid keeping the iPhone 6 Plus in a tight pocket or a back pocket.</p>
<p>If your iPhone 6 Plus bends, you can talk to Apple about a replacement, but be aware that they don’t just replace any bent iPhone 6 Plus for free.</p>
<h2 style="font-weight: 500;">General Fix for iPhone 6 Plus Problems</h2>
<p>If nothing else works and the iPhone 6 Plus is slow or doesn’t work right you can try this last ditch effort to fix common general iPhone 6 Plus problems.</p>
<p>&nbsp;</p>
<p><img class="size-large wp-image-272887 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/iPhone-6-Plus-Problems-5-620x273.jpg" alt="If all else fails you need to try a factory reset or visit an Apple Store. " width="620" height="273" /></p>
<p>&nbsp;</p>
<p>You can try this before you go to a Genius Bar to save the time and a trip, but if you don’t want to set your iPhone 6 plus up from scratch you can just skip this and book an appointment.</p>
<p>A factory reset can solve many iPhone 6 plus problems, but you need to wipe all of your data and photos off the iPhone. To do this, backup your files, photos and data and go to <span style="font-weight: bold;">Settings &gt; General &gt; Reset &gt; Erase All Content and Settings.</span></p>
<div><center></center></div>
<div class="wpInsert wpInsertInPostAd wpInsertBelow">
<div id="DfpVisibilityIdentifier_2690519848838448" class="GoogleActiveViewClass" data-admeta-dfp="4585/ns.gottabemobile/general,300,250,17653192060730791213,0.02">
<div id="google_ads_iframe_/134702932/206_GTBM_ATF_300x250-pb-a_1__container__"></div>
</div>
</div>
</div>
</article>
</div>
<div class="content-sidebar-wrap" style="color: #222222;" data-page-url="http://www.gottabemobile.com/2014/10/22/how-to-iphone-calls-os-x-yosemite/" data-page-title="How to Make &amp;amp; Receive iPhone Calls in OS X Yosemite">
<article class="post-272856 post type-post status-publish format-standard has-post-thumbnail category-apple category-how-to category-ios category-iphone-apple category-os-x tag-apple tag-conti tag-continuity tag-ios tag-ios-8 tag-iphone tag-os-x tag-os-x-yosemite tag-yosemite entry">
<header class="entry-header">
<h1 class="entry-title" style="font-weight: 500;">How to Make &amp; Receive iPhone Calls in OS X Yosemite</h1>
</header>
<div class="entry-content">
<div></div>
<p>If you want to use your Mac to make and receive phone calls from your iPhone, here’s how to do it using OS X Yosemite and iOS 8.</p>
<p>OS X Yosemite was <a style="color: #469bd1;" href="http://www.gottabemobile.com/2014/10/16/os-x-yosemite-release-date-confirmed/">launched last week</a> during Apple’s iPad event, allowing Mac users to download and install the long-awaited new version of OS X. One of the coolest new features of OS X Yosemite is the ability to make and receive phone calls right on your Mac from your iPhone.</p>
<p>This new feature is a part of Apple’s Continuity initiative that aims to get OS X and iOS working seamlessly together, and OS X Yosemite is the first version of Apple’s Mac operating system that truly does this.</p>
<p>To make and receive phone calls on your Mac, you’ll need to make sure that both your Mac and your iPhone are connected to the same WiFi network and are also signed into the same iCloud account. If you’re at home and only have one iCloud account anyway, then you’re most likely all set to go, but it wouldn’t hurt to double check this.</p>
<p>After that, we’re all ready to begin setting it up. Here’s how to do it.</p>
<h2 style="font-weight: 500;">Setting Up Phone Calls in OS X Yosemite</h2>
<p>To set this up, there are settings that you’ll need to enable on both your Mac and your iPhone. Let’s first start with your Mac.</p>
<ol>
<li>Open up the FaceTime app, which is located in the <span style="font-weight: bold;">Applications</span> folder (or it could already be located in your dock).</li>
<li>Click on <span style="font-weight: bold;">FaceTime</span> in the menu bar in the upper-left corner of the screen.</li>
<li>Click on <span style="font-weight: bold;">Preferences</span>.</li>
<li>Place a checkmark next to <span style="font-weight: bold;">iPhone Cellular Calls</span>.</li>
</ol>
<p><img class="aligncenter size-full wp-image-272876 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/Screen-Shot-2014-10-22-at-2.30.39-PM.jpg" alt="Screen Shot 2014-10-22 at 2.30.39 PM" width="396" height="498" /></p>
<div class="wpInsert wpInsertInPostAd wpInsertMiddle"><center></center><center></center></div>
<p>Now, let’s move to your iPhone and enable that same feature in iOS.</p>
<ol>
<li>Open up the <span style="font-weight: bold;">Settings</span> app.</li>
<li>Tap on <span style="font-weight: bold;">FaceTime</span>.</li>
<li>Find <span style="font-weight: bold;">iPhone Cellular Calls</span> and turn the toggle switch <span style="font-weight: bold;">On</span>.</li>
</ol>
<p><img class="aligncenter size-large wp-image-272875 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/2014-10-22-14.31.21-620x519.png" alt="2014-10-22 14.31.21" width="620" height="519" /></p>
<p>One thing that’s important to know is that, while this setting lies in the FaceTime settings, FaceTime itself doesn’t have to be open in order to make and receive phone calls. With that said, we’re not sure why this feature’s setting is tucked into FaceTime’s settings, but we digress.</p>
<p>After you have done these two things, you’ll be all set to go and will be able to make and receive phone calls right on your Mac.</p>
<h2 style="font-weight: 500;">Making &amp; Receiving Phone Calls</h2>
<p>Receiving phone calls in OS X Yosemite is really easy; you just wait for a call to come in and it will show up in the upper-right corner as any other notification would. From there, you can click on <span style="font-weight: bold;">Accept</span> or <span style="font-weight: bold;">Decline</span>. Accepting the call will allow you to talk using the Mac’s microphone and hear the other person through the speakers. Declining the call will send it to voicemail.</p>
<p><img class="aligncenter size-large wp-image-272872 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/Screen-Shot-2014-10-22-at-2.51.03-PM-620x414.jpg" alt="Screen Shot 2014-10-22 at 2.51.03 PM" width="620" height="414" /></p>
<p>To make a phone call in OS X Yosemite, simply open the <span style="font-weight: bold;">Contacts</span> app and hover over a number you want to call. A blue phone icon will appear off to the right. Simply just click on that icon to make a phone call. You can also open up FaceTime and dial a number if you don’t have it in your contacts list.</p>
<p>There’s also a third-party app called <a style="color: #469bd1;" href="http://continuitykeypad.co/" target="_blank">Continuity Keypad</a> that brings the Phone app’s keypad in iOS 8 to OS X Yosemite, allowing you to easily dial numbers without having to open FaceTime or the Contacts app.</p>
<h2 style="font-weight: 500;">What Else Is New in OS X Yosemite</h2>
<p>OS X Yosemite was first announced back in June during Apple’s annual WWDC developers conference and it has spent the summer in beta form for developers to test out and report any bugs. The OS has seen multiple beta releases over the past few months and was finally released to the public late last week.</p>
<p><img class="aligncenter size-full wp-image-271791 amzn_view_checked" src="http://cdn.gottabemobile.com/wp-content/uploads/OS-X-Yosemite.jpg" alt="OS X Yosemite" width="620" height="381" /></p>
<p>This new version of OS X comes with some pretty sweet features, including an all-new look and feel that finally puts OS X on par with iOS 7, thanks to the translucent windows and menus, as well as a flatter design overall, with redesigned icons that mimic iOS 7 icons, but still include some depth so that there’s still a bit of that classic OS X feel.</p>
<p>Furthermore, OS X 10.10 Yosemite also comes improvements made to Messages, including the ability to send and receive SMS text messages (rather than just iMessages).</p>
<p>You can also take advantage of Handoff, which allows you to begin working on something on one device and continue working on it on a different device, whether it’s on OS X or iOS.</p>
<div><center></center></div>
<p>If you haven’t yet installed OS X Yosemite, here’s a thorough guide on <a style="color: #469bd1;" href="http://www.gottabemobile.com/2014/10/16/how-to-clean-install-os-x-yosemite/">performing a clean install</a> on your Mac machine.</p>
<p>&nbsp;</p>
<p>Source: http://www.gottabemobile.com/2014/10/22/ios-8-1-review-early/</p>
</div>
</article>
</div>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/10/24/9-common-iphone-6-plus-problems-how-to-fix-them/">9 Common iPhone 6 Plus Problems &#038; How to Fix Them</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
		<item>
		<title>22 Tips to Extend iPhone Battery Life</title>
		<link>https://www.asalta.com/2014/10/24/22-tips-to-extend-iphone-battery-life/</link>
		<pubDate>Fri, 24 Oct 2014 13:01:50 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[battery life]]></category>
		<category><![CDATA[ios8]]></category>
		<category><![CDATA[iphone 6]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=130</guid>
		<description><![CDATA[<p>22 Tips to Extend iPhone Battery Life Anyone who’s used an iPhone for even a few days has discovered that while these phones are more powerful, and more fun, than perhaps any other cell or smart phone, that fun comes &#8230; <a href="https://www.asalta.com/2014/10/24/22-tips-to-extend-iphone-battery-life/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/10/24/22-tips-to-extend-iphone-battery-life/">22 Tips to Extend iPhone Battery Life</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">22 Tips to Extend iPhone Battery Life</h4>
<div class="expert-content-text" style="color: #191919;">
<p>Anyone who’s used an iPhone for even a few days has discovered that while these phones are more powerful, and more fun, than perhaps any other cell or smart phone, that fun comes with a price: battery use. Any halfway intensive iPhone user will recharge their phone almost every couple of days.</p>
<p>There are ways to conserve iPhone battery life, but many of them involve turning off services and features, which makes it a choice between all the cool things that the iPhone can do and having enough juice to do them.</p>
<p>Here are 20 tips to help you extend your iPhone&#8217;s power, including new tips for <a style="color: #0099cc;" href="http://ipod.about.com/od/UsingiOS8/tp/14-Awesome-Features-of-iOS-8.htm">iOS 8</a>, which has features that can drain battery faster than earlier versions.</p>
<p>You don&#8217;t need to follow all of them (what fun would that be?)—just use the ones that make sense for how you use your iPhone—but following some will help you conserve juice.</p>
</div>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/k/X/-/-/auto-brightness-levels.jpg" alt="adjusting auto-brightness on phone - " width="300" height="200" data-description="Can't keep your iPhone powered up all day? Try this.: Turn on Auto-Brightness" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/k/X/-/-/auto-brightness-levels.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">1. Turn on Auto-Brightness</h3>
<div class="list-unit-expert-content">
<p>The iPhone has an <a style="color: #0099cc;" href="http://ipod.about.com/od/ipodiphonehardwareterms/qt/iphone-sensors.htm">ambient light sensor</a>that adjusts the brightness of the screen based on the light around it (darker in dark places, brighter when there&#8217;s more ambient light) to both save battery and make it easier to see. Turn <span style="font-weight: bold;">Auto-Brightness</span> on and you’ll save energy because your screen will need to use less power in dark places.</p>
<p>Adjust that setting by tapping:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Display &amp; Brightness </span>(it&#8217;s called <span style="font-weight: bold;">Brightness &amp; Wallpaper </span>in iOS 7)</li>
<li>Move the <span style="font-weight: bold;">Auto-Brightness</span> slider to On/green</li>
</ol>
</div>
</div>
</section>
<div id="adsense1" class="adsense-slot adsense" style="color: #191919;">
<div class="label" style="color: #989898;"></div>
</div>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/S/E/-/-/auto-brightness.jpg" alt="iphone battery life: screen brightness - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Reduce Screen Brightness" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/S/E/-/-/auto-brightness.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">2. Reduce Screen Brightness</h3>
<div class="list-unit-expert-content">
<p>You can control the default brightness of your iPhone screen with this slider. Needless to say, the brighter the default setting for the screen, the more power it requires. Keep the screen dimmer to conserve more of your battery by tapping:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Display &amp; Brightness </span>(it&#8217;s called <span style="font-weight: bold;">Brightness &amp; Wallpaper </span>in iOS 7)</li>
<li>Move the slider as needed</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><a style="color: #0099cc;" href="http://ipod.about.com/od/UsingiOS7/fl/Dealing-with-iOS-7-Motion-Sickness.htm" data-component="contentListPage" data-source="outbound_list" data-type="link.articleReview" data-ordinal="1"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/J/Y/-/-/reduce-motion.PNG" alt="reduce motion and animation in iOS 7 - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Stop Motion &amp;amp; Animations (iOS 7)" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/J/Y/-/-/reduce-motion.PNG" /></a></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;"><a style="color: #0099cc;" href="http://ipod.about.com/od/UsingiOS7/fl/Dealing-with-iOS-7-Motion-Sickness.htm" data-component="contentListPage" data-source="outbound_list" data-type="link.articleReview" data-ordinal="2">3. Stop Motion &amp; Animations (iOS 7)</a></h3>
<div class="list-unit-expert-content">
<p>One of the coolest features of iOS 7 is called Background Motion. It&#8217;s subtle, but if you move your iPhone and watch the app icons and background image, you&#8217;ll see them move slightly independently of each other, as if they&#8217;re on different planes. This is called a parallax effect. It&#8217;s really cool, but it also drains battery. You may want to leave it on to enjoy the effect, but if not, turn it off by tapping:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">General</span></li>
<li><span style="font-weight: bold;">Accessibility</span></li>
<li><span style="font-weight: bold;">Reduce Motion</span></li>
<li>Move slider to green/On</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/a/S/-/-/dynamic-wallpaper.jpg" alt="iOS 7 battery: Dynamic Backgrounds - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Disable Dynamic Backgrounds (iOS 7)" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/a/S/-/-/dynamic-wallpaper.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">4. Disable Dynamic Backgrounds (iOS 7)</h3>
<div class="list-unit-expert-content">Another neat feature introduced in iOS 7 is animated wallpapers that move underneath your app icons. These dynamic backgrounds offer a cool interface flourish, but they also use more power than a simple static background image. Dynamic Backgrounds aren&#8217;t a feature you have to turn on or off, just don&#8217;t select the Dynamic Backgrounds in the<span style="font-weight: bold;">Wallpapers &amp; Backgrounds</span> menu.</div>
</div>
</section>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/c/E/-/-/bluetooth-slider.jpg" alt="iphone battery extend: bluetooth - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Turn Bluetooth Off" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/c/E/-/-/bluetooth-slider.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">5. Turn Bluetooth Off</h3>
<p>Bluetooth wireless networking is especially useful for cell phone users with wireless headsets or earpieces. But transmitting data wirelessly takes battery and leaving Bluetooth on to accept incoming data at all times requires even more juice. Turn off<span style="font-weight: bold;">Bluetooth</span> except when you’re using it to squeeze more power from your battery.</p>
<p>Find it in:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Bluetooth</span></li>
<li>Move slider to Off/white</li>
</ol>
<p>You can also access the Bluetooth setting through <a style="color: #0099cc;" href="http://ipod.about.com/od/UsingiOS7/ss/Using-Control-Center.htm">Control Center</a>. To do that, swipe up from the bottom of the screen and tap the Bluetooth icon (the center one) so that it is grayed out.</p>
</div>
</section>
<div id="adsense3" class="adsense-slot adsense" style="color: #191919;">
<div class="label" style="color: #989898;"></div>
</div>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/d/E/-/-/turn-off-3g.jpg" alt="iphone battery life: turn off cellular data - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Turn Off LTE or Cellular Data" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/d/E/-/-/turn-off-3g.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">6. Turn Off LTE or Cellular Data</h3>
<div class="list-unit-expert-content">
<p>The nearly perpetual connectivity offered by the iPhone means connecting to 3G and speedy 4G LTE cellular phone networks. Not surprisingly, using 3G, and especially 4G LTE, requires more energy to get the quicker data speeds and higher-quality calls. It’s tough to go slower, but if you need more power, <span style="font-weight: bold;">turn off LTE</span>and just use the older, slower networks. Your battery will last longer (though you’ll need it when you’re downloading websites more slowly!) or <span style="font-weight: bold;">turn off all cellular data</span> and either just use Wi-Fi or no connectivity at all.</p>
<p>To do this:</p>
<ol>
<li>Tap <span style="font-weight: bold;">Settings</span></li>
<li><span style="font-weight: bold;">Cellular</span></li>
<li>Slide <span style="font-weight: bold;">Enable LTE</span> to Off/white to use slower cellular data networks while still allowing yourself to use cellular data</li>
<li>To limit yourself just to Wi-Fi, slide <span style="font-weight: bold;">Cellular Data</span> to Off/white</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/X/E/-/-/wifi.jpg" alt="iphone battery extend: turn off wi-fi - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Keep Wi-Fi Off" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/X/E/-/-/wifi.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">7. Keep Wi-Fi Off</h3>
<p>The other kind of high-speed network that the <a style="color: #0099cc;" href="http://ipod.about.com/od/webbrowsing/ht/iphone-wifi.htm">iPhone can connect to is Wi-Fi</a>. Wi-Fi is even faster than 3G or 4G, though it’s only available where there’s a hotspot (not virtually everywhere like 3G or 4G). Keeping Wi-Fi turned on at all times in hopes that an open hotspot will appear is a sure way to drain your battery life. So, unless you’re using it right this second, <span style="font-weight: bold;">keep Wi-Fi turned off </span>by tapping:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Wi-Fi</span></li>
<li>Slide to Off/white</li>
</ol>
<p>You can also turn off Wi-Fi via Control Center. To access that setting, swipe up from the bottom of the screen and tap the Wi-Fi icon to gray it out.</p>
</div>
</section>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/W/E/-/-/location-services.jpg" alt="iphone battery performance: turn off location services - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Turn Off Location Services" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/W/E/-/-/location-services.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">8. Turn Off Location Services</h3>
<div class="list-unit-expert-content">
<p>One of the coolest features of the iPhone is its <a style="color: #0099cc;" href="http://ipod.about.com/od/iphonesoftwareterms/g/Iphone-Gps-Description.htm">built-in GPS</a>. This allows your phone to know where you are and give you exact driving directions, give that information to apps that help you find restaurants, and more. But, like any service that sends data over a network, it needs battery power to work. If you’re not using <span style="font-weight: bold;">Location Services</span>, and don’t plan to right away, turn them off and save some power.</p>
<p>Turn off Location Services by tapping:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Privacy</span></li>
<li><span style="font-weight: bold;">Location Services</span></li>
<li>Slide to Off/white</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/R/J/-/-/system-services.jpg" alt="system services settings - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Turn Off Other Location Settings" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/R/J/-/-/system-services.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">9. Turn Off Other Location Settings</h3>
<div class="list-unit-expert-content">
<p>The iPhone can perform a lot of useful tasks in the background, but the more background activity there is, especially activity that connects to the Internet or uses GPS, can drain battery quickly. Some of these features in particular are not required by most iPhone users and can be safely turned off to regain some battery life.</p>
<p>Find them in:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Privacy</span></li>
<li><span style="font-weight: bold;">Location Services</span></li>
<li><span style="font-weight: bold;">System Services</span></li>
<li>Turn off <span style="font-weight: bold;">Diagnostics &amp; Usage</span>,<span style="font-weight: bold;">Location-Based iAds</span>, <span style="font-weight: bold;">Popular Near Me</span>, and <span style="font-weight: bold;">Setting Time Zone.</span></li>
</ol>
</div>
</div>
</section>
<section class="list-unit group" style="color: #191919;">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/c/S/-/-/turn-off-background-app-refresh.jpg" alt="iOS 7 battery issues: background app refresh - " width="300" height="412" data-description="Can't keep your iPhone powered up all day? Try this.: Prevent Background App Refresh (iOS 7)" data-pinit-img-url="http://0.tqn.com/y/ipod/1/6/c/S/-/-/turn-off-background-app-refresh.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">10. Prevent Background App Refresh (iOS 7)</h3>
<div class="list-unit-expert-content">
<p>There are a number of new features in iOS 7 designed to make your iPhone smarter and ready for you whenever you need it. One of these features is Background App Refresh. This feature looks at the apps you use most often, the time of day that you use them, and then automatically updates them for you so that the next time you open the app, the latest information is waiting for you. For instance, if you always check social media at 7:30 am, iOS 7 learns that and automatically updates your social apps before 7:30 am. Needless to say, this useful feature drains battery.</p>
<p>To turn it off, tap:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">General</span></li>
<li><span style="font-weight: bold;">Background App Refresh</span></li>
<li>Either disable the feature entirely or just for for specific apps that you want to use it with</li>
</ol>
<p>&nbsp;</p>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/_/S/-/-/automatic-app-updates.jpg" alt="Automatic app updates in iOS 7 - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Don't Automatically Update Apps (iOS 7)" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/_/S/-/-/automatic-app-updates.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">11. Don&#8217;t Automatically Update Apps (iOS 7)</h3>
<div class="list-unit-expert-content">
<p>If you&#8217;ve got iOS 7, you can forget needing to update your apps by hand. There&#8217;s now a feature that automatically updates them for you when new versions are released. Convenient, but also a drain on your battery. To only update apps when you want to, and thus manage your power better:</p>
<ol>
<li>Tap the <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">iTunes &amp; App Store</span></li>
<li>In the <span style="font-weight: bold;">Automatic Downloads</span>section, find <span style="font-weight: bold;">Updates</span></li>
<li>Move slider to Off/white</li>
</ol>
</div>
</div>
</section>
<div id="adsense1" class="adsense-slot adsense"></div>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/Z/E/-/-/data-push.jpg" alt="iphone battery: turn off data push - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Turn Data Push Off" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/Z/E/-/-/data-push.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">12. Turn Data Push Off</h3>
<div class="list-unit-expert-content">
<p>The iPhone can be set to automatically suck email and other data down to it or, for some kinds of accounts, have data pushed out to it whenever new data becomes available. You’re probably realized by now that accessing wireless networks costs you energy, so <span style="font-weight: bold;">turning data push off</span>, and thus reducing the number of times your phone connects to the network, will extend your battery’s life. With push off, you’ll need to set your email to check periodically or do it manually (see the next tip for more on this).</p>
<p>Find it in:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Mail, Contacts, Calendar</span></li>
<li><span style="font-weight: bold;">Fetch New Data</span></li>
<li><span style="font-weight: bold;">Push</span></li>
<li>Slide to Off/white</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/V/E/-/-/fetch-data.jpg" alt="iphone battery performance: fetch data less - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Fetch Email Less Often" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/V/E/-/-/fetch-data.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">13. Fetch Email Less Often</h3>
<div class="list-unit-expert-content">
<p>The less often your phone accesses a network, the less battery it uses. Save battery life by setting your phone to<span style="font-weight: bold;">check your email accounts less often</span>. Try checking every hour or, if you’re really serious about saving battery, manually. Manual checks means you’ll never have email waiting for you on your phone, but you’ll also stave off the red battery icon.</p>
<p>Change your Fetch settings by tapping:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Mail, Contacts, Calendar</span></li>
<li><span style="font-weight: bold;">Fetch </span></li>
<li>Select your preference (the longer between checks, the better for your battery)</li>
</ol>
</div>
</div>
</section>
<div id="adsense2" class="adsense-slot adsense"></div>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/T/E/-/-/auto-lock.jpg" alt="iphone battery life: auto-lock sooner - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Auto-Lock Sooner" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/T/E/-/-/auto-lock.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">14. Auto-Lock Sooner</h3>
<div class="list-unit-expert-content">
<p>You can set your iPhone to automatically go to sleep – a feature known as <span style="font-weight: bold;">Auto-Lock</span> &#8211; after a certain amount of time. The sooner it sleeps, the less power is used to run the screen or other services. Try setting Auto-Lock to 1 or 2 minutes.</p>
<p>Change the setting in:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">General</span></li>
<li><span style="font-weight: bold;">Auto-Lock</span></li>
<li>Tap your preference (the shorter, the better)</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/U/E/-/-/EQ.jpg" alt="iphone battery: turn off equalizer - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Turn off Equalizer" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/U/E/-/-/EQ.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">15. Turn off Equalizer</h3>
<div class="list-unit-expert-content">
<p>The iPod app on the iPhone has an<span style="font-weight: bold;">Equalizer</span> feature that can adjust music to increase bass, decrease treble, etc. Because these adjustments are made on the fly, they require extra battery. Turn the equalizer off to conserve battery. This means you&#8217;ll have a slightly modified listening experience &#8211; the power savings might not be worht it to true audiophiles &#8211; but for those hoarding battery power, it&#8217;s a good deal.</p>
<p>Find it in:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Music</span></li>
<li><span style="font-weight: bold;">EQ</span></li>
<li>Tap off</li>
</ol>
</div>
</div>
</section>
<div id="adsense3" class="adsense-slot adsense"></div>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/l/X/-/-/turn-off-hotspot.jpg" alt="save iphone battery: turn off hotspot - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: Make Sure Personal Hotspot Is Off" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/l/X/-/-/turn-off-hotspot.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">16. Make Sure Personal Hotspot Is Off</h3>
<div class="list-unit-expert-content">
<p>This only applies if you use the iPhone&#8217;s Personal Hotspot feature to share your wireless data connection with other devices. But if you do that, this tip is key.</p>
<p>Personal Hotspot turns your iPhone into a wireless hotspot that broadcasts its cellular data to other devices within in range. This is a tremendously useful feature, but as you may have guessed if you&#8217;ve read this far, it also really drains your battery. That&#8217;s an acceptable trade when you&#8217;re using it, but if you forget to turn it off when you&#8217;re done, you&#8217;ll be surprised at how quickly your battery drains.</p>
<p>To make sure you turn off Personal Hotspot when you&#8217;re done using it:</p>
<ol>
<li>Tap the <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">Personal Hotspot</span></li>
<li>Move slider to off/white</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/w/Y/-/-/battery-usage.PNG" alt="Battery usage in iOS 8 - " width="300" height="533" data-description="Can't keep your iPhone powered up all day? Try this.: Find the Battery Killers (iOS 8)" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/w/Y/-/-/battery-usage.PNG" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">17. Find the Battery Killers (iOS 8)</h3>
<p>Most of the suggestions on this list are about turning things off or not doing certain things. This one helps you discover which apps are killing your battery. In iOS 8, there&#8217;s a new feature called Battery Usage that shows which apps have been sucking the most power over the last 24 hours and the last 7 days. If you start seeing an app showing up there consistently, you&#8217;ll know that running the app is costing you battery life.</p>
<p>Access Battery Usage by tapping:</p>
<ol>
<li>The <span style="font-weight: bold;">Settings</span> app</li>
<li><span style="font-weight: bold;">General</span></li>
<li><span style="font-weight: bold;">Usage</span></li>
<li><span style="font-weight: bold;">Battery Usage</span></li>
</ol>
<p>On that screen, you&#8217;ll sometimes see notes beneath each item (for instance, in the screenshot, notice &#8220;Low Signal&#8221; under Personal Hotspot). This note provides more detail on why the app drained so much battery and can suggest ways for you to fix it.</p>
</div>
</section>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/x/Y/-/-/suggested-apps.PNG" alt="Suggested Apps in iOS 8 - " width="300" height="533" data-description="Can't keep your iPhone powered up all day? Try this.: Don't Take App Suggestions (iOS 8)" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/x/Y/-/-/suggested-apps.PNG" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">18. Don&#8217;t Take App Suggestions (iOS 8)</h3>
<div class="list-unit-expert-content">
<p>Suggested Apps is another new feature of iOS 8 that uses your location information to figure out where you are, what you&#8217;re near, and what apps—both installed on your phone and available in the App Store—might come in handy based on that information. It can be neat, but needless to say, it uses extra battery life by checking for your location, communicating with the App Store, etc.</p>
<p>To turn off suggested apps:</p>
<ol>
<li>Tap the <span style="font-weight: bold;">Settings</span> app</li>
<li>Tap <span style="font-weight: bold;">General</span></li>
<li>Tap <span style="font-weight: bold;">Handoff &amp; Suggested Apps</span></li>
<li>Move the <span style="font-weight: bold;">My Apps</span> and <span style="font-weight: bold;">App Store</span>sliders to Off</li>
</ol>
</div>
</div>
</section>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/x/F/-/-/kill-iphone-apps.jpg" alt="killing apps doesn't save battery life - " width="300" height="532" data-description="Can't keep your iPhone powered up all day? Try this.: One Common Mistake: Quitting Apps Doesn't Save Battery" data-pinit-img-url="http://0.tqn.com/y/ipod/1/S/x/F/-/-/kill-iphone-apps.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">19. One Common Mistake: Quitting Apps Doesn&#8217;t Save Battery</h3>
<p>When you talk about tips for saving battery life on your iPhone, perhaps the most common one that comes up is quitting your apps when you&#8217;re done with them, rather than letting them run in the background.</p>
<p>This is wrong. <span style="font-weight: bold;">In fact, regularly quitting your apps in that way can actually make your battery drain faster. </span>So, if saving battery life is important to you, don&#8217;t follow this bad tip.</p>
<p>For more about why this can do the opposite of what you want, <a style="color: #0099cc;" href="http://designatednerd.com/force-quitting-all-your-running-ios-apps-to-save-battery-life-is-total-bunk/" target="_blank">read this</a>.</p>
</div>
</section>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/L/t/8/-/-/iphone-battery-icon.jpg" alt="let iphone battery run down to save life - " width="300" height="224" data-description="Can't keep your iPhone powered up all day? Try this.: Run Down Your Battery As Much As Possible" data-pinit-img-url="http://0.tqn.com/y/ipod/1/6/t/8/-/-/iphone-battery-icon.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">20. Run Down Your Battery As Much As Possible</h3>
<p>Believe it or not, but the more often you charge a battery, the less energy it can hold. Counter-intuitive, I know, but it&#8217;s one of the quirks of modern batteries.</p>
<p>Over time, the battery remembers the point in its drain at which you recharge it and starts to treat that as its limit. For example, if you always charge your iPhone when it&#8217;s still got 75% of its battery left, eventually the battery will start to behave as if it&#8217;s total capacity is 75%, not the original 100%.</p>
<p>The way to get around your battery losing capacity in this way is to use your phone as long as possible before charging it. Try waiting until your phone is down to 20% (or even less!) battery before charging. Just make sure not to wait too long.</p>
</div>
</section>
<section class="list-unit group">
<figure class="content-img content-img-small">
<div class="content-img-wrapper"><img class=" addPinit" src="http://0.tqn.com/y/ipod/1/6/W/D/-/-/mophie-juice-pack-plus.jpg" alt="mophie Juice Pack iphone extended battery - image copyright mophie" width="190" height="200" data-description="Can't keep your iPhone powered up all day? Try this.: Buy an Extended Life Battery" data-pinit-img-url="http://0.tqn.com/y/ipod/1/6/W/D/-/-/mophie-juice-pack-plus.jpg" /></p>
<div class="pin-it-widget"></div>
</div>
<figcaption class="content-img-subtitle" style="color: #989898;">mophie Juice Pack Plus. <span class="credit">image copyright mophie</span></figcaption>
</figure>
<div class="expert-content-text">
<h3 class="item-heading" style="color: inherit;">21. Buy an Extended Life Battery</h3>
<p>If all else fails, just get more battery. A few accessory makers like <a style="color: #0099cc;" href="http://ipod.about.com/od/misciphoneaccessories/gr/mophie-juice-pack-plus-review.htm">mophie</a> and <a style="color: #0099cc;" href="http://ipod.about.com/od/iphone4casereviews/gr/Kensington-Powerguard-Iphone-Battery-Pack-Review.htm">Kensington</a> offer extended life batteries for the iPhone. If you need so much battery life that none of these tips help you enough, an extended life battery is your best bet. With one, you’ll get days more standby time and many hours more use.</p>
</div>
</section>
<section class="list-unit group">
<div class="expert-content-text">
<h3 class="item-heading">22. Do Less-Battery-Intensive Things</h3>
<p>Not all ways to save battery life involve settings. Some of them involve the way you use the phone. Things that require the phone be on for long periods of time, or use a lot of system resources, suck the most battery. These things include movies, games, and browsing the web. If you need to conserve battery, limit your use of battery-intensive apps.</p>
<p>Source: http://ipod.about.com/od/iphone3g/tp/iphone-battery-life.01.htm</p>
</div>
</section>
</div>
</div>
</section>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2014/10/24/22-tips-to-extend-iphone-battery-life/">22 Tips to Extend iPhone Battery Life</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
		<item>
		<title>10 Tech Products We Lost in 2013:RIP Google Reader and Winamp</title>
		<link>https://www.asalta.com/2013/12/10/10-tech-products-we-lost-in-2013rip-google-reader-and-winamp/</link>
		<pubDate>Tue, 10 Dec 2013 13:00:34 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=128</guid>
		<description><![CDATA[<p>10 Tech Products We Lost in 2013:RIP Google Reader and Winamp HTC First (a.k.a. the Facebook Phone) In April 2013, Facebook decided to expand its efforts in mobile with its new Android app launcher, Facebook Home. Although Facebook Home works &#8230; <a href="https://www.asalta.com/2013/12/10/10-tech-products-we-lost-in-2013rip-google-reader-and-winamp/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2013/12/10/10-tech-products-we-lost-in-2013rip-google-reader-and-winamp/">10 Tech Products We Lost in 2013:RIP Google Reader and Winamp</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">10 Tech Products We Lost in 2013:RIP Google Reader and Winamp</h4>
<ul style="list-style-type: none;">
<li><img src="http://rack.1.mshcdn.com/media/ZgkyMDEzLzExLzI3L2IzL2h0Y2ZhY2Vib29rLjQ5MmQwLmpwZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/fe35d7e2/f10/htc-facebook-phone-thumbnail.jpg" alt="Htc-facebook-phone-thumbnail" />
<div>
<h2>HTC First (a.k.a. the Facebook Phone)</h2>
<div>
<p>In April 2013, Facebook decided to expand its efforts in mobile with its new Android app launcher, Facebook Home. Although Facebook Home works on other Android devices, it debuted alongside the HTC First, a mid-level smartphone aimed at the average smartphone users.</p>
<p>Unfortunately for Facebook, both Facebook Home and the HTC First landed with a resounding thud. Although Facebook Home still exists, HTC axed the HTC First just months after its release, giving it the shortest smartphone life cycle since the failed Microsoft Kin.</p>
</div>
<div>IMAGE: MASHABLE NINA FRAZIER</div>
</div>
</li>
<li><img src="http://rack.2.mshcdn.com/media/ZgkyMDEzLzExLzI3LzBiL2lwaG9uZS45NjRkZi5qcGcKcAl0aHVtYgk4NTB4NTkwPgplCWpwZw/59df0996/120/iphone.jpg" alt="Iphone" />
<div>
<h2>Apple iPhone 5</h2>
<div>
<p>In September 2013, Apple released not one but TWO new iPhone devices: The iPhone 5S and the iPhone 5C.</p>
<p>Aside from its colorful casing, the iPhone 5C is essentially an iPhone 5 with a better front-facing camera. As a result, Apple removed the iPhone 5 from its lineup. Interestingly, the iPhone 4S is still around.</p>
</div>
<div>IMAGE: MASHABLE NINA FRAZIER</div>
</div>
</li>
<li><img src="http://rack.1.mshcdn.com/media/ZgkyMDEzLzExLzI3L2MzL3dpbm1wY2xzczk4LjFiY2JjLmpwZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/acbda8dc/355/winmpclss9807adf.jpg" alt="Winmpclss9807adf" />
<div>
<h2>Winamp</h2>
<div>
<p>Before iTunes, there was Winamp, the original modern digital music player app. For those of us in the Napster generation, Winamp was our first computer jukebox, thanks to its ability to play back CDs, MP3 files and the ability to customize its interface with skins.</p>
<p>AOL, which purchased Winamp and its parent company Nullsoft in 1999, announced that it is shuttering the website, mobile app and desktop player in December.</p>
<p>Winamp, we salute you.</p>
</div>
<div>IMAGE: NULLSOFT/WINAMP <a href="http://www.winamp.com/" target="_blank">WINAMP</a></div>
</div>
</li>
<li><img src="http://rack.3.mshcdn.com/media/ZgkyMDEzLzExLzI3L2Q1L3R1cm50YWJsZWZtLjc3NGFiLnBuZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/8ace6e1c/bdf/turntable-fm_.jpg" alt="Turntable-fm_" />
<div>
<h2>Turntable.fm</h2>
<div>
<p>In the summer of 2011, <a href="http://www.mashable.com/category/turntable.fm">Turntable.fm</a> launched as a way for users to share music with one another by taking turns at virtual turntables and spinning tracks for a virtual audience.</p>
<p>These D.J.-run chat rooms were the big new thing that summer, but like many Internet fads (Chatroulette anyone?), the records on Turntable.fm started to skip.</p>
<p>In Novevember 2013, Turntable.fm announced that it will be shutting down its consumer-facing service, instead focusing primarily on &#8220;<a href="http://mashable.com/2012/11/14/turntable-fm-update/">Turntable Live</a>,&#8221; its product for letting bands and artist perform and broadcast live to fans across the globe.</p>
<p>Turntable.fm as you knew it will cease to exist as of Dec. 2, 2013.</p>
</div>
<div>IMAGE: FLICKR <a href="http://www.flickr.com/photos/christophercarfi/5765822987/" target="_blank">CHRISTOPHER CARFI</a></div>
</div>
</li>
<li><img src="http://rack.3.mshcdn.com/media/ZgkyMDEzLzExLzI3L2E0L215c3BhY2VjbGFzLjM5MTU5LmpwZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/ff1c22ad/a2f/myspace-classic.jpg" alt="Myspace-classic" />
<div>
<h2>MySpace Classic</h2>
<div>
<p>In June 2013, <a href="http://www.mashable.com/category/myspace">MySpace</a> unveiled its <a href="http://mashable.com/2013/06/12/new-myspace-launch/">flashy relaunch</a>. The new MySpace has a big focus on music (and Justin Timberlake) and looks almost nothing like the social network most of us actively used in the mid-2000s.</p>
<p>Unfortunately, when the new MySpace made its official debut, it also meant that all vintage MySpace content ceased to exist. That means that photos, blog entries, comments and messages from before June 2013 no longer exist.</p>
<p>The worst part? MySpace didn&#8217;t give users (or the Internet Archive) a warning that the big refresh was coming, meaning many users were left blind-sided when their memories <a href="http://www.marketingpilgrim.com/2013/06/myspace-deletes-your-stuff.html">just disappeared</a>.</p>
<p>MySpace has made it possible for users to recover their old blogs and photos &#8212; but the MySpace as we used it is gone.</p>
<p>Given how poorly the new MySpace has performed, it&#8217;s possible the service might find its way onto our list again in 2014.</p>
</div>
<div>IMAGE: NICHOLAS KAMM/AFP/GETTY IMAGES</div>
</div>
</li>
<li><img src="http://rack.3.mshcdn.com/media/ZgkyMDEzLzExLzI3L2EyL2FsdGF2aXN0YTE5LmJiNTA4LnBuZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/fda461fb/842/altavista-1999.jpg" alt="Altavista-1999" />
<div>
<h2>AltaVista</h2>
<div>
<p>In July 2013, Yahoo <a href="http://mashable.com/2013/07/13/1996-websites/">officially shut down AltaVista.com</a>.</p>
<p>A classic web portal/search engine from the glory days of web 1.0, AltaVista was purchased by Yahoo in 2003.</p>
<p>The fact that Yahoo kept the site around for a decade after launch says a lot about how Yahoo was run over the last 10 years. Danny Sullivan wrote a great <a href="http://searchengineland.com/altavista-eulogy-165366">eulogy</a> for AltaVista, sharing the history of the once-great service.</p>
</div>
<div>IMAGE: ALTAVISTA <a href="http://www.google.com/imgres?imgurl=&amp;imgrefurl=http%3A%2F%2Fwww.dailytech.com%2FRIP%2BAltaVista%2B19952013%2Farticle31880.htm&amp;h=0&amp;w=0&amp;sz=1&amp;tbnid=BDzkDjNjQ8KRkM&amp;tbnh=189&amp;tbnw=267&amp;zoom=1&amp;docid=BfoSzkvc7BOx-M&amp;ei=UuSlUvTHHImlrQeR1YDQBQ&amp;ved=0CAIQsCUoAA" target="_blank">DAILTYTECH.COM</a></div>
</div>
</li>
<li><img src="http://rack.2.mshcdn.com/media/ZgkyMDEzLzExLzI3LzAzL3NjcmVlbnNob3QyLjMyOGQ4LnBuZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/cf2bde5b/d82/screen-shot-2013-11-25-at-2-52-16-pm.jpg" alt="Screen-shot-2013-11-25-at-2-52-16-pm" />
<div>
<h2>Lavabit and Silent Circle</h2>
<div>
<p>When Edward Snowden needed to use encrypted email to communicate with Glen Greenwald and others, he allegedly used the encrypted and secure email service Lavabit.</p>
<p>In August 2013, Lavabit&#8217;s founder <a href="http://mashable.com/2013/08/09/silent-circle-lavabit-shut-down-to-avoid-nsa-snooping/">shut the service down, rather than comply with federal requests to hand over data about its users.</p>
<p>Encrypted email service Silent Circle followed suit (even though it wasn&#8217;t under any direct government requests).</a></p>
</div>
<div>IMAGE: LAVABIT <a href="http://www.pcworld.com/article/2046261/snowdens-email-provider-lavabit-shutters-citing-legal-pressure.html" target="_blank">SCREENSHOT</a></div>
</div>
</li>
<li><img src="http://rack.0.mshcdn.com/media/ZgkyMDEzLzExLzI3L2Y0L2dvb2dsZV9jaGVjLmEwY2NmLmpwZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/d5e7778c/70c/google_checkout_logo.jpg" alt="Google_checkout_logo" />
<div>
<h2>Google Checkout</h2>
<div>
<p>In 2006, Google launched Google Checkout in a bid to compete with PayPal in the world of online payments and transactions.</p>
<p>In spite of the Google name, the service never gained widespread traction outside of Google-related offerings. In 2011, Google Checkout was merged with Google Wallet as a way for users to make and accept payments over the web.</p>
<p>In May, Google announced it was <a href="http://readwrite.com/2013/05/20/google-checkout-closure#awesm=~ooeyBX7D3J3f7V">shutting down the payment processing side of Google Checkout</a> for everything except for Google Play transactions.</p>
<p>With Google Checkout and Google Wallet, the search giant has failed to find a way to really succeed in the world of payments. Meanwhile. PayPal, Stripe, Braintree and Square continue to prove that there is a lot of potential in the online payments space.</p>
</div>
<div>IMAGE: GOOGLE HTTP://WWW.PARCEL2GO.COM/BLOG/GOOGLE-WITHDRAWS-GOOGLE-CHECKOUT/</div>
</div>
</li>
<li><img src="http://rack.3.mshcdn.com/media/ZgkyMDEzLzExLzI3L2ZiL2Jsb2NrYnVzdGVyLmNlOGUzLmpwZwpwCXRodW1iCTg1MHg1OTA-CmUJanBn/d1b2a64d/b75/blockbuster-video.jpg" alt="Blockbuster-video" />
<div>
<h2>Blockbuster Video</h2>
<div>
<p>O.K., so maybe Blockbuster Video isn&#8217;t a &#8220;traditional&#8221; gadget or tech service, but it&#8217;s one indelibly attached to the psyches of <em>Mashable</em> readers (and employees) everywhere.</p>
<p>Dish, the company that now owns Blockbuster, announced that it was shuttering the <a>remaining 300 Blockbuster stores</a> by Jan. 2014 and shutting down the DVD-by-mail service.</p>
<p>Instead, Blockbuster will be just another Netflix competitor.</p>
<p>To the generations of movie lovers who discovered their favorite films in the aisles of Blockbuster Video stores and to anyone who ever had to fight with a credit agency to remove that late fee for <em>Requiem For a Dream</em> from her report, let&#8217;s toast the big Blue and Yellow together.</p>
</div>
<div>IMAGE: DAVID FRIEDMAN/STRINGER/GETTY IMAGES</div>
</div>
</li>
<li><img src="http://rack.2.mshcdn.com/media/ZgkyMDEzLzEyLzA5LzllLzIyODU4MzY1NzYuZDQzNDQucG5nCnAJdGh1bWIJODUweDU5MD4KZQlqcGc/b4a90b73/45f/2285836576_123f20eec4_o.jpg" alt="2285836576_123f20eec4_o" />
<div>
<h2>Google Reader</h2>
<div>
<p>In March 2013, Google announced that it was <a href="http://mashable.com/2013/03/13/google-kills-google-reader/">killing off Google Reader</a>, the most popular RSS reader and sync service in the world.</p>
<p>Although Google cited &#8220;lack of general interest&#8221; in keeping Google Reader around, the death of the product opened up a market of sorts for <a href="http://mashable.com/2013/03/14/google-reader-alternatives/">Google Reader alternatives</a>.</p>
<p>Feedly has proven to be the <a href="http://mashable.com/2013/06/19/feedly-google-reader/">most popular replacement</a>, although we&#8217;re not sure anything can fill the <a href="http://mashable.com/2013/06/26/google-reader-cant-quit-you/">gaping hole</a> Google Reader&#8217;s loss still leaves in our hearts.</p>
</div>
<div>IMAGE: FLICKR, <a href="http://www.flickr.com/photos/nyuhuhuu/2285836576/" target="_blank">NYUHUHUU</a></div>
</div>
</li>
<li>
<div>Source <a href="http://mashable.com/2013/12/09/tech-products-dead-2013/#_">http://mashable.com/2013/12/09/tech-products-dead-2013/#_</a></div>
</li>
</ul>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2013/12/10/10-tech-products-we-lost-in-2013rip-google-reader-and-winamp/">10 Tech Products We Lost in 2013:RIP Google Reader and Winamp</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
		<item>
		<title>Google Now vs. Siri: The results speak for themselves</title>
		<link>https://www.asalta.com/2013/06/28/google-now-vs-siri-the-results-speak-for-themselves/</link>
		<pubDate>Fri, 28 Jun 2013 12:59:36 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Google Now]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Siri]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=126</guid>
		<description><![CDATA[<p>Google Now vs. Siri: The results speak for themselves Google&#8217;s most recent update to their Google Search app for the iPad and iPhone included Google Now, Google&#8217;s personal assistant that uses the information Google knows about you to predict what &#8230; <a href="https://www.asalta.com/2013/06/28/google-now-vs-siri-the-results-speak-for-themselves/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2013/06/28/google-now-vs-siri-the-results-speak-for-themselves/">Google Now vs. Siri: The results speak for themselves</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">Google Now vs. Siri: The results speak for themselves</h4>
<p>Google&#8217;s most recent update to their Google Search app for the iPad and iPhone included Google Now, Google&#8217;s personal assistant that uses the information Google knows about you to predict what information you might need, such as showing the traffic for your commute in the morning or displaying sports scores. But with Apple&#8217;s Siri already entrenched on the iPad and iPhone, do you really need Google Now?</p>
<p><iframe width="560" height="315" src="//www.youtube.com/embed/z4LvJOFTlGo" frameborder="0" allowfullscreen></iframe></p>
<p><strong>Siri</strong></p>
<p>Siri and Google Now have a lot of features in common, such as displaying a list of nearby restaurants or displaying sports scores. But where Siri really makes its mark is in doing things for you, such as setting up a new calendar event or creating a reminder for the future. Siri is also able to place calls, launch apps and play music. And if you are really into social networking, Siri can make updates to Twitter or Facebook.</p>
<p>One great thing about Siri is that it is always a button press away. Even if you are in another app, you can simply hold down the home button and Siri will pop up. This is great if you need to check out how your favorite team is doing but don&#8217;t want to quit what you are doing.</p>
<p>How to Use Siri on the iPad</p>
<p><strong>Google Now</strong></p>
<p>Google has taken a different approach to the personal assistant. Already armed with Google voice search, a feature within the Google Search app, Google Now doesn&#8217;t concentrate on fetching information on command. Rather, it attempts to anticipate your needs and bring up information before you ask for it.</p>
<p>In the morning, Google Now will display the traffic for your commute to work. It may also show you local news and sports scores for your favorite teams, though to get all of this to work you will need to turn on location services. You&#8217;ll also need to have web history turned on, which is enabled by default, and be signed in to Google when you perform searches (or search within the Google Search app). You see, Google needs to know more about you to anticipate your needs, so if you&#8217;ve turned off web history or you aren&#8217;t signed into your Google account all the time, it may not be quite as helpful.</p>
<p>Google Now also depends more on using Google&#8217;s apps, such as the Calendar or Gmail. If you don&#8217;t use many Google apps, Google Now won&#8217;t be quite as useful.</p>
<p>Get More Information About Google Now</p>
<p><strong>Siri vs Google Now: And the Winner Is&#8230;</strong></p>
<p><strong>Both.</strong></p>
<p>Siri is great for answering questions, setting reminders, hands-free calling and finding nearby restaurants or sports scores on command. This makes it more of an active personal assistant.</p>
<p>Google Now is great for having information ready when you launch it, such as showing transit information when you step on a subway platform. It&#8217;s also better if you use a lot of Google apps and services.</p>
<p>There&#8217;s really no reason why you can&#8217;t simply use both.</p>
<p>Source: <a href="http://ipad.about.com" target="_blank">http://ipad.about.com</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2013/06/28/google-now-vs-siri-the-results-speak-for-themselves/">Google Now vs. Siri: The results speak for themselves</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
		<item>
		<title>Google Now &#8211; comes closer, shares TV show info &#038; Discount Coupons</title>
		<link>https://www.asalta.com/2013/06/28/google-now-comes-closer-shares-tv-show-info-discount-coupons/</link>
		<comments>https://www.asalta.com/2013/06/28/google-now-comes-closer-shares-tv-show-info-discount-coupons/#respond</comments>
		<pubDate>Fri, 28 Jun 2013 12:56:58 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Discount Coupons]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Now]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Tv shows]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=124</guid>
		<description><![CDATA[<p>Google Now &#8211; comes closer, shares TV show info &#038; Discount Coupons Google Now &#8211; comes closer, shares TV show info &#38; Discount Coupons The Android version of Google&#8217;s notification system can reveal background about TV you&#8217;re watching, and Google &#8230; <a href="https://www.asalta.com/2013/06/28/google-now-comes-closer-shares-tv-show-info-discount-coupons/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2013/06/28/google-now-comes-closer-shares-tv-show-info-discount-coupons/">Google Now &#8211; comes closer, shares TV show info &#038; Discount Coupons</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">Google Now &#8211; comes closer, shares TV show info &#038; Discount Coupons</h4>
<p><strong>Google Now &#8211; comes closer, shares TV show info &amp; Discount Coupons</strong></p>
<p>The Android version of Google&#8217;s notification system can reveal background about TV you&#8217;re watching, and Google is wiring Now up to Chrome, too.</p>
<p><iframe width="560" height="315" src="//www.youtube.com/embed/KoyUt6N0Mak" frameborder="0" allowfullscreen></iframe></p>
<p>Chrome prompts users to ask if they want to receive Google Now updates through their browser. On a Mac, the prompt is through a menu-bar icon; on Windows, through a status bar icon.</p>
<p>Google Now notifications are expanding from Android to Chrome, and now the service can show information on TV shows you&#8217;re watching and sales offers you&#8217;ve signaled interest in.</p>
<p style="text-align: center;">Chrome and Chrome OS have had a flag that lets people enable Google Now for weeks, but it hasn&#8217;t been connected to an actual Google server. But a notification now appears that asks, &#8220;Enable Google Now Cards &#8212; Would you like to be shown Google Now cards?&#8221;</p>
<p style="text-align: center;"><a href="http://localhost/asaltaold.com/wp-content/uploads/2013/06/Google-Now-Chrome.png"><img class="size-medium wp-image-861 aligncenter" title="Google-Now-Chrome" src="http://localhost/asaltaold.com/wp-content/uploads/2013/06/Google-Now-Chrome-300x180.png" alt="" width="300" height="180" /></a><br />
On Windows, Chrome lets you configure the list of apps you want to let use the notifications service.<br />
(Credit: screenshot by Stephen Shankland/CNET)</p>
<p>I got the prompt to enable Google Now for Chrome through a menu bar item on OS X 10.8 and a status bar item on Windows 8. Though it&#8217;s not yet clear if notifications are actually active, the fact that Chrome is asking people to enable the service shows Google is making steady progress toward that goal.</p>
<p>On Windows, there&#8217;s also a control panel for setting which Web apps and extensions are permitted to send me notifications. Along with Google Now, options on my machine include Google+ Photos, Google Documents, Google Drive, Google Calendar, Gmail, Tweetdeck, Amazon Cloud Reader, and The New York Times.</p>
<p>The Chrome expansion means many more people could get access to the notification technology. Google Now is designed to prompt people to find information before they actively ask for it &#8212; for example, navigation instructions for a location they searched for on Google Maps or sports scores for a game.</p>
<p>Google Now is an ambitious project that holds the potential to change Google from a company that reacts to what people search for into one that actively anticipates what they need or want. It&#8217;s well on its way to becoming the interface for a digital assistant &#8212; at least for people who have lots of personal data stored in Gmail messages, Google Calendar appointments, address book entries, Google Maps saved map locations, and other Google services.</p>
<p>On the flip side, there&#8217;s a risk that for a lot of people, notifications on PCs and mobile devices could become just another overloaded communication channel. The more often we&#8217;re pestered by buzzing phones and pop-up alerts, the less attention we pay to them and the more likely it is that high-priority updates will be overlooked amid the noise. So it&#8217;s good that Google offers Chrome users a way to permit or deny notifications from Web apps and on Android to enable or disable various Google Now alert channels.<br />
Google is steadily adding new notification channels to Google Now, and Wednesday night it announced two more for the Google Search for Android app: TV and Google Offers. Google described the features thus:<br />
TV Cards: If you have an internet-connected TV, Google Now can help unlock more information about what you&#8217;re watching. Just connect your Android device to the same network that your TV is on and tap &#8220;Listen for a TV show&#8221; in Google Now. We will show you information, like where you&#8217;ve seen an actor in the cast before, or more information about the people mentioned in the show. So if you were watching Nik Wallenda cross the Grand Canyon this weekend, with Google Now, you could learn that the &#8220;King of the Wire&#8221; in fact holds seven Guinness World Records, including highest bike ride on a high-wire.</p>
<p>Google Offers: Now you can get reminders for your saved offers when you&#8217;re near the store &#8212; right when you need it. Google Now will pull up the offer so you can use it quickly and easily.</p>
<p>Google Offers is a service that lets people sign up for discounts from retailers. The Google Offers app for Android and iOS already could be used to alert people when they got near a store for which they&#8217;d signed up for an offer.</p>
<p>To use Google Now in Chrome, you have to open the &#8220;about:flags&#8221; Web page and enable the feature then restart the browser.</p>
<div id="attachment_862" style="width: 310px" class="wp-caption aligncenter"><a href="http://localhost/asaltaold.com/wp-content/uploads/2013/06/Google-Now-Android_610x343.png"><img class="size-medium wp-image-862" title="Google-Now-Android_610x343" src="http://localhost/asaltaold.com/wp-content/uploads/2013/06/Google-Now-Android_610x343-300x168.png" alt="Google-Now-Android" width="300" height="168" /></a><p class="wp-caption-text">Google-Now-Android</p></div>
<p>Google Now cards, such as these stock prices, appear underneath the search box on Android, accessed by swiping up from the bottom of the screen.</p>
<p>News source: <a href="http://news.cnet.com" target="_blank">http://news.cnet.com</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2013/06/28/google-now-comes-closer-shares-tv-show-info-discount-coupons/">Google Now &#8211; comes closer, shares TV show info &#038; Discount Coupons</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.asalta.com/2013/06/28/google-now-comes-closer-shares-tv-show-info-discount-coupons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Big Accounts</title>
		<link>https://www.asalta.com/2010/11/12/new-big-accounts/</link>
		<comments>https://www.asalta.com/2010/11/12/new-big-accounts/#respond</comments>
		<pubDate>Fri, 12 Nov 2010 12:36:29 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[At Asalta]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[Dell]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=122</guid>
		<description><![CDATA[<p>New Big Accounts October and November 2010 has been an good hunting months for Asalta Tech. In October Asalta Tech become listed in preferred vendor list of CISCO. In early November DELL Systems Singapore has listed Asalta in its preferred &#8230; <a href="https://www.asalta.com/2010/11/12/new-big-accounts/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2010/11/12/new-big-accounts/">New Big Accounts</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">New Big Accounts</h4>
<p>October and November 2010 has been an good hunting months for Asalta Tech. </p>
<p>In October Asalta Tech become listed in preferred vendor list of CISCO. In early November DELL Systems Singapore has listed Asalta in its preferred vendors list. These two accounts has been major face lift having just completed the second anniversary of being in business. </p>
<p>Among these two major clients Asalta Tech has also won few other medium sized clients. So the future years 2010 and 2011 looks at an brighter and bigger for Asalta Tech.</p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2010/11/12/new-big-accounts/">New Big Accounts</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.asalta.com/2010/11/12/new-big-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday Asalta</title>
		<link>https://www.asalta.com/2010/10/08/happy-birthday-asalta/</link>
		<pubDate>Fri, 08 Oct 2010 12:24:11 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[At Asalta]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=120</guid>
		<description><![CDATA[<p>Happy Birthday Asalta On the day of grand opening of Beijing Olympics 2008, in 8 of October 2008 (08-08-08) Asalta was officially registered in Singapore. In 2009 Asalta become Asalta Technologies Pte Ltd with over just 5 staffs. Today in &#8230; <a href="https://www.asalta.com/2010/10/08/happy-birthday-asalta/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2010/10/08/happy-birthday-asalta/">Happy Birthday Asalta</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">Happy Birthday Asalta</h4>
<p>On the day of grand opening of Beijing Olympics 2008, in 8 of October 2008 (08-08-08) Asalta was officially registered in Singapore. </p>
<p> In 2009 Asalta become Asalta Technologies Pte Ltd with over just 5 staffs. Today in two years time Asalta Technologies has slowly and steadily grown from 5 member team to 13 member team.</p>
<p>With some great new birthday wishes Asalta Technologies is looking to expand itself to the west!</p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2010/10/08/happy-birthday-asalta/">Happy Birthday Asalta</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
		<item>
		<title>IRAHS Symposium &#8211; 2010</title>
		<link>https://www.asalta.com/2010/04/28/irahs-symposium-2010/</link>
		<pubDate>Wed, 28 Apr 2010 12:09:11 +0000</pubDate>
		<dc:creator><![CDATA[arun]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Asalta Technologies]]></category>
		<category><![CDATA[Co-ordinating Minister for National Security]]></category>
		<category><![CDATA[IRAHSS]]></category>
		<category><![CDATA[S. JAYAKUMAR]]></category>
		<category><![CDATA[Senior Minister]]></category>
		<category><![CDATA[Symposium]]></category>

		<guid isPermaLink="false">http://localhost/asaltaold.com//?p=118</guid>
		<description><![CDATA[<p>IRAHS Symposium &#8211; 2010 We had an 3 months of intense work into building our ESRA (Environmental Scanning and Risk Assessment) v1.0. It was time to showcase ESRA for International Risk Assessment And Horizon Scanning Symposium &#8211; IRAHSS10 . The &#8230; <a href="https://www.asalta.com/2010/04/28/irahs-symposium-2010/">Read More</a></p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2010/04/28/irahs-symposium-2010/">IRAHS Symposium &#8211; 2010</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4 class="post-title" style="color:#428bca">IRAHS Symposium &#8211; 2010</h4>
<p>We had an 3 months of intense work into building our ESRA (Environmental Scanning and Risk Assessment) v1.0. It was time to showcase ESRA for International Risk Assessment And Horizon Scanning Symposium &#8211; IRAHSS10 . The 3rd International Risk Assessment and Horizon Scanning Symposium was held from 15 to 16 March 2010 at the Raffles City Convention Center in Singapore.</p>
<p>Our scanning software v1.0 was finally ready with its new powerful engine. A new fresh look is being given to give the users an wonderful experience. Asalta Technologies was one of the 8 companies showcasing its state-of-the-art scanning and analysis software at the symposium, IRAHSS10.</p>
<p>Visit more about the symposium at IRAHSS website: <a href="http://app.hsc.gov.sg">http://app.hsc.gov.sg</a></p>
<p>The symposium was visited by Prof S. JAYAKUMAR, Senior Minister and Co-ordinating Minister for National Security, And many international dignitaries.</p>
<p>Here are some pictures of Asalta&#8217;s booth at the symposium:</p>
<p>[nggallery id=1]</p>
<p>The post <a rel="nofollow" href="https://www.asalta.com/2010/04/28/irahs-symposium-2010/">IRAHS Symposium &#8211; 2010</a> appeared first on <a rel="nofollow" href="https://www.asalta.com">Asalta - An End-to-End Business Automation Software</a>.</p>
]]></content:encoded>
			</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: https://www.w3-edge.com/products/

Object Cache debug info:
Engine:             disk
Caching:            enabled
Total calls:        1639
Cache hits:         1477
Cache misses:       162
Total time:         0.0112
W3TC Object Cache info:
    # |  Op   |         Returned          | Data size (b) | Query time (s) |           Group | ID
    1 |  get  |   from persistent cache   |             4 |         0.0002 |         default | is_blog_installed
    2 |  get  |   from persistent cache   |            69 |         0.0001 |         options | notoptions
    3 |  get  |   from persistent cache   |       1088098 |         0.0009 |         options | alloptions
    4 |  get  |       not in cache        |               |              0 |    site-options | 0:notoptions
    5 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
    6 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
    7 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
    8 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
    9 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   10 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   11 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   12 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   13 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   14 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   15 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   16 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   17 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   18 |  get  |   from persistent cache   |           943 |              0 |         options | uninstall_plugins
   19 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   20 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   21 |  get  |    from in-call cache     |           943 |              0 |         options | uninstall_plugins
   22 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   23 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   24 |  get  |    from in-call cache     |           943 |              0 |         options | uninstall_plugins
   25 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   26 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   27 |  get  |    from in-call cache     |           943 |              0 |         options | uninstall_plugins
   28 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   29 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   30 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   31 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   32 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   33 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   34 |  get  |    from in-call cache     |               |              0 |    site-options | 0:notoptions
   35 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   36 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   37 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   38 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   39 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   40 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   41 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   42 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   43 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   44 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   45 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   46 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   47 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   48 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   49 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   50 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   51 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   52 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   53 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   54 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   55 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   56 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   57 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   58 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   59 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   60 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   61 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   62 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   63 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   64 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   65 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   66 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   67 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   68 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   69 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   70 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   71 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   72 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   73 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   74 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   75 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   76 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   77 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   78 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   79 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   80 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   81 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   82 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   83 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   84 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   85 |  get  |       not in cache        |               |              0 |         plugins | plugins
   86 |  set  |         discarded         |           564 |              0 |         plugins | plugins
   87 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   88 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   89 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   90 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   91 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   92 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   93 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   94 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   95 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   96 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   97 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
   98 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
   99 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  100 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  101 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  102 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  103 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  104 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  105 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  106 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  107 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  108 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  109 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  110 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  111 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  112 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  113 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  114 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  115 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  116 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  117 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  118 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  119 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  120 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  121 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  122 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  123 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  124 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  125 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  126 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  127 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  128 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  129 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  130 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  131 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  132 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  133 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  134 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  135 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  136 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  137 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  138 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  139 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  140 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  141 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  142 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  143 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  144 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  145 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  146 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  147 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  148 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  149 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  150 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  151 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  152 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  153 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  154 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  155 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  156 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  157 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  158 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  159 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  160 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  161 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  162 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  163 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  164 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  165 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  166 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  167 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  168 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  169 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  170 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  171 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  172 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  173 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  174 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  175 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  176 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  177 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  178 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  179 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  180 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  181 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  182 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  183 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  184 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  185 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  186 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  187 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  188 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  189 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  190 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  191 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  192 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  193 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  194 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  195 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  196 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  197 |  get  |    from in-call cache     |             4 |              0 |         default | is_blog_installed
  198 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  199 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  200 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  201 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  202 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  203 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  204 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  205 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  206 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  207 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  208 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  209 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  210 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  211 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  212 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  213 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  214 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  215 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  216 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  217 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  218 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  219 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  220 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  221 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  222 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  223 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  224 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  225 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  226 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  227 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  228 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  229 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  230 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  231 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  232 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  233 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  234 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  235 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  236 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  237 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  238 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  239 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  240 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  241 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  242 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  243 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  244 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  245 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  246 |  get  |    from in-call cache     |            69 |              0 |         options | notoptions
  247 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  248 |  get  |       not in cache        |               |              0 |         options | cptui_taxonomies
  249 |  set  |       put in cache        |            97 |              0 |         options | notoptions
  250 |  get  |    from in-call cache     |            97 |              0 |         options | notoptions
  251 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  252 |  get  |    from in-call cache     |            97 |              0 |         options | notoptions
  253 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  254 |  get  |    from in-call cache     |            97 |              0 |         options | notoptions
  255 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  256 |  get  |    from in-call cache     |            97 |              0 |         options | notoptions
  257 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  258 |  get  |    from in-call cache     |            97 |              0 |         options | notoptions
  259 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  260 |  get  |       not in cache        |               |              0 |         options | akismet_comment_nonce
  261 |  set  |       put in cache        |           130 |              0 |         options | notoptions
  262 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  263 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  264 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  265 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  266 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  267 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  268 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  269 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  270 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  271 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  272 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  273 |  get  |     from db fallback      |          1564 |         0.0004 |       transient | frm_options
  274 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  275 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  276 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  277 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  278 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  279 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  280 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  281 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  282 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  283 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  284 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  285 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  286 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  287 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  288 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  289 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  290 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  291 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  292 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  293 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  294 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  295 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  296 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  297 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  298 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  299 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  300 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  301 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  302 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  303 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  304 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  305 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  306 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  307 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  308 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  309 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  310 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  311 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  312 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  313 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  314 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  315 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  316 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  317 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  318 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  319 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  320 |  get  |       not in cache        |               |              0 |        timeinfo | lastpostmodified:gmt
  321 |  set  |       put in cache        |            27 |              0 |        timeinfo | lastpostmodified:gmt
  322 |  get  |       not in cache        |               |              0 |        timeinfo | lastpostdate:gmt
  323 |  set  |       put in cache        |            27 |              0 |        timeinfo | lastpostdate:gmt
  324 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  325 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  326 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  327 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  328 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  329 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  330 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  331 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  332 |  get  |       not in cache        |               |              0 |           terms | 39
  333 |  set  |       put in cache        |           243 |              0 |           terms | 39
  334 |  get  |       not in cache        |               |              0 |           posts | 137
  335 |  get  |       not in cache        |               |              0 |           posts | 135
  336 |  get  |       not in cache        |               |              0 |           posts | 133
  337 |  get  |       not in cache        |               |              0 |           posts | 130
  338 |  get  |       not in cache        |               |              0 |           posts | 128
  339 |  get  |       not in cache        |               |              0 |           posts | 126
  340 |  get  |       not in cache        |               |              0 |           posts | 2333
  341 |  get  |       not in cache        |               |              0 |           posts | 2332
  342 |  get  |       not in cache        |               |              0 |           posts | 2331
  343 |  get  |       not in cache        |               |              0 |           posts | 2330
  344 |  get  |    from in-call cache     |               |              0 |           posts | 126
  345 |  set  |       put in cache        |          4041 |              0 |           posts | 126
  346 |  get  |    from in-call cache     |               |              0 |           posts | 128
  347 |  set  |       put in cache        |         11506 |              0 |           posts | 128
  348 |  get  |    from in-call cache     |               |              0 |           posts | 130
  349 |  set  |       put in cache        |         34337 |              0 |           posts | 130
  350 |  get  |    from in-call cache     |               |              0 |           posts | 133
  351 |  set  |       put in cache        |         20456 |              0 |           posts | 133
  352 |  get  |    from in-call cache     |               |              0 |           posts | 135
  353 |  set  |       put in cache        |         21879 |              0 |           posts | 135
  354 |  get  |    from in-call cache     |               |              0 |           posts | 137
  355 |  set  |       put in cache        |         16814 |              0 |           posts | 137
  356 |  get  |    from in-call cache     |               |              0 |           posts | 2330
  357 |  set  |       put in cache        |          1888 |              0 |           posts | 2330
  358 |  get  |    from in-call cache     |               |              0 |           posts | 2331
  359 |  set  |       put in cache        |          1303 |              0 |           posts | 2331
  360 |  get  |    from in-call cache     |               |              0 |           posts | 2332
  361 |  set  |       put in cache        |          1387 |              0 |           posts | 2332
  362 |  get  |    from in-call cache     |               |              0 |           posts | 2333
  363 |  set  |       put in cache        |          6426 |              0 |           posts | 2333
  364 |  get  |       not in cache        |               |              0 | category_relationships | 126
  365 |  get  |       not in cache        |               |              0 | category_relationships | 128
  366 |  get  |       not in cache        |               |              0 | category_relationships | 130
  367 |  get  |       not in cache        |               |              0 | category_relationships | 133
  368 |  get  |       not in cache        |               |              0 | category_relationships | 135
  369 |  get  |       not in cache        |               |              0 | category_relationships | 137
  370 |  get  |       not in cache        |               |              0 | category_relationships | 2330
  371 |  get  |       not in cache        |               |              0 | category_relationships | 2331
  372 |  get  |       not in cache        |               |              0 | category_relationships | 2332
  373 |  get  |       not in cache        |               |              0 | category_relationships | 2333
  374 |  get  |       not in cache        |               |              0 |           terms | 49
  375 |  set  |       put in cache        |           252 |              0 |           terms | 49
  376 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
  377 |  get  |       not in cache        |               |              0 |           terms | 58
  378 |  set  |       put in cache        |           248 |              0 |           terms | 58
  379 |  get  |       not in cache        |               |              0 |           terms | 50
  380 |  set  |       put in cache        |           246 |              0 |           terms | 50
  381 |  get  |       not in cache        |               |              0 |           terms | 35
  382 |  set  |       put in cache        |           278 |              0 |           terms | 35
  383 |  get  |       not in cache        |               |              0 |           terms | 46
  384 |  set  |       put in cache        |           256 |              0 |           terms | 46
  385 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
  386 |  get  |       not in cache        |               |              0 |           terms | 60
  387 |  set  |       put in cache        |           264 |              0 |           terms | 60
  388 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  389 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  390 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  391 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  392 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  393 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  394 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  395 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  396 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  397 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  398 |  get  |       not in cache        |               |              0 |           terms | 51
  399 |  set  |       put in cache        |           250 |              0 |           terms | 51
  400 |  get  |       not in cache        |               |              0 |           terms | 47
  401 |  set  |       put in cache        |           248 |              0 |           terms | 47
  402 |  get  |       not in cache        |               |              0 |           terms | 40
  403 |  set  |       put in cache        |           328 |              0 |           terms | 40
  404 |  get  |       not in cache        |               |              0 |           terms | 48
  405 |  set  |       put in cache        |           246 |              0 |           terms | 48
  406 |  get  |       not in cache        |               |              0 |           terms | 52
  407 |  set  |       put in cache        |           272 |              0 |           terms | 52
  408 |  get  |       not in cache        |               |              0 |           terms | 41
  409 |  set  |       put in cache        |           250 |              0 |           terms | 41
  410 |  get  |       not in cache        |               |              0 |           terms | 64
  411 |  set  |       put in cache        |           244 |              0 |           terms | 64
  412 |  get  |       not in cache        |               |              0 |           terms | 53
  413 |  set  |       put in cache        |           250 |              0 |           terms | 53
  414 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
  415 |  get  |       not in cache        |               |              0 |           terms | 54
  416 |  set  |       put in cache        |           260 |              0 |           terms | 54
  417 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
  418 |  get  |       not in cache        |               |              0 |           terms | 70
  419 |  set  |       put in cache        |           266 |              0 |           terms | 70
  420 |  get  |       not in cache        |               |              0 |           terms | 71
  421 |  set  |       put in cache        |           292 |              0 |           terms | 71
  422 |  get  |       not in cache        |               |              0 |           terms | 61
  423 |  set  |       put in cache        |           246 |              0 |           terms | 61
  424 |  get  |       not in cache        |               |              0 |           terms | 55
  425 |  set  |       put in cache        |           250 |              0 |           terms | 55
  426 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  427 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  428 |  get  |       not in cache        |               |              0 |           terms | 62
  429 |  set  |       put in cache        |           254 |              0 |           terms | 62
  430 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
  431 |  get  |       not in cache        |               |              0 |           terms | 42
  432 |  set  |       put in cache        |           250 |              0 |           terms | 42
  433 |  get  |       not in cache        |               |              0 |           terms | 56
  434 |  set  |       put in cache        |           246 |              0 |           terms | 56
  435 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  436 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  437 |  get  |       not in cache        |               |              0 |           terms | 65
  438 |  set  |       put in cache        |           280 |              0 |           terms | 65
  439 |  get  |       not in cache        |               |              0 |           terms | 72
  440 |  set  |       put in cache        |           244 |              0 |           terms | 72
  441 |  get  |       not in cache        |               |              0 |           terms | 66
  442 |  set  |       put in cache        |           248 |              0 |           terms | 66
  443 |  get  |       not in cache        |               |              0 |           terms | 43
  444 |  set  |       put in cache        |           263 |              0 |           terms | 43
  445 |  get  |       not in cache        |               |              0 |           terms | 67
  446 |  set  |       put in cache        |           254 |              0 |           terms | 67
  447 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  448 |  get  |       not in cache        |               |              0 |           terms | 44
  449 |  set  |       put in cache        |           270 |              0 |           terms | 44
  450 |  get  |       not in cache        |               |              0 |           terms | 59
  451 |  set  |       put in cache        |           246 |              0 |           terms | 59
  452 |  get  |       not in cache        |               |              0 |           terms | 73
  453 |  set  |       put in cache        |           252 |              0 |           terms | 73
  454 |  get  |       not in cache        |               |              0 |           terms | 45
  455 |  set  |       put in cache        |           256 |              0 |           terms | 45
  456 |  get  |       not in cache        |               |              0 |           terms | 63
  457 |  set  |       put in cache        |           246 |              0 |           terms | 63
  458 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  459 |  get  |       not in cache        |               |              0 |           terms | 68
  460 |  set  |       put in cache        |           248 |              0 |           terms | 68
  461 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  462 |  get  |       not in cache        |               |              0 |           terms | 57
  463 |  set  |       put in cache        |           254 |              0 |           terms | 57
  464 |  get  |       not in cache        |               |              0 |           terms | 74
  465 |  set  |       put in cache        |           270 |              0 |           terms | 74
  466 |  get  |       not in cache        |               |              0 |           terms | 69
  467 |  set  |       put in cache        |           256 |              0 |           terms | 69
  468 |  get  |       not in cache        |               |              0 | post_tag_relationships | 126
  469 |  set  |       put in cache        |            51 |              0 | post_tag_relationships | 126
  470 |  get  |    from in-call cache     |               |              0 | category_relationships | 126
  471 |  set  |       put in cache        |            24 |              0 | category_relationships | 126
  472 |  get  |       not in cache        |               |              0 | post_format_relationships | 126
  473 |  set  |       put in cache        |               |              0 | post_format_relationships | 126
  474 |  get  |       not in cache        |               |              0 | post_tag_relationships | 2333
  475 |  set  |       put in cache        |            78 |              0 | post_tag_relationships | 2333
  476 |  get  |    from in-call cache     |               |              0 | category_relationships | 2333
  477 |  set  |       put in cache        |            24 |              0 | category_relationships | 2333
  478 |  get  |       not in cache        |               |              0 | post_format_relationships | 2333
  479 |  set  |       put in cache        |               |              0 | post_format_relationships | 2333
  480 |  get  |       not in cache        |               |              0 | post_tag_relationships | 2330
  481 |  set  |       put in cache        |            60 |              0 | post_tag_relationships | 2330
  482 |  get  |    from in-call cache     |               |              0 | category_relationships | 2330
  483 |  set  |       put in cache        |            24 |              0 | category_relationships | 2330
  484 |  get  |       not in cache        |               |              0 | post_format_relationships | 2330
  485 |  set  |       put in cache        |               |              0 | post_format_relationships | 2330
  486 |  get  |    from in-call cache     |               |              0 | category_relationships | 2331
  487 |  set  |       put in cache        |            24 |              0 | category_relationships | 2331
  488 |  get  |       not in cache        |               |              0 | post_tag_relationships | 2331
  489 |  set  |       put in cache        |               |              0 | post_tag_relationships | 2331
  490 |  get  |       not in cache        |               |              0 | post_format_relationships | 2331
  491 |  set  |       put in cache        |               |              0 | post_format_relationships | 2331
  492 |  get  |    from in-call cache     |               |              0 | category_relationships | 2332
  493 |  set  |       put in cache        |            24 |              0 | category_relationships | 2332
  494 |  get  |       not in cache        |               |              0 | post_tag_relationships | 2332
  495 |  set  |       put in cache        |            24 |              0 | post_tag_relationships | 2332
  496 |  get  |       not in cache        |               |              0 | post_format_relationships | 2332
  497 |  set  |       put in cache        |               |              0 | post_format_relationships | 2332
  498 |  get  |       not in cache        |               |              0 | post_tag_relationships | 130
  499 |  set  |       put in cache        |            33 |              0 | post_tag_relationships | 130
  500 |  get  |    from in-call cache     |               |              0 | category_relationships | 130
  501 |  set  |       put in cache        |            24 |              0 | category_relationships | 130
  502 |  get  |       not in cache        |               |              0 | post_format_relationships | 130
  503 |  set  |       put in cache        |               |              0 | post_format_relationships | 130
  504 |  get  |    from in-call cache     |               |              0 | category_relationships | 128
  505 |  set  |       put in cache        |            24 |              0 | category_relationships | 128
  506 |  get  |       not in cache        |               |              0 | post_tag_relationships | 128
  507 |  set  |       put in cache        |               |              0 | post_tag_relationships | 128
  508 |  get  |       not in cache        |               |              0 | post_format_relationships | 128
  509 |  set  |       put in cache        |               |              0 | post_format_relationships | 128
  510 |  get  |    from in-call cache     |               |              0 | category_relationships | 133
  511 |  set  |       put in cache        |            15 |              0 | category_relationships | 133
  512 |  get  |       not in cache        |               |              0 | post_tag_relationships | 133
  513 |  set  |       put in cache        |            33 |              0 | post_tag_relationships | 133
  514 |  get  |       not in cache        |               |              0 | post_format_relationships | 133
  515 |  set  |       put in cache        |               |              0 | post_format_relationships | 133
  516 |  get  |    from in-call cache     |               |              0 | category_relationships | 135
  517 |  set  |       put in cache        |            24 |              0 | category_relationships | 135
  518 |  get  |       not in cache        |               |              0 | post_tag_relationships | 135
  519 |  set  |       put in cache        |            60 |              0 | post_tag_relationships | 135
  520 |  get  |       not in cache        |               |              0 | post_format_relationships | 135
  521 |  set  |       put in cache        |               |              0 | post_format_relationships | 135
  522 |  get  |    from in-call cache     |               |              0 | category_relationships | 137
  523 |  set  |       put in cache        |            24 |              0 | category_relationships | 137
  524 |  get  |       not in cache        |               |              0 | post_tag_relationships | 137
  525 |  set  |       put in cache        |            60 |              0 | post_tag_relationships | 137
  526 |  get  |       not in cache        |               |              0 | post_format_relationships | 137
  527 |  set  |       put in cache        |               |              0 | post_format_relationships | 137
  528 |  get  |       not in cache        |               |              0 |       post_meta | 126
  529 |  get  |       not in cache        |               |              0 |       post_meta | 128
  530 |  get  |       not in cache        |               |              0 |       post_meta | 130
  531 |  get  |       not in cache        |               |              0 |       post_meta | 133
  532 |  get  |       not in cache        |               |              0 |       post_meta | 135
  533 |  get  |       not in cache        |               |              0 |       post_meta | 137
  534 |  get  |       not in cache        |               |              0 |       post_meta | 2330
  535 |  get  |       not in cache        |               |              0 |       post_meta | 2331
  536 |  get  |       not in cache        |               |              0 |       post_meta | 2332
  537 |  get  |       not in cache        |               |              0 |       post_meta | 2333
  538 |  get  |    from in-call cache     |               |              0 |       post_meta | 126
  539 |  set  |       put in cache        |           265 |              0 |       post_meta | 126
  540 |  get  |    from in-call cache     |               |              0 |       post_meta | 128
  541 |  set  |       put in cache        |           319 |              0 |       post_meta | 128
  542 |  get  |    from in-call cache     |               |              0 |       post_meta | 130
  543 |  set  |       put in cache        |           265 |              0 |       post_meta | 130
  544 |  get  |    from in-call cache     |               |              0 |       post_meta | 133
  545 |  set  |       put in cache        |           265 |              0 |       post_meta | 133
  546 |  get  |    from in-call cache     |               |              0 |       post_meta | 135
  547 |  set  |       put in cache        |          2116 |              0 |       post_meta | 135
  548 |  get  |    from in-call cache     |               |              0 |       post_meta | 137
  549 |  set  |       put in cache        |           361 |              0 |       post_meta | 137
  550 |  get  |    from in-call cache     |               |              0 |       post_meta | 2330
  551 |  set  |       put in cache        |           265 |              0 |       post_meta | 2330
  552 |  get  |    from in-call cache     |               |              0 |       post_meta | 2331
  553 |  set  |       put in cache        |           265 |              0 |       post_meta | 2331
  554 |  get  |    from in-call cache     |               |              0 |       post_meta | 2332
  555 |  set  |       put in cache        |           265 |              0 |       post_meta | 2332
  556 |  get  |    from in-call cache     |               |              0 |       post_meta | 2333
  557 |  set  |       put in cache        |           265 |              0 |       post_meta | 2333
  558 |  get  |    from in-call cache     |         16814 |              0 |           posts | 137
  559 |  get  |    from in-call cache     |         21879 |              0 |           posts | 135
  560 |  get  |    from in-call cache     |         20456 |              0 |           posts | 133
  561 |  get  |    from in-call cache     |         34337 |              0 |           posts | 130
  562 |  get  |    from in-call cache     |         11506 |              0 |           posts | 128
  563 |  get  |    from in-call cache     |          4041 |              0 |           posts | 126
  564 |  get  |    from in-call cache     |          6426 |              0 |           posts | 2333
  565 |  get  |    from in-call cache     |          1387 |              0 |           posts | 2332
  566 |  get  |    from in-call cache     |          1303 |              0 |           posts | 2331
  567 |  get  |    from in-call cache     |          1888 |              0 |           posts | 2330
  568 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  569 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  570 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 137
  571 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  572 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  573 |  get  |    from in-call cache     |           243 |              0 |           terms | 39
  574 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  575 |  get  |    from in-call cache     |            60 |              0 | post_tag_relationships | 137
  576 |  get  |    from in-call cache     |           266 |              0 |           terms | 70
  577 |  get  |    from in-call cache     |           292 |              0 |           terms | 71
  578 |  get  |    from in-call cache     |           244 |              0 |           terms | 72
  579 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  580 |  get  |    from in-call cache     |           252 |              0 |           terms | 73
  581 |  get  |    from in-call cache     |           270 |              0 |           terms | 74
  582 |  get  |    from in-call cache     |           266 |              0 |           terms | 70
  583 |  get  |    from in-call cache     |           292 |              0 |           terms | 71
  584 |  get  |    from in-call cache     |           244 |              0 |           terms | 72
  585 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  586 |  get  |    from in-call cache     |           252 |              0 |           terms | 73
  587 |  get  |    from in-call cache     |           270 |              0 |           terms | 74
  588 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 137
  589 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 135
  590 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  591 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  592 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  593 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  594 |  get  |    from in-call cache     |            60 |              0 | post_tag_relationships | 135
  595 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
  596 |  get  |    from in-call cache     |           280 |              0 |           terms | 65
  597 |  get  |    from in-call cache     |           248 |              0 |           terms | 66
  598 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  599 |  get  |    from in-call cache     |           248 |              0 |           terms | 68
  600 |  get  |    from in-call cache     |           256 |              0 |           terms | 69
  601 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
  602 |  get  |    from in-call cache     |           280 |              0 |           terms | 65
  603 |  get  |    from in-call cache     |           248 |              0 |           terms | 66
  604 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  605 |  get  |    from in-call cache     |           248 |              0 |           terms | 68
  606 |  get  |    from in-call cache     |           256 |              0 |           terms | 69
  607 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 135
  608 |  get  |    from in-call cache     |            15 |              0 | category_relationships | 133
  609 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  610 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  611 |  get  |    from in-call cache     |            33 |              0 | post_tag_relationships | 133
  612 |  get  |    from in-call cache     |           244 |              0 |           terms | 64
  613 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  614 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
  615 |  get  |    from in-call cache     |           244 |              0 |           terms | 64
  616 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  617 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
  618 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 133
  619 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 130
  620 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  621 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  622 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  623 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  624 |  get  |    from in-call cache     |            33 |              0 | post_tag_relationships | 130
  625 |  get  |    from in-call cache     |           264 |              0 |           terms | 60
  626 |  get  |    from in-call cache     |           246 |              0 |           terms | 61
  627 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
  628 |  get  |    from in-call cache     |           264 |              0 |           terms | 60
  629 |  get  |    from in-call cache     |           246 |              0 |           terms | 61
  630 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
  631 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 130
  632 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 128
  633 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  634 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  635 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  636 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  637 |  get  |    from in-call cache     |               |              0 | post_tag_relationships | 128
  638 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 128
  639 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 126
  640 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  641 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  642 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  643 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  644 |  get  |    from in-call cache     |            51 |              0 | post_tag_relationships | 126
  645 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
  646 |  get  |    from in-call cache     |           248 |              0 |           terms | 58
  647 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
  648 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  649 |  get  |    from in-call cache     |           246 |              0 |           terms | 59
  650 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
  651 |  get  |    from in-call cache     |           248 |              0 |           terms | 58
  652 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
  653 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  654 |  get  |    from in-call cache     |           246 |              0 |           terms | 59
  655 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 126
  656 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2333
  657 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  658 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  659 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  660 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
  661 |  get  |    from in-call cache     |            78 |              0 | post_tag_relationships | 2333
  662 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
  663 |  get  |    from in-call cache     |           246 |              0 |           terms | 50
  664 |  get  |    from in-call cache     |           250 |              0 |           terms | 51
  665 |  get  |    from in-call cache     |           272 |              0 |           terms | 52
  666 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
  667 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
  668 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  669 |  get  |    from in-call cache     |           254 |              0 |           terms | 57
  670 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
  671 |  get  |    from in-call cache     |           246 |              0 |           terms | 50
  672 |  get  |    from in-call cache     |           250 |              0 |           terms | 51
  673 |  get  |    from in-call cache     |           272 |              0 |           terms | 52
  674 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
  675 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
  676 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
  677 |  get  |    from in-call cache     |           254 |              0 |           terms | 57
  678 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 2333
  679 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2332
  680 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
  681 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  682 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
  683 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  684 |  get  |    from in-call cache     |            24 |              0 | post_tag_relationships | 2332
  685 |  get  |    from in-call cache     |           248 |              0 |           terms | 47
  686 |  get  |    from in-call cache     |           246 |              0 |           terms | 48
  687 |  get  |    from in-call cache     |           248 |              0 |           terms | 47
  688 |  get  |    from in-call cache     |           246 |              0 |           terms | 48
  689 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 2332
  690 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2331
  691 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
  692 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  693 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
  694 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  695 |  get  |    from in-call cache     |               |              0 | post_tag_relationships | 2331
  696 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 2331
  697 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2330
  698 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  699 |  get  |    from in-call cache     |           250 |              0 |           terms | 41
  700 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  701 |  get  |    from in-call cache     |           250 |              0 |           terms | 41
  702 |  get  |    from in-call cache     |            60 |              0 | post_tag_relationships | 2330
  703 |  get  |    from in-call cache     |           278 |              0 |           terms | 35
  704 |  get  |    from in-call cache     |           328 |              0 |           terms | 40
  705 |  get  |    from in-call cache     |           250 |              0 |           terms | 42
  706 |  get  |    from in-call cache     |           263 |              0 |           terms | 43
  707 |  get  |    from in-call cache     |           270 |              0 |           terms | 44
  708 |  get  |    from in-call cache     |           256 |              0 |           terms | 45
  709 |  get  |    from in-call cache     |           278 |              0 |           terms | 35
  710 |  get  |    from in-call cache     |           328 |              0 |           terms | 40
  711 |  get  |    from in-call cache     |           250 |              0 |           terms | 42
  712 |  get  |    from in-call cache     |           263 |              0 |           terms | 43
  713 |  get  |    from in-call cache     |           270 |              0 |           terms | 44
  714 |  get  |    from in-call cache     |           256 |              0 |           terms | 45
  715 |  get  |    from in-call cache     |               |              0 | post_format_relationships | 2330
  716 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  717 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  718 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  719 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  720 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  721 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  722 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  723 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  724 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  725 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  726 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  727 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  728 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  729 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  730 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  731 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  732 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  733 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  734 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  735 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  736 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  737 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  738 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  739 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  740 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  741 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  742 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  743 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  744 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  745 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  746 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  747 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  748 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  749 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  750 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  751 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  752 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  753 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  754 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  755 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  756 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  757 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  758 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  759 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  760 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  761 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  762 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  763 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  764 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  765 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  766 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  767 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  768 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  769 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  770 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  771 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  772 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  773 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  774 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  775 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  776 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  777 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  778 |  get  |    from in-call cache     |            27 |              0 |        timeinfo | lastpostmodified:gmt
  779 |  get  |    from in-call cache     |            27 |              0 |        timeinfo | lastpostdate:gmt
  780 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  781 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  782 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  783 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  784 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  785 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  786 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  787 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  788 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  789 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  790 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  791 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  792 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  793 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  794 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  795 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  796 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  797 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  798 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  799 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  800 |  get  |       not in cache        |               |         0.0001 |           users | 1
  801 |  get  |    from in-call cache     |               |              0 |           users | 1
  802 |  set  |       put in cache        |           379 |              0 |           users | 1
  803 |  get  |       not in cache        |               |              0 |      userlogins | cbssoftwares!@#
  804 |  set  |       put in cache        |             8 |              0 |      userlogins | cbssoftwares!@#
  805 |  get  |       not in cache        |               |              0 |       useremail | kumaradas@asalta.com
  806 |  set  |       put in cache        |             8 |              0 |       useremail | kumaradas@asalta.com
  807 |  get  |       not in cache        |               |              0 |       userslugs | admin
  808 |  set  |       put in cache        |             8 |              0 |       userslugs | admin
  809 |  get  |       not in cache        |               |              0 |       user_meta | 1
  810 |  get  |    from in-call cache     |               |              0 |       user_meta | 1
  811 |  get  |    from in-call cache     |               |              0 |       user_meta | 1
  812 |  set  |       put in cache        |          6647 |              0 |       user_meta | 1
  813 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  814 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  815 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  816 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  817 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 137
  818 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  819 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  820 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  821 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  822 |  get  |    from in-call cache     |            60 |              0 | post_tag_relationships | 137
  823 |  get  |    from in-call cache     |           266 |              0 |           terms | 70
  824 |  get  |    from in-call cache     |           292 |              0 |           terms | 71
  825 |  get  |    from in-call cache     |           244 |              0 |           terms | 72
  826 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  827 |  get  |    from in-call cache     |           252 |              0 |           terms | 73
  828 |  get  |    from in-call cache     |           270 |              0 |           terms | 74
  829 |  get  |    from in-call cache     |           266 |              0 |           terms | 70
  830 |  get  |    from in-call cache     |           292 |              0 |           terms | 71
  831 |  get  |    from in-call cache     |           244 |              0 |           terms | 72
  832 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  833 |  get  |    from in-call cache     |           252 |              0 |           terms | 73
  834 |  get  |    from in-call cache     |           270 |              0 |           terms | 74
  835 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  836 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  837 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  838 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  839 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  840 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  841 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  842 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  843 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  844 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  845 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  846 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  847 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  848 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  849 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  850 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  851 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  852 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  853 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  854 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  855 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  856 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  857 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  858 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  859 |  get  |    from in-call cache     |           379 |              0 |           users | 1
  860 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
  861 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  862 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  863 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  864 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  865 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  866 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  867 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  868 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  869 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  870 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  871 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  872 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  873 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  874 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  875 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  876 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  877 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  878 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  879 |  get  |    from in-call cache     |           379 |              0 |           users | 1
  880 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
  881 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  882 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  883 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  884 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  885 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  886 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  887 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  888 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  889 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  890 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  891 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  892 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  893 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  894 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  895 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  896 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  897 |  get  |    from in-call cache     |           361 |              0 |       post_meta | 137
  898 |  get  |    from in-call cache     |           379 |              0 |           users | 1
  899 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
  900 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  901 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  902 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  903 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  904 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 135
  905 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  906 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  907 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
  908 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
  909 |  get  |    from in-call cache     |            60 |              0 | post_tag_relationships | 135
  910 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
  911 |  get  |    from in-call cache     |           280 |              0 |           terms | 65
  912 |  get  |    from in-call cache     |           248 |              0 |           terms | 66
  913 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  914 |  get  |    from in-call cache     |           248 |              0 |           terms | 68
  915 |  get  |    from in-call cache     |           256 |              0 |           terms | 69
  916 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
  917 |  get  |    from in-call cache     |           280 |              0 |           terms | 65
  918 |  get  |    from in-call cache     |           248 |              0 |           terms | 66
  919 |  get  |    from in-call cache     |           254 |              0 |           terms | 67
  920 |  get  |    from in-call cache     |           248 |              0 |           terms | 68
  921 |  get  |    from in-call cache     |           256 |              0 |           terms | 69
  922 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  923 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  924 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  925 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  926 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  927 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  928 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  929 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  930 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  931 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  932 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  933 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  934 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  935 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  936 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  937 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  938 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  939 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  940 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  941 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  942 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  943 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  944 |  get  |       not in cache        |               |              0 |       post_meta | 998
  945 |  get  |    from in-call cache     |               |              0 |       post_meta | 998
  946 |  get  |    from in-call cache     |               |              0 |       post_meta | 998
  947 |  set  |       put in cache        |               |              0 |       post_meta | 998
  948 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  949 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  950 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  951 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  952 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  953 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  954 |  get  |    from in-call cache     |           379 |              0 |           users | 1
  955 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
  956 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  957 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  958 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  959 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  960 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  961 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  962 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  963 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  964 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  965 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  966 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  967 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  968 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  969 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  970 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  971 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  972 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  973 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  974 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  975 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  976 |  get  |    from in-call cache     |               |              0 |       post_meta | 998
  977 |  get  |    from in-call cache     |               |              0 |       post_meta | 998
  978 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  979 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  980 |  get  |    from in-call cache     |           379 |              0 |           users | 1
  981 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
  982 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  983 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  984 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  985 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  986 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  987 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  988 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  989 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  990 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  991 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  992 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  993 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  994 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  995 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  996 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
  997 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
  998 |  get  |    from in-call cache     |          2116 |              0 |       post_meta | 135
  999 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1000 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1001 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1002 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1003 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1004 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1005 |  get  |    from in-call cache     |            15 |              0 | category_relationships | 133
 1006 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1007 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1008 |  get  |    from in-call cache     |            33 |              0 | post_tag_relationships | 133
 1009 |  get  |    from in-call cache     |           244 |              0 |           terms | 64
 1010 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
 1011 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
 1012 |  get  |    from in-call cache     |           244 |              0 |           terms | 64
 1013 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
 1014 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
 1015 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1016 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1017 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1018 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1019 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1020 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1021 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1022 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1023 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1024 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1025 |  get  |       not in cache        |               |              0 |       post_meta | 272889
 1026 |  get  |       not in cache        |               |              0 |       post_meta | 272892
 1027 |  get  |       not in cache        |               |              0 |       post_meta | 272884
 1028 |  get  |       not in cache        |               |              0 |       post_meta | 272885
 1029 |  get  |       not in cache        |               |              0 |       post_meta | 272883
 1030 |  get  |       not in cache        |               |              0 |       post_meta | 272890
 1031 |  get  |       not in cache        |               |              0 |       post_meta | 272887
 1032 |  get  |       not in cache        |               |              0 |       post_meta | 272876
 1033 |  get  |       not in cache        |               |              0 |       post_meta | 272875
 1034 |  get  |       not in cache        |               |              0 |       post_meta | 272872
 1035 |  get  |       not in cache        |               |              0 |       post_meta | 271791
 1036 |  get  |    from in-call cache     |               |              0 |       post_meta | 272889
 1037 |  set  |       put in cache        |               |              0 |       post_meta | 272889
 1038 |  get  |    from in-call cache     |               |              0 |       post_meta | 272892
 1039 |  set  |       put in cache        |               |              0 |       post_meta | 272892
 1040 |  get  |    from in-call cache     |               |              0 |       post_meta | 272884
 1041 |  set  |       put in cache        |               |              0 |       post_meta | 272884
 1042 |  get  |    from in-call cache     |               |              0 |       post_meta | 272885
 1043 |  set  |       put in cache        |               |              0 |       post_meta | 272885
 1044 |  get  |    from in-call cache     |               |              0 |       post_meta | 272883
 1045 |  set  |       put in cache        |               |              0 |       post_meta | 272883
 1046 |  get  |    from in-call cache     |               |              0 |       post_meta | 272890
 1047 |  set  |       put in cache        |               |              0 |       post_meta | 272890
 1048 |  get  |    from in-call cache     |               |              0 |       post_meta | 272887
 1049 |  set  |       put in cache        |               |              0 |       post_meta | 272887
 1050 |  get  |    from in-call cache     |               |              0 |       post_meta | 272876
 1051 |  set  |       put in cache        |               |              0 |       post_meta | 272876
 1052 |  get  |    from in-call cache     |               |              0 |       post_meta | 272875
 1053 |  set  |       put in cache        |               |              0 |       post_meta | 272875
 1054 |  get  |    from in-call cache     |               |              0 |       post_meta | 272872
 1055 |  set  |       put in cache        |               |              0 |       post_meta | 272872
 1056 |  get  |    from in-call cache     |               |              0 |       post_meta | 271791
 1057 |  set  |       put in cache        |               |              0 |       post_meta | 271791
 1058 |  get  |    from in-call cache     |               |              0 |       post_meta | 272889
 1059 |  get  |    from in-call cache     |               |              0 |       post_meta | 272889
 1060 |  get  |    from in-call cache     |               |              0 |       post_meta | 272892
 1061 |  get  |    from in-call cache     |               |              0 |       post_meta | 272892
 1062 |  get  |    from in-call cache     |               |              0 |       post_meta | 272884
 1063 |  get  |    from in-call cache     |               |              0 |       post_meta | 272884
 1064 |  get  |    from in-call cache     |               |              0 |       post_meta | 272885
 1065 |  get  |    from in-call cache     |               |              0 |       post_meta | 272885
 1066 |  get  |    from in-call cache     |               |              0 |       post_meta | 272883
 1067 |  get  |    from in-call cache     |               |              0 |       post_meta | 272883
 1068 |  get  |    from in-call cache     |               |              0 |       post_meta | 272890
 1069 |  get  |    from in-call cache     |               |              0 |       post_meta | 272890
 1070 |  get  |    from in-call cache     |               |              0 |       post_meta | 272887
 1071 |  get  |    from in-call cache     |               |              0 |       post_meta | 272887
 1072 |  get  |    from in-call cache     |               |              0 |       post_meta | 272876
 1073 |  get  |    from in-call cache     |               |              0 |       post_meta | 272876
 1074 |  get  |    from in-call cache     |               |              0 |       post_meta | 272875
 1075 |  get  |    from in-call cache     |               |              0 |       post_meta | 272875
 1076 |  get  |    from in-call cache     |               |              0 |       post_meta | 272872
 1077 |  get  |    from in-call cache     |               |              0 |       post_meta | 272872
 1078 |  get  |    from in-call cache     |               |              0 |       post_meta | 271791
 1079 |  get  |    from in-call cache     |               |              0 |       post_meta | 271791
 1080 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1081 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1082 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1083 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1084 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1085 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1086 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1087 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1088 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1089 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1090 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1091 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1092 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1093 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1094 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1095 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1096 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1097 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1098 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1099 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1100 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1101 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1102 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1103 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1104 |  get  |    from in-call cache     |               |              0 |       post_meta | 272889
 1105 |  get  |    from in-call cache     |               |              0 |       post_meta | 272892
 1106 |  get  |    from in-call cache     |               |              0 |       post_meta | 272884
 1107 |  get  |    from in-call cache     |               |              0 |       post_meta | 272885
 1108 |  get  |    from in-call cache     |               |              0 |       post_meta | 272883
 1109 |  get  |    from in-call cache     |               |              0 |       post_meta | 272890
 1110 |  get  |    from in-call cache     |               |              0 |       post_meta | 272887
 1111 |  get  |    from in-call cache     |               |              0 |       post_meta | 272876
 1112 |  get  |    from in-call cache     |               |              0 |       post_meta | 272875
 1113 |  get  |    from in-call cache     |               |              0 |       post_meta | 272872
 1114 |  get  |    from in-call cache     |               |              0 |       post_meta | 271791
 1115 |  get  |    from in-call cache     |               |              0 |       post_meta | 272889
 1116 |  get  |    from in-call cache     |               |              0 |       post_meta | 272889
 1117 |  get  |    from in-call cache     |               |              0 |       post_meta | 272892
 1118 |  get  |    from in-call cache     |               |              0 |       post_meta | 272892
 1119 |  get  |    from in-call cache     |               |              0 |       post_meta | 272884
 1120 |  get  |    from in-call cache     |               |              0 |       post_meta | 272884
 1121 |  get  |    from in-call cache     |               |              0 |       post_meta | 272885
 1122 |  get  |    from in-call cache     |               |              0 |       post_meta | 272885
 1123 |  get  |    from in-call cache     |               |              0 |       post_meta | 272883
 1124 |  get  |    from in-call cache     |               |              0 |       post_meta | 272883
 1125 |  get  |    from in-call cache     |               |              0 |       post_meta | 272890
 1126 |  get  |    from in-call cache     |               |              0 |       post_meta | 272890
 1127 |  get  |    from in-call cache     |               |              0 |       post_meta | 272887
 1128 |  get  |    from in-call cache     |               |              0 |       post_meta | 272887
 1129 |  get  |    from in-call cache     |               |              0 |       post_meta | 272876
 1130 |  get  |    from in-call cache     |               |              0 |       post_meta | 272876
 1131 |  get  |    from in-call cache     |               |              0 |       post_meta | 272875
 1132 |  get  |    from in-call cache     |               |              0 |       post_meta | 272875
 1133 |  get  |    from in-call cache     |               |              0 |       post_meta | 272872
 1134 |  get  |    from in-call cache     |               |              0 |       post_meta | 272872
 1135 |  get  |    from in-call cache     |               |              0 |       post_meta | 271791
 1136 |  get  |    from in-call cache     |               |              0 |       post_meta | 271791
 1137 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1138 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1139 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1140 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1141 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1142 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1143 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1144 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1145 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1146 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1147 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1148 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1149 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1150 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1151 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1152 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1153 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1154 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1155 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1156 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1157 |  get  |    from in-call cache     |           265 |              0 |       post_meta | 133
 1158 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1159 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1160 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1161 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1162 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1163 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1164 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 130
 1165 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1166 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
 1167 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1168 |  get  |    from in-call cache     |           246 |              0 |           terms | 63
 1169 |  get  |    from in-call cache     |            33 |              0 | post_tag_relationships | 130
 1170 |  get  |    from in-call cache     |           264 |              0 |           terms | 60
 1171 |  get  |    from in-call cache     |           246 |              0 |           terms | 61
 1172 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
 1173 |  get  |    from in-call cache     |           264 |              0 |           terms | 60
 1174 |  get  |    from in-call cache     |           246 |              0 |           terms | 61
 1175 |  get  |    from in-call cache     |           254 |              0 |           terms | 62
 1176 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1177 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1178 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1179 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1180 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1181 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1182 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1183 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1184 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1185 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1186 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1187 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1188 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1189 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1190 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1191 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1192 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1193 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1194 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1195 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1196 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1197 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1198 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1199 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1200 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1201 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1202 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1203 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1204 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1205 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1206 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1207 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1208 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1209 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1210 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1211 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1212 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1213 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1214 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1215 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1216 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1217 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1218 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1219 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1220 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1221 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1222 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1223 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1224 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1225 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1226 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1227 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1228 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1229 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1230 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1231 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1232 |  get  |    from in-call cache     |           265 |              0 |       post_meta | 130
 1233 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1234 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1235 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1236 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1237 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1238 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1239 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 128
 1240 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1241 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
 1242 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1243 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
 1244 |  get  |    from in-call cache     |               |              0 | post_tag_relationships | 128
 1245 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1246 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1247 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1248 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1249 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1250 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1251 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1252 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1253 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1254 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1255 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1256 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1257 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1258 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1259 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1260 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1261 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1262 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1263 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1264 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1265 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1266 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1267 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1268 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1269 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1270 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1271 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1272 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1273 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1274 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1275 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1276 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1277 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1278 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1279 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1280 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1281 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1282 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1283 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1284 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1285 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1286 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1287 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1288 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1289 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1290 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1291 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1292 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1293 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1294 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1295 |  get  |    from in-call cache     |           319 |              0 |       post_meta | 128
 1296 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1297 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1298 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1299 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1300 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1301 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1302 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 126
 1303 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1304 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
 1305 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1306 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
 1307 |  get  |    from in-call cache     |            51 |              0 | post_tag_relationships | 126
 1308 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
 1309 |  get  |    from in-call cache     |           248 |              0 |           terms | 58
 1310 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
 1311 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
 1312 |  get  |    from in-call cache     |           246 |              0 |           terms | 59
 1313 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
 1314 |  get  |    from in-call cache     |           248 |              0 |           terms | 58
 1315 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
 1316 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
 1317 |  get  |    from in-call cache     |           246 |              0 |           terms | 59
 1318 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1319 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1320 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1321 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1322 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1323 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1324 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1325 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1326 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1327 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1328 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1329 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1330 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1331 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1332 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1333 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1334 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1335 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1336 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1337 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1338 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1339 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1340 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1341 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1342 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1343 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1344 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1345 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1346 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1347 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1348 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1349 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1350 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1351 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1352 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1353 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1354 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1355 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1356 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1357 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1358 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1359 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1360 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1361 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1362 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1363 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1364 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1365 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1366 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1367 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1368 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1369 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1370 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1371 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1372 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1373 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1374 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1375 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1376 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1377 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1378 |  get  |    from in-call cache     |           265 |              0 |       post_meta | 126
 1379 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1380 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1381 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1382 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1383 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1384 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1385 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1386 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1387 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1388 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1389 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1390 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1391 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2333
 1392 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1393 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
 1394 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1395 |  get  |    from in-call cache     |           246 |              0 |           terms | 56
 1396 |  get  |    from in-call cache     |            78 |              0 | post_tag_relationships | 2333
 1397 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
 1398 |  get  |    from in-call cache     |           246 |              0 |           terms | 50
 1399 |  get  |    from in-call cache     |           250 |              0 |           terms | 51
 1400 |  get  |    from in-call cache     |           272 |              0 |           terms | 52
 1401 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
 1402 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
 1403 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
 1404 |  get  |    from in-call cache     |           254 |              0 |           terms | 57
 1405 |  get  |    from in-call cache     |           252 |              0 |           terms | 49
 1406 |  get  |    from in-call cache     |           246 |              0 |           terms | 50
 1407 |  get  |    from in-call cache     |           250 |              0 |           terms | 51
 1408 |  get  |    from in-call cache     |           272 |              0 |           terms | 52
 1409 |  get  |    from in-call cache     |           250 |              0 |           terms | 53
 1410 |  get  |    from in-call cache     |           260 |              0 |           terms | 54
 1411 |  get  |    from in-call cache     |           250 |              0 |           terms | 55
 1412 |  get  |    from in-call cache     |           254 |              0 |           terms | 57
 1413 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1414 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1415 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1416 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1417 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1418 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1419 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1420 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1421 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1422 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1423 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1424 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1425 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1426 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1427 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1428 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1429 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1430 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1431 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1432 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1433 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1434 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1435 |  get  |       not in cache        |               |         0.0001 |       post_meta | 861
 1436 |  get  |    from in-call cache     |               |              0 |       post_meta | 861
 1437 |  get  |    from in-call cache     |               |              0 |       post_meta | 861
 1438 |  set  |       put in cache        |               |              0 |       post_meta | 861
 1439 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1440 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1441 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1442 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1443 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1444 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1445 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1446 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1447 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1448 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1449 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1450 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1451 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1452 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1453 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1454 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1455 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1456 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1457 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1458 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1459 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1460 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1461 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1462 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1463 |  get  |    from in-call cache     |               |              0 |       post_meta | 861
 1464 |  get  |       not in cache        |               |              0 |       post_meta | 862
 1465 |  get  |    from in-call cache     |               |              0 |       post_meta | 862
 1466 |  set  |       put in cache        |               |              0 |       post_meta | 862
 1467 |  get  |    from in-call cache     |               |              0 |       post_meta | 861
 1468 |  get  |    from in-call cache     |               |              0 |       post_meta | 861
 1469 |  get  |    from in-call cache     |               |              0 |       post_meta | 862
 1470 |  get  |    from in-call cache     |               |              0 |       post_meta | 862
 1471 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1472 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1473 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1474 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1475 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1476 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1477 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1478 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1479 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1480 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1481 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1482 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1483 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1484 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1485 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1486 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1487 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1488 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1489 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1490 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1491 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1492 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1493 |  get  |    from in-call cache     |          6437 |              0 |           posts | 2333
 1494 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1495 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1496 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1497 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1498 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1499 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1500 |  get  |    from in-call cache     |          6437 |              0 |           posts | 2333
 1501 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1502 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1503 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1504 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1505 |  get  |    from in-call cache     |           265 |              0 |       post_meta | 2333
 1506 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1507 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1508 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1509 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1510 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1511 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1512 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1513 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1514 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1515 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1516 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1517 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1518 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2332
 1519 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
 1520 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1521 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
 1522 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1523 |  get  |    from in-call cache     |            24 |              0 | post_tag_relationships | 2332
 1524 |  get  |    from in-call cache     |           248 |              0 |           terms | 47
 1525 |  get  |    from in-call cache     |           246 |              0 |           terms | 48
 1526 |  get  |    from in-call cache     |           248 |              0 |           terms | 47
 1527 |  get  |    from in-call cache     |           246 |              0 |           terms | 48
 1528 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1529 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1530 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1531 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1532 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1533 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1534 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1535 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1536 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1537 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1538 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1539 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1540 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1541 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1542 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1543 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1544 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1545 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1546 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1547 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1548 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1549 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1550 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1551 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1552 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1553 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1554 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1555 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1556 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1557 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1558 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1559 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1560 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1561 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1562 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1563 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1564 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1565 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1566 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1567 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1568 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1569 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1570 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1571 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1572 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1573 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1574 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1575 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1576 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1577 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1578 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1579 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1580 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1581 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1582 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1583 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1584 |  get  |    from in-call cache     |          1398 |              0 |           posts | 2332
 1585 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1586 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1587 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1588 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1589 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1590 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1591 |  get  |    from in-call cache     |          1398 |              0 |           posts | 2332
 1592 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1593 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1594 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1595 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1596 |  get  |    from in-call cache     |           265 |              0 |       post_meta | 2332
 1597 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1598 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1599 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1600 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1601 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1602 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1603 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2331
 1604 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
 1605 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1606 |  get  |    from in-call cache     |           256 |              0 |           terms | 46
 1607 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1608 |  get  |    from in-call cache     |               |              0 | post_tag_relationships | 2331
 1609 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1610 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1611 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1612 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1613 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1614 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1615 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1616 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1617 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1618 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1619 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1620 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1621 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1622 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1623 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1624 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1625 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1626 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1627 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1628 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1629 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1630 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1631 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1632 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1633 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1634 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1635 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1636 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1637 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1638 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1639 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1640 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1641 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1642 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1643 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1644 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1645 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1646 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1647 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1648 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1649 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1650 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1651 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1652 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1653 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1654 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1655 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1656 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1657 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1658 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1659 |  get  |    from in-call cache     |           265 |              0 |       post_meta | 2331
 1660 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1661 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1662 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1663 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1664 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1665 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1666 |  get  |    from in-call cache     |            24 |              0 | category_relationships | 2330
 1667 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1668 |  get  |    from in-call cache     |           250 |              0 |           terms | 41
 1669 |  get  |    from in-call cache     |           247 |              0 |           terms | 39
 1670 |  get  |    from in-call cache     |           250 |              0 |           terms | 41
 1671 |  get  |    from in-call cache     |            60 |              0 | post_tag_relationships | 2330
 1672 |  get  |    from in-call cache     |           278 |              0 |           terms | 35
 1673 |  get  |    from in-call cache     |           328 |              0 |           terms | 40
 1674 |  get  |    from in-call cache     |           250 |              0 |           terms | 42
 1675 |  get  |    from in-call cache     |           263 |              0 |           terms | 43
 1676 |  get  |    from in-call cache     |           270 |              0 |           terms | 44
 1677 |  get  |    from in-call cache     |           256 |              0 |           terms | 45
 1678 |  get  |    from in-call cache     |           278 |              0 |           terms | 35
 1679 |  get  |    from in-call cache     |           328 |              0 |           terms | 40
 1680 |  get  |    from in-call cache     |           250 |              0 |           terms | 42
 1681 |  get  |    from in-call cache     |           263 |              0 |           terms | 43
 1682 |  get  |    from in-call cache     |           270 |              0 |           terms | 44
 1683 |  get  |    from in-call cache     |           256 |              0 |           terms | 45
 1684 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1685 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1686 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1687 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1688 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1689 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1690 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1691 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1692 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1693 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1694 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1695 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1696 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1697 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1698 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1699 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1700 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1701 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1702 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1703 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1704 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1705 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1706 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1707 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1708 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1709 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1710 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1711 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1712 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1713 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1714 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1715 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1716 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1717 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1718 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1719 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1720 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1721 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1722 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1723 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1724 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1725 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1726 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1727 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1728 |  get  |    from in-call cache     |           379 |              0 |           users | 1
 1729 |  get  |    from in-call cache     |          6647 |              0 |       user_meta | 1
 1730 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1731 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1732 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1733 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1734 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1735 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1736 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1737 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1738 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1739 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1740 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1741 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1742 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1743 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1744 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1745 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1746 |  get  |    from in-call cache     |           265 |              0 |       post_meta | 2330
 1747 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1748 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
 1749 |  get  |    from in-call cache     |           130 |              0 |         options | notoptions
 1750 |  get  |    from in-call cache     |       1088098 |              0 |         options | alloptions
Page Caching using disk: enhanced (SSL caching disabled)
Page cache debug info:
Engine:             disk: enhanced
Cache key:          
Reject reason:      SSL caching disabled
Creation Time:      1540928139.000s
Header info:
X-Powered-By:        PHP/5.6.38
Last-Modified:       Mon, 29 Oct 2018 09:09:04 GMT
X-Robots-Tag:        noindex, follow
Link:                <https://www.asalta.com/wp-json/>; rel="https://api.w.org/"
Content-Type:        application/rss+xml; charset=UTF-8
Db cache debug info:
Engine:             disk
Total queries:      19
Cached queries:     0
Total query time:   0.0087
SQL info:
    # | Time (s) |    Caching (Reject reason)     |   Status   | Data size (b) | Query
    1 |   0.0003 |            enabled             | not cached |           580 | SELECT option_value FROM wp_options WHERE option_name = 'cptui_taxonomies' LIMIT 1
    2 |   0.0002 |            enabled             | not cached |           585 | SELECT option_value FROM wp_options WHERE option_name = 'akismet_comment_nonce' LIMIT 1
    3 |   0.0005 |            enabled             | not cached |          5496 | SELECT wp_redirection_items.*,wp_redirection_groups.position AS group_pos FROM wp_redirection_items INNER JOIN wp_redirection_groups ON wp_redirection_groups.id=wp_redirection_items.group_id AND wp_redirection_groups.status='enabled' AND wp_redirection_groups.module_id=1 WHERE (wp_redirection_items.regex=1 OR wp_redirection_items.url='/category/blog/feed/')
    4 |   0.0007 |            enabled             | not cached |           792 | SELECT post_modified_gmt FROM wp_posts WHERE post_status = 'publish' AND post_type IN ('post', 'page', 'attachment', 'themo_portfolio', 'job_openings', 'orginal-hover', 'testimonials') ORDER BY post_modified_gmt DESC LIMIT 1
    5 |   0.0004 |            enabled             | not cached |           772 | SELECT post_date_gmt FROM wp_posts WHERE post_status = 'publish' AND post_type IN ('post', 'page', 'attachment', 'themo_portfolio', 'job_openings', 'orginal-hover', 'testimonials') ORDER BY post_date_gmt DESC LIMIT 1
    6 |   0.0003 |            enabled             | not cached |           713 | SELECT wp_term_taxonomy.term_id
					FROM wp_term_taxonomy
					INNER JOIN wp_terms USING (term_id)
					WHERE taxonomy = 'category'
					AND wp_terms.slug IN ('blog')
    7 |   0.0002 |            enabled             | not cached |           684 | SELECT term_taxonomy_id
					FROM wp_term_taxonomy
					WHERE taxonomy = 'category'
					AND term_id IN (39)
    8 |   0.0002 |            enabled             | not cached |          3841 | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.slug = 'blog' AND tt.taxonomy = 'category' LIMIT 1
    9 |   0.0003 | disabled (query not cacheable) | not cached |             0 | SELECT SQL_CALC_FOUND_ROWS  wp_posts.ID FROM wp_posts  LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1  AND ( 
  wp_term_relationships.term_taxonomy_id IN (39)
) AND wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish') GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 0, 10
   10 |   0.0001 | disabled (query not cacheable) | not cached |             0 | SELECT FOUND_ROWS()
   11 |   0.0009 |            enabled             | not cached |        128100 | SELECT wp_posts.* FROM wp_posts WHERE ID IN (137,135,133,130,128,126,2333,2332,2331,2330)
   12 |   0.0009 |            enabled             | not cached |         20523 | SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id  WHERE tt.taxonomy IN ('category', 'post_tag', 'post_format') AND tr.object_id IN (126, 128, 130, 133, 135, 137, 2330, 2331, 2332, 2333) ORDER BY t.name ASC
   13 |   0.0007 |            enabled             | not cached |         10816 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (126,128,130,133,135,137,2330,2331,2332,2333) ORDER BY meta_id ASC
   14 |   0.0002 |            enabled             | not cached |          3935 | SELECT * FROM wp_users WHERE ID = '1'
   15 |   0.0002 |            enabled             | not cached |         11076 | SELECT user_id, meta_key, meta_value FROM wp_usermeta WHERE user_id IN (1) ORDER BY umeta_id ASC
   16 |   0.0004 |            enabled             | not cached |          1266 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (998) ORDER BY meta_id ASC
   17 |   0.0005 |            enabled             | not cached |          1340 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (272889,272892,272884,272885,272883,272890,272887,272876,272875,272872,271791) ORDER BY meta_id ASC
   18 |   0.0012 |            enabled             | not cached |          1266 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (861) ORDER BY meta_id ASC
   19 |   0.0004 |            enabled             | not cached |          1266 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (862) ORDER BY meta_id ASC

 Served from: www.asalta.com @ 2018-10-30 19:35:39 by W3 Total Cache -->