accuwebhosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Added WP Cache and deactivated it- big problems with website!Hi,
Please try following suggestion:
1) Ask your web hosting provider for the backup and restore for you.
2) Take a backup of your WordPress installation and delete the following files.
wp-content/advanced-cache.php wp-content/wp-cache-config.php wp-content/plugins/wp-super-cache wp-content/cache/wp-cache* wp-content/cache/supercacheNow take backup of wp-config.php, edit the file and remove the line that says:
define('WP_CACHE', true); //Added by WP-Cache ManagerAgain, take a backup of your .htaccess file and remove the lines that looks something like this:
# BEGIN WPSuperCache <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ AddDefaultCharset UTF-8 RewriteCond %{REQUEST_URI} !^.*[^/]$ RewriteCond %{REQUEST_URI} !^.*//.*$ RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} !.*=.* RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$ RewriteCond %{HTTP:Accept-Encoding} gzip RewriteCond %{DOCUMENT_ROOT}/blog/wp-content/cache/supercache/%{HTTP_HOST}/blog/$1/index.html.gz -f RewriteRule ^(.*) /blog/wp-content/cache/supercache/%{HTTP_HOST}/blog/$1/index.html.gz [L] RewriteCond %{REQUEST_URI} !^.*[^/]$ RewriteCond %{REQUEST_URI} !^.*//.*$ RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} !.*=.* RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$ RewriteCond %{DOCUMENT_ROOT}/blog/wp-content/cache/supercache/%{HTTP_HOST}/blog/$1/index.html -f RewriteRule ^(.*) /blog/wp-content/cache/supercache/%{HTTP_HOST}/blog/$1/index.html [L] </IfModule> # END WPSuperCacheNow, try to browse your website If it makes it worse, restore the full backup.
You should also check the error_log file that your web server creates (ask your web host for the same).
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Cloning a WP siteHi,
You can clone your WordPress website to some sub directory or in your local computer to development/modification using following plugin.
https://wordpress.org/plugins/duplicator/
Once you are done with the modifications and your new website is ready to get launched, you can move WorPress website from sub directory to root directory.
Here is a excellent guide you can follow to move WordPress website from sub directory to root:
http://premium.wpmudev.org/blog/how-to-safely-move-wordpress/
[ Moderator note: UTM tracking deleted on link ]
Thanks,
Forum: Fixing WordPress
In reply to: Cant upload images to blog postHi,
Please try following:
1 Use your FTP client to access the WordPress directory.
2 Locate and Right click on WP-content folder and open “properties”.
3 There you will see the chmod 755 setting. Change it to 777.
4 Do the same to the “uploads” folder.You can also perform the same steps with cPanel File Manager. As an alternative, you can also contact your Web Host to assign necessary permissions to uploads folder.
Thanks,
Forum: Fixing WordPress
In reply to: 503 errorHi,
I went ahead and checked DNS Lookup of your website at following URL:
http://www.intodns.com/sheatree-bodyessentials.co.ke
Here, I noticed that there are no A records defined in DNS Zone of your domain. You’ll have to contact your web host to add necessary A records in DNS Zone.
Thanks,
Forum: Fixing WordPress
In reply to: File size uploadingHi,
You should serve downloadable files through CDN Hosting. It will ensure faster downloading speed as files will be served through nearest edge servers to your visitors.
Thanks,
Forum: Fixing WordPress
In reply to: Weird signs instead of websiteHi,
Here is a excellent guide you can follow to fix this issue.
I hope it helps.
Thanks,Forum: Fixing WordPress
In reply to: Website Loading extremely slowHi,
I went ahead and tested your web page speed in pingdom tools.
http://tools.pingdom.com/fpt/#!/bj7XU3/http://stickerlad.co.uk/
I have noticed that there are number of cacheable resources(big number of images in home page) have a short freshness lifetime. Hence, your home page has Leverage Browser Caching issues.i.e. Response from your web server does not include caching headers or resources are specified to be cached for only a short time.
Each resource on your website should specify an explicit caching policy so load time can be decreased significantly. Following guide may help you.
https://developers.google.com/speed/docs/insights/LeverageBrowserCaching
Thanks,
Forum: Fixing WordPress
In reply to: Template.php broken . . .Hi,
Please try following suggestions:
1. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ‘128M’);2. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 128M:
memory_limit = 128M ; Maximum amount of memory a script may consume (128M)If you do not access to php.ini, contact your webhost they will help you to raise the php memory limit.
Thanks,
Forum: Fixing WordPress
In reply to: Thumbnails Broken Network WideHi,
I have found some similar threads as follows:
https://wordpress.org/support/topic/no-featured-image-metabox-in-mu
https://wordpress.org/support/topic/images-broken-in-wp-multisite
https://wordpress.org/support/topic/images-no-appearing-on-a-site?replies=4I hope it will help you resolving your issue.
Thanks,
Forum: Fixing WordPress
In reply to: Can I Add A Tab?Hi,
Yes, you will have to create page in and set its navigation in menu. Here is the guide how you can create new pages in your WordPress website:
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
Here is the codex you can follow to link new page in menu.
http://codex.wordpress.org/WordPress_Menu_User_Guide
Thanks,
Forum: Fixing WordPress
In reply to: Can't even get to my site or wordpress accountHi,
Please share your website name, it would help us to assist you in right direction.
Is your website/dashboard gone blank or showing any error message?
Thanks,
Forum: Fixing WordPress
In reply to: Home page not displaying a "home" Tab…Hi,
Your navigation bar code does not have home page li.
<nav> <div id="menu-icon" class="mobile-button"><i class="icon-menu"></i></div> <ul id="main-nav" class="main-nav clearfix"><li class="page_item page-item-5"><a href="http://step2rollercoaster.com/about-me/">About Me</a></li> <li class="page_item page-item-28"><a href="http://step2rollercoaster.com/contact-me/">Contact Me</a></li> <li class="page_item page-item-30"><a href="http://step2rollercoaster.com/privacy-policy/">Privacy Policy</a></li> </ul> <!-- /#main-nav --> </nav>You’ll have to add another li with href=http://step2rollercoaster.com/index.php
Thanks,
Forum: Fixing WordPress
In reply to: Post Preview Not Showing UpHi,
Please try following suggestion first:
Flush your browser cache any caching plugins you are using. Here is a excellent guide on how you can empty All Caches using your cache plugin settings area.
http://www.wpbeginner.com/wp-tutorials/how-to-fix-wordpress-website-not-updating-right-away/
If this does not work for you, try following suggestions:
1) Deactivate all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
2) Switch to the default theme to rule out any theme-related problems
3) Reset the plugins folder by FTP or phpMyAdmin because sometimes, an apparently inactive plugin can still cause problems.
Thanks,
Forum: Fixing WordPress
In reply to: Change domain name, same hostHi,
Here is the complete guide you can follow to move your WordPress website from one domain to another.
Thanks,
Forum: Fixing WordPress
In reply to: Local hostingHi,
Rather removing this file, I would suggest you to move it to outside the public_html folder.
If it does not fix your issue, please post back.
Thanks,