VestaCP kurulumundan sonra phpmyadmin giriş ekranında ve her işlemde çıkan;
Deprecation Notice in ./libraries/classes/Url.php#253
Array and string offset access syntax with curly braces is deprecated
Deprecation Notice in ./libraries/classes/Server/Privileges.php#4023
Array and string offset access syntax with curly braces is deprecated
Deprecation Notice in ./libraries/classes/Server/Privileges.php#4278
Array and string offset access syntax with curly braces is deprecated
Hatalarını çözmek için;
libraries/classes/Server/Privileges.php
Dosyasını açıyoruz..
3875. satırda bulunan;
if ($sql_query{0} != '#') {
kodunu
if ($sql_query[0] != '#') {
4122. satırda bulunan;
if ($sql_query{0} != '#') {
kodunu
if ($sql_query[0] != '#') {
Son olarak,
libraries/classes/Url.php
dosyasını açıyoruz ve aşağıdaki satırları düzeltiyoruz.
251. satırda bulunan;
$separator = $arg_separator{0};
kodunu
$separator = $arg_separator[0];
olarak güncelledikten sonra, sisteme reboot atarsanız sorun çözülmüş olur.
Bir yanıt yazın