accuwebhosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Getting internal server error when trying to get to wp-admin loginHi,
Please try following suggestion:
Ask your web hosting provider to increase the PHP memory limit (memory_limit = 64M ) in php.ini file and place it under /wp-admin/ folder FTP through.
Thanks,
Forum: Fixing WordPress
In reply to: problems migrating from subdirectory to rootHi Elba,
I would suggest you to follow following guide to move WordPress website from subdirectory to root (start from scratch).
Make sure you take necessary backups before making any changes.
Thanks,
Forum: Fixing WordPress
In reply to: problems migrating from subdirectory to rootHi,
I can’t see any differences, can you?
No,there is no difference.
I just noticed that both of your sub-domains are working perfectly fine. Following are the correct (Mind the capital ‘S’ in first URL and small ‘s’ in second URL) URLs.
http://elbaescobarmakeup.co.nz/Staging2/
http://elbaescobarmakeup.co.nz/staging1/Hope that helps,
Thanks,Forum: Fixing WordPress
In reply to: .htaccess Gets RewrittenHi,
Can’t we see which process/script made these changes so that we can identify the issue?
Mostly such hacks or malware injections occurred due to poorly written, vulnerable, outdated themes and plugins. Make sure you update all WordPress themes and plugins and remove disabled plugins/themes.
To determine what files are affected you can check the modification time of files and folders. After hack investigation is perhaps the hardest part and it requires the most work. It will also come down to your individual technical knowledge and insight around website hacks. Below are a few resources that will guide you to completely remove the malware:
http://z9.io/2008/06/08/did-your-wordpress-site-get-hacked/
https://blog.sucuri.net/2010/02/removing-malware-from-a-wordpress-blog-case-study.html
http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/You can also ask your web hosting provider for logs where you can get extensive information like IP address, FTP access logs , modified files , timestamp etc.
Thanks,
Forum: Fixing WordPress
In reply to: problems migrating from subdirectory to rootHi Elba,
Can you paste the code of index.php file here?
The path in question is … /home1/ab36459/public_html/Staging2/index.php
Thanks,
Forum: Fixing WordPress
In reply to: White screen of death – need to install generic themeHi,
You would see wp-config.php in root directory of WordPress. You can also contact your web hosting provider to increase the memory limit in WordPress.
filezilla error : Error: Connection timed out after 20 seconds of inactivity
Error: Failed to retrieve directory listingYou will have to contact your web hosting provider to resolve it.
Thanks,
Forum: Fixing WordPress
In reply to: "Session expired. Please log in again." How can I go thru it?Hi,
Please try following suggestions:
Flush the browser cache, cookies and cache plugins.
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).
Switch to the Twenty thirteen theme to rule out any theme-specific problems.
Reset the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
Re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress.
Thanks,
Forum: Fixing WordPress
In reply to: have a strange menu over my background image.Hi Susan,
Would you please share your Website name? It would help us to reproduce the problem.
Thanks,
Forum: Fixing WordPress
In reply to: Update page not workingHi,
I went ahead and find similar thread for you. Please try following suggestions:
https://wordpress.org/support/topic/clicking-update-page-results-in-a-404?replies=13
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: My website has disappeared??!Hi,
The first thing you should do is to contact your Web Hosting provider and get access of either cPanel or FTP.
Once you have cPanel login details, you can reset WorPress dashboard username and password through following guides:
http://www.wpbeginner.com/wp-tutorials/how-to-change-your-wordpress-username/
http://www.wpbeginner.com/beginners-guide/how-to-reset-a-wordpress-password-from-phpmyadmin/
Once you are done with password and username reset, you can ask your web hosting provider to restore your website from the backup (when your website was functional.)
Hope that helps,
Thanks,Forum: Fixing WordPress
In reply to: Mobile menu issue with SelaHi,
In style.css file at line 332 set
background-color: transparent;and save the file.
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: White screen of death – need to install generic themeHi,
Majority of the time when you see a white screen of death in WordPress, it means that you exhausted the memory limit. This could be caused by a plugin that you may be using that is not functioning properly. It could also be caused by a poorly coded theme that you are using. It could also mean that there is an issue with your web hosting server.
You should first try with increasing your default Memory Limit.
First open your wp-config.php which is located in the root WordPress directory. Then add the following line inside the main php tag:
define('WP_MEMORY_LIMIT', '128M');If you still get the error after this fix, then please contact your host. Most likely, they would have to go in their php.ini file to increase the memory limit for you.
You can also use the WordPress debug function to see what type of errors are being outputted. Add the following code in your wp-config.php file.
error_reporting(E_ALL); ini_set('display_errors', 1); define( 'WP_DEBUG', true);Once you add this, the blank screen will now have errors, warnings, and notices. These may be able to help you determine the root cause.
Thanks,
Forum: Fixing WordPress
In reply to: Blog Title Cut In HalfHi,
Do you have any URL that can reproduce the problem? It would be more helpful to sort it out.
Thanks,
Forum: Fixing WordPress
In reply to: problems migrating from subdirectory to rootHi,
I believe you have moved your WordPress website from subdirectory http://www.staging2.elbaescobarmakeup.co.nz to http://elbaescobarmakeup.co.nz.
As of now, http://elbaescobarmakeup.co.nz. is showing following error:
Parse error: syntax error, unexpected ”/wp-blog-header.php” (T_CONSTANT_ENCAPSED_STRING) in /home1/ab36459/public_html/index.php on line 17
It is a syntax error due to additional special character in index.php. Download the fresh copy of WordPress and replace the index.php file with current index.php. It should resolve your issue.
Thanks,
Forum: Fixing WordPress
In reply to: www.mysite.com to https://www.mysite.comHi,
With IIS, you will need URL Rewrite module. Place the following code in web.config of your website and have a try. It will force HTTPS for ALL resources (using 301 Permanent Redirect):
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <clear /> <rule name="Redirect to https" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" /> </rule> </rules> </rewrite> </system.webServer> </configuration>Hope that helps.
Thanks,