ehab971
Forum Replies Created
-
Thank you for your fast response
I think that for me it’s just a text and I can’t change this field in Mailchimp because it’s been used on our other sites(not WordPress ones).
Is there a way that I can append text to a text filed like channels\ interest in my case with code?On our other websites (not WP) They’ve managed to append text values to the Channel field while it’s still a normal field not an interest group
@bcworkz Thank you so much for the explanation.
As this website is fairly big, I don’ think we can move it easily to another host. However, can you please explain more about this line your wrote?
I think the file error is because WP is trying to log an error to a file it doesn’t have permission to write to.Can disabling the log completely fix the issue?
This is what I have in wp-config.php for debuggingdefine(‘WP_ALLOW_REPAIR’, false);
define(‘DISABLE_WP_CRON’, true);
// log PHP errors
@ini_set(‘log_errors’,’On’); // enable or disable PHP error logging (use ‘On’ or ‘Off’)
@ini_set(‘display_errors’,’Off’); // enable or disable public display of errors (use ‘On’ or ‘Off’)
@ini_set(‘error_log’,’/var/www/html/site/php-errors.log’); // path to server-writable log file
//another way to log
define( ‘WP_DEBUG’, true );
//define( ‘WP_DEBUG_LOG’, true );
define( ‘WP_DEBUG_DISPLAY’, false );
define(‘WP_MEMORY_LIMIT’, ‘256M’);
//define(‘WP_MEMORY_LIMIT’, ‘256M’);
//define(‘DISABLE_WP_CRON’, true);
//define(‘CONCATENATE_SCRIPTS’, false);
/* That’s all, stop editing! Happy publishing. / /* Absolute path to the WordPress directory. / if ( ! defined( ‘ABSPATH’ ) ) { define( ‘ABSPATH’, dirname( FILE ) . ‘/’ ); } /* Sets up WordPress vars and included files. */
require_once( ABSPATH . ‘wp-settings.php’ );