phpMyAdmin 사용시 아래와 같은 에러메세지가 수도없이 보여 사용하기 불편할때가 있다.
아마도 PHP 버전업으로 인해서 이런현상이 발생한다고 생각한다.
이럴때 해결 방법은 다음과 같다.
sudo pluma /usr/share/php/php-gettext/streams.php 수정
Line 48 StringReader 에러의 경우
52번 라인의 function 이름을 __construct 로 수정
function StringReader ($str='') >>> function __construct($str='')
89번 라인의 function 이름을 __construct 로 수정
function FileReader($filename) >>> function __construct($filename)
Line 145 CacheFileReader 에러의 경우
146번 라인의 function 이름을 __construct 로 수정
function CachedFileReader($filename) >>> function __construct($filename)
sudo pluma /usr/share/php/php-gettext/gettext.php 파일 수정
Line 36 gettext_reader 에러의 경우
101번 라인의 function 이름을 __construct 로 수정
function gettext_reader($Reader, $enable_cache = true) >>> function __construct($Reader, $enable_cache = true)
제목 | 날짜 | ||
---|---|---|---|
599 | [리눅스서버] ./configure : /bin/sh^M : bad interpreter [duplicate] | 145 | 2018/07/29 |
598 | [기타] G Suite - | 0 | 2018/07/26 |
597 | [MySQL] MySQL 사용자 테이블 생성 및 연결하기 | 93 | 2018/06/24 |
596 | [Nginx] [Nginx] Rewriterule 서브 도메인 입력시 하위 디렉토리로 이동하기 | 501 | 2018/05/15 |
595 | [Nginx] https가 아닐 경우 https로 리다이렉트하는 방법 | 170 | 2018/04/25 |
594 | [Nginx] nginx-redirects-http-to-https-and-www-to-non-www | 79 | 2018/04/21 |
593 | nginx https redirect www to non-www | 231 | 2018/04/04 |
592 | [리눅스서버] mysql strict mode 끄기 | 888 | 2018/03/29 |
591 | [리눅스서버] Ubuntu php7.0-fpm 세팅 중 오류 | 76 | 2018/03/25 |
590 | [리눅스서버] Ubuntu 16.04 | root 계정으로 로그인하기, root 계정으로 ssh 접속하기 | 91 | 2018/03/21 |
589 | [MySQL] Mysql Join 해부(Left, Right, Outer, Inner Join) | 154 | 2018/01/03 |
588 | HTTrack Website Copier 한글 언어팩 | 603 | 2018/01/03 |
이걸 이렇게 고치네요. 서버 PHP 버전과 설치된 PHPMYADMIN의 버전이 달라서 그런지 @_@
갑자기 저런 오류가 나타나던데 몇년을 그냥 참고 살았는데 이제야 고쳤습니다. ㅠㅠ