Arkadaşlar Merhabalar,
Hosting Firması Php güncellemesi yapmış sanırım. Sitede an itibariyle şöyle bir hata çıkıyor.
Warning: Use of undefined constant ‘CONCATENATE_SCRIPTS’ - assumed '‘CONCATENATE_SCRIPTS’' (this will throw an Error in a future version of PHP) in /home/xxxx/xxxx.com/wp-config.php on line 81
Bunu nasıl çözebilirim? Teşekkürler.
Bu Hata Nasıl Çözülebilir? Wordpress
6
●182
- 25-07-2020, 14:26:49Wp-config.php de 81. satırda bu bölüm var hocam. Şöyle bir çözüm buldum amatam anlayamadım.zurbahan adlı üyeden alıntı: mesajı görüntüle

It looks like in your wp-config.php file you have something like this:
define( ‘CONCATENATE_SCRIPTS’, false );The problem is the quote marks. You’re using ‘fancy quotes’, which look like this: ‘’ (compared to ''). This can happen if you copy and paste code like this from a blog or forum post that wasn’t properly written.
You need to replace it with this:
define( 'CONCATENATE_SCRIPTS', false );Don’t change the true or false part, just the quotes around CONCATENATE_SCRIPTS. - 25-07-2020, 14:27:51o zaman false yazan yeri true yapın yada olmadı satırı kaldırın
denemek lazım yani
tabi bunları yaparken wp-config.php yedek almamız gerektiğini söylemiyorum bile
he bu arada sanki sizin kodda hata var false den sonra boşluk var gibi. kesin olması için benim yazdığımı kopyalayıp o satırı değiştirirmisiniz?
define('CONCATENATE_SCRIPTS', false);

denemek lazım yani