PHP

PHPmyadmin Error

1. 개요

phpmyadmin 접속시 에러 메시지를 뿜어내는 경우 해결방법

 

2. 증상

phpmyadmin 접속시 다음과 같은 에러 메시지가 나타남

3. 파일 수정

+ sudo vi /usr/share/php/php-gettext/streams.php

Line 증상 변경 전 변경 후
52 Line 48 StringReader Error function StringReader ($str=”) { function __construct($str=”) {
89 Line 84 FileReader Error function FileReader($filename) { function __construct($filename) {
146 Line 145 CacheFileReader error function CachedFileReader($filename) { function __construct($filename) {

 

+ sudo vi /usr/share/php/php-gettext/gettext.php

Line 증상 변경 전 변경 후
101 in ./../php/php-gettext/gettext.php#36 function gettext_reader($Reader, $enable_cache = true) { function __construct($Reader, $enable_cache = true) {
Back To Top