Hello
I have 2 issues I'm hoping you can assist with.
- I have a huge error log. When I opened it, it is showing this error every minute
[13-Dec-2015 19:25:20 America/Los_Angeles] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20121212/apc.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20121212/apc.so: cannot open shared object file: No such file or directory in Unknown on line 0
I had started the site on my local and moved it to a dev sever, could that be the issue? if so, how do I get ride of this? The log continues to grow and I don't want to have to remove it periodically.
- Yoast SEO says the index page cannot be indexed.
I've looked at the htaccess file (see below) but it does not appear to be blocking search engines. They suggest there may be something within the theme?
Their article: http://kb.yoast.com/article/319-your-site-isnt-indexable
BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
END WordPress