kiansalout
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Shipping Method Description for WooCommerce] WPML issueThank you Thomas! It’s great!
Forum: Plugins
In reply to: [Meta for WooCommerce] error when editing productsOk Guys, I found what is the issue! the problem is wordpress memory and PHP memory. I increased it to 512M and solved the issue. You can start trying with 128M then 256M if not 512M.
for folks that don’t know how to increase it. you should access your files via ftp/file manager then go to wp-includes and edit default-constants.php
if ( ! defined( 'WP_MEMORY_LIMIT' ) ) { if ( false === wp_is_ini_value_changeable( 'memory_limit' ) ) { define( 'WP_MEMORY_LIMIT', $current_limit ); } elseif ( is_multisite() ) { define( 'WP_MEMORY_LIMIT', '512M' ); } else { define( 'WP_MEMORY_LIMIT', '512M' ); } } if ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ) { if ( false === wp_is_ini_value_changeable( 'memory_limit' ) ) { define( 'WP_MAX_MEMORY_LIMIT', $current_limit ); } elseif ( -1 === $current_limit_int || $current_limit_int > 268435456 /* = 256M */ ) { define( 'WP_MAX_MEMORY_LIMIT', $current_limit ); } else { define( 'WP_MAX_MEMORY_LIMIT', '512M' ); } }- This reply was modified 5 years, 6 months ago by kiansalout.
Forum: Plugins
In reply to: [Meta for WooCommerce] error when editing productsSame here! I can’t edit any products. here is what I have tried so far:
1. I did uninstall and reconnected but didn’t change anything.
2. turned on wp_debug shows nothingfor now I disable the plugin but seriously skyverge can we get a stable version?
- This reply was modified 5 years, 6 months ago by kiansalout.
Viewing 3 replies - 1 through 3 (of 3 total)