accuwebhosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost websiteHi,
1) Access your WordPress directory through cPanel and Open the wp-content folder.
2) Inside the wp-content folder, locate the themes folder and open it.
3) Locate functions.php and remove the code you have inserted or replace the functions.php file with working version of functions.php.
4) You can find working version of this file from the backup you have prior to performing maintenance or it can be the original version that came with your theme.In the event you don’t want to overwrite functions.php, you can rename the folder for your current theme, which will deactivate it and revert to the default WordPress theme.
At this point, you can manually remove any offending code from the functions.php file in the inactive theme and reactivate it when you’re ready.
Forum: Fixing WordPress
In reply to: Website stopped appearing today.Hi,
I just browsed your website and Dashboard in Chrome and FireFox. Both are appearing perfectly fine. Do you have other link where you are facing the problem?
Thanks,
Forum: Fixing WordPress
In reply to: Error when trying to update postsHi,
Are you using any security plugin like BulletProof Security? If yes, refer following troubleshooting steps:
https://wordpress.org/support/topic/strange-403-or-404-forbidden-errors-with-wordpress
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Post edit page of a particular post doesn't loadHi,
I went ahead and find other threads with same problem.
https://wordpress.org/support/topic/cant-edit-posts-autosave-is-messing-up
https://wordpress.org/support/topic/cant-update-page-status-cant-erase-page-cant-update-content-either?replies=2In this thread, this issue fixed by repairing the WordPress database tables. Have a try with repairing WordPress database tables.
Make sure that you take necessary database backups before making any changes in database.
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Header image disappears on phones and tabletsHi,
Access your WordPress directory either through cPanel or FTP.
Navigate to following file and edit it through cPanel file manager.
hellohomebird.com/wp/wp-content/themes/twentythirteen/style.css
Paste following code and save the file.
@media (max-width: 220px) { .site-header .home-link {padding: 0 20px 55px;} }Browse your website in mobile screens to verify it.
>>Make sure you take necessary backups before making any changes.Thanks,
Forum: Fixing WordPress
In reply to: Client Can't Log into WordPress Site but I CanHi,
Tell your customer to flush the browser cache and cookies or try to access WordPress dashboard in another browser.
Ask web hosting provider if your client’s ISP IP address is blocked in web server firewall.
You can also ask your client to check ping result to determine If his requests are being reached to web server or not. Open command prompt and type following command (do not forget to replace domain.com with actual website name).
ping domain.com
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Header image disappears on phones and tabletsHi,
Add this code in style.css (code has adjusted for iPhone5).
@media (max-width: 220px) { .site-header .home-link {padding: 0 20px 55px;} }You can also add this code for various screen sizes.
Thanks,
Forum: Fixing WordPress
In reply to: have a strange menu over my background image.Hi,
Please try following suggestion:
In style.min.css at line number 277, set position to relative.
#headline .wrapper .navigation
{
right: 0px;
bottom: 20px;
position: absolute ;
}Hope that helps,
Thanks,Forum: Fixing WordPress
In reply to: WordPress Hacked / new site questionHi,
You can install following plugins to scan WordPress database.
https://wordpress.org/plugins/exploit-scanner/
https://wordpress.org/plugins/antivirus/Thanks,
Forum: Fixing WordPress
In reply to: Can't make table fit on page.Hi,
In style.css file, class .page-content
{ margin: 0 auto; max-width: 474px; }You can adjust the max-width to fit into screen.
Thanks,
Forum: Fixing WordPress
In reply to: Images in media libraryHi,
As long as you do not load/use those extra images in your blog posts,they wont contribute to slowing down your website.
If you are not using images, you can download them in your local system and remove from the server.
Thanks,
Hi,
1) Contact your web hosting provider and ask them to increase the php memory limit in php.ini file.
2) If this do not fix your issue. Turn on WP_DEBUG, simply add the following line of code to your wp-config.php file:
define( 'WP_DEBUG', true );WP_DEBUG provides a handy way to troubleshoot problems when something goes wrong with your Website.
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: password on pagesHi,
Have you installed any plugins to password protect your wordpress website?
Also try following suggestions:
Deactivating 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).
Switching to the Twenty Fifteen theme to rule out any theme-specific problems. If you can’t log in to change themes, you can remove the theme folders via FTP so the only one is twentyfifteen. That will force your site to use it.
Thanks,
Forum: Fixing WordPress
In reply to: https:// version redirects to spam siteHi,
I went through your website redirection occurrence. I noticed that https version of your website is redirecting to http version to some other website. It can be achieved by .htaccess or through web server.
Here, the first step you should take is to contact your web hosting provider. Make sure that you are not sharing an IP address on port 443 with shopingmarket.com (however, it is not possible without having control panel/DNS panel details).
Also, scan your website with anti-virus software for any malware injection. If possible restore your website from available clean backup.
Thanks,
Forum: Fixing WordPress
In reply to: www.mysite.com to https://www.mysite.comHi,
Yes, it will replace all existing WordPress URL-rewrite rules. The best approach to test these rules is to copy existing web.config file and rename the original file like web.config.backup.
Now, paste these rules in duplicate web.config file (do not forget to remove existing rules) and rename it with web.config.
Thanks,