accuwebhosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I BROKE IT!! Maybe…?Hi,
wp-admin/includes/upgrade.php: wp_check_mysql_version() could not find the minimum required MySQL version to upgrade the current WordPress version to 4.2.2.
Please make sure that you are fulfilling the following minimum requirements for the latest version of WordPress.
https://wordpress.org/about/requirements/
To run WordPress your host just needs a couple of things:
PHP version 5.2.4 or greater (recommended: PHP 5.4 or greater)
MySQL version 5.0 or greater (recommended: MySQL 5.5 or greater)Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Text not showing in search barHello @mariilou,
Happy to see that your issue is resolved now.
Forum: Fixing WordPress
In reply to: Slideshow – how to change a transitionHi Lucie,
Here is a Revolution Slider documentation.
http://previous.themepunch.com/revolution_wp/documentation/
Thanks,
Forum: Fixing WordPress
In reply to: How do I get rid of the grey boxes around my pictures?Hi,
Under style.css
a:hover img[class*=”align”] …at line 981
a:hover img[class*=”wp-image-“]….at line 984Make sure you take necessary backups before making any changes.
Thanks,
Forum: Fixing WordPress
In reply to: Text not showing in search barHi,
Have you tried following?
Comment out background: #FFF none repeat scroll 0% 0%; and set height to 42px; in front-end.css
body #cooked-plugin-page .search-section .select-row .select-box select { background: #FFF none repeat scroll 0% 0%; height: 42px; }Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: How do I get rid of the grey boxes around my pictures?Hi,
At style.css, following lines are causing the grey box on image.
a:hover img[class*=”align”],
a:hover img[class*=”wp-image-“]Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: 301 redirect but keep original domain??Hi,
So I’ve finished creating my development site – thebarntest.co.uk (example) and I now want my existing site thebarn.co.uk (example) to host the now finished dev site that I have created in wordpress.
If you want to host new developed website in thebarn.co.uk, you should consider moving a WorPress website from development to live. Following is a excellent guide you can follow.
http://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/
I know about the 301 redirects – if i was to set up a 301 direct all the traffic would be directed to thebarntest.co.uk , which is fine, but I want to keep the original domain.
I believe you want to set redirection from thebarntest.co.uk to newly developed thebarn.co.uk.
Since you will be moving WordPress website from thebarntest.co.uk to thebarn.co.uk, there is no need to set 301 redirects unless thebarntest.co.uk is live.
In any case, 301 redirect will change the address in browser to source URL.
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Warning: Missing argument 2 for wpdb::prepare()Hi,
To make changes in WordPress files, you would need cPanel/FTP access and for the database changes you would need phpMyadmin access.
Can you post the full error here? An error you are receiving must have referenced some theme or plugin name.
Thanks,
Forum: Fixing WordPress
In reply to: Home page caught in an infinite redirectHi,
1) Have you tried correcting WordPress Address URL and Site Address URL settings?
In case you don’t have access to WordPress Admin area, you can still update these settings by defining them in wp-config.php file.
Simply connect to your website using an FTP client.Locate wp-config.php file in your site’s root directory. You need to download and edit this file using a text editor like Notepad. Simply add these two lines to the file and don’t forget to replace example.com with your own domain.
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');2) Use FTP to rename plugins folder (wp-content/plugins/) to filter out plugin specific issues.
Thanks,
Forum: Fixing WordPress
In reply to: Warning: Missing argument 2 for wpdb::prepare()Hi,
Please try suggestions provided in following threads. You would need access of cPanel/phpMyadmin to apply these suggestions:
https://wordpress.org/support/topic/error-with-wp-35-wpdbprepare?replies=2
https://wordpress.org/support/topic/missing-argument-2-for-wpdbprepare-3Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Warning on "Search Installed Plugins"Hi,
Have you upgraded or installed any plugin recently?
Thanks,
Forum: Fixing WordPress
In reply to: something wrong with my websiteHi,
Please try replacing the wp-admin folder from a fresh download of same WordPress version to overcome any corrupted file problems.
Note :: Make sure you take necessary backups before making any changes.
Thanks,
Forum: Fixing WordPress
In reply to: I can't access my Wp-admin panelHi,
As of now, I am receiving following error on WordPress dashboard.
W3 Total Cache Error: some files appear to be missing or out of place. Please re-install plugin or remove /home2/ptc12/public_html/wp-content/advanced-cache.php.
Warning: Cannot modify header information – headers already sent by (output started at /home2/ptc12/public_html/wp-content/advanced-cache.php:23) in /home2/ptc12/public_html/wp-includes/pluggable.php on line 1196To fix this, you can rename the w3-total-cache/ folder in the plugins directory.
Go back to the wp-content folder and rename following files:
advanced-cache.php
db.php
object-cache.php.Have a try to login again.
Hope this helps.
Thanks,Forum: Fixing WordPress
In reply to: sqlite.so" extension CrashHi,
If you are hosted at cPanel based web server, you will have to ask your web host to upgrade the version of sqlite.so to 3.8.10.2 rather disabling it.
Here is the reference:
http://news.cpanel.com/easyapache-3-30-2-released/
PHP 5.4.42
Update sqlite to 3.8.10.2 to fix vulnerabilities related to CVE-2015-3414Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Can't Upload images to wordpress after transferring to new serverHi,
Please try following suggestions:
1) Make sure that wp-content/uploads directory exist.
2) Ask your web host to assign necessary permissions to wp-content. If the permissions are already set try with permissions 766. If you still have problems, try 767, 775 or 777.
3) Once your uploads are working, change the permissions on wp-content back to 755 again (very important for security reasons!).
4) If the above steps do not help, try deactivating ALL plugins temporarily to narrow down the problem. If the problem goes away, activate them individually (one-by-one) to find the problematic plugin.Thanks,