georged8
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: photo upload errorOk, try increasing the memory limit to 128mb or 256mb, is your hosting you using mod_security, if so try disabling it and see if that helps.
Did you make any recent changes to your theme/plugins?
Forum: Fixing WordPress
In reply to: photo upload errorHi Alex,
There could be a couple of things causing this error:
1) Try decreasing the size of the image, if it’s a very large one.
2) Make sure you don’t have an apostrophe in the image name
3) If you are using an image optimizer plugin, try to disable it.
4) try increasing your memory limitForum: Fixing WordPress
In reply to: Php_Error: Possible Hacking or Viral infectionI`m not seeing any errors on your website, tried a few different browsers and all load your website just fine. Please try using another browser or clear the cache.
Forum: Fixing WordPress
In reply to: ERR_SSL_UNRECOGNIZED_NAME_ALERTGreat, now go to Settings » General and make sure that WordPress address and Site address don`t have HTTPS:// set as the URL.
Forum: Fixing WordPress
In reply to: ERR_SSL_UNRECOGNIZED_NAME_ALERTLooks like you forced SSL on your WP install, to easily disable WordPress administration over SSL, look in the wp-config.php file for the constant FORCE_SSL_ADMIN an set to false.
define('FORCE_SSL_ADMIN', false);Also take a look at this article and make sure your WP_HOME and WP_SITEURL variables are not set to use HTTPS.
- This reply was modified 9 years, 3 months ago by georged8.
You could try to change the number of WooCommerce products displayed per page by adding this code to your functions.php file in your theme.
// Display 24 products per page. Goes in functions.php add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 20 );You can also take a look at this thread: https://gist.github.com/jameskoster/1601682
- This reply was modified 9 years, 3 months ago by georged8.
Forum: Fixing WordPress
In reply to: White screen on website URL and wordpress dashboardThese errors are often caused by plugins or themes conflicts, a good place to start troubleshooting would be to manually disable your plugins, you said you
ve done this already so how this didn't solve resolve the issue, youll need to disable the current theme.To do this you’ll just need to access your server via SFTP or FTP, or a file manager, navigate to /wp-content/themes/ and rename the directory of your active theme, doing this will force the default theme to activate, and hopefully your site will load with the default theme.
If none of the above work, please have a look in your server’s/account error_log file and paste any relevant errors here. If you don`t know how to find it you can always ask your hosting provider to give you a hand or tutorial.
Forum: Fixing WordPress
In reply to: IP adres hacker in log files?You can probably find his IP in the access logs. However, this depends on your host log rotation policies. If the log files from Sunday were compressed and archived, you wouldn’t be able to find it. A solution would be to contact your hosting provider and ask them to look into the Sunday logs for you.
Please keep in mind that often attackers use proxy servers so even if you find the IP there’s a chance that’s not his real IP address.
Hope you find him! 🙂
- This reply was modified 9 years, 3 months ago by georged8.
Forum: Fixing WordPress
In reply to: redirect hack, all seems cleanSounds like you still have some malicious code in your .htaccess file, take a look and see if there is anything suspicious there, this is usually located in /home/username/public_html/WP_install_folder/
I’m getting the same error now, you should definitely get in touch with your hosting provider.
Hi,
The website is loading fine on my end, this was probably a temporary issue caused by your hosting server, clear your web browser cache or try to use another browser.
Pingdom also sees the website just fine:
Forum: Fixing WordPress
In reply to: You Are in blacklistHi,
You could try to reset your password via MySQL, just follow the instructions here: https://codex.wordpress.org/Resetting_Your_Password
Another thing I would try is to disable all active plugins, this can be done from MySQL, here`s a link with exact instructions: https://www.one.com/en/support/guide/disable-wordpress-plugins-in-phpmyadmin
Forum: Fixing WordPress
In reply to: Can no longer upload .xlsm filesHi,
There are two ways to override this. The easy way is adding the following line into your wp-config.php
define('ALLOW_UNFILTERED_UPLOADS', true);You can add the above line of code in the wp-config.php file just above the following statement.
/* That's all, stop editing! Happy blogging. */If this doesn`t fix your issue, you better get in touch with your hosting provider as many hosts don’t support various types of files to be uploaded to the server due to security issue.
Forum: Fixing WordPress
In reply to: .ppt, .pptx, .docx ‘not permitted for security reasons’Hi,
There are two ways to override this. The easy way is adding the following line into your wp-config.php
define('ALLOW_UNFILTERED_UPLOADS', true);You can add the above line of code in the wp-config.php file just above the following statement.
/* That's all, stop editing! Happy blogging. */If this doesn`t fix your issue, you better get in touch with your hosting provider as many hosts don’t support various types of files to be uploaded to the server due to security issue.
Forum: Fixing WordPress
In reply to: Session expires in secondsI assume your hosting company uses cPanel, if that`s the case this video will show you how to get into the /public_html/ folder and look for the /wp-content/wp-object.php file.
You could also get in touch with your hosting provider, maybe they can give you a hand with this.