본문 바로가기
코딩, 개발 꾸준히 하면 볕날선생만큼 한다.

테스트 실패

by 볕날선생 2021. 12. 16.
728x90
반응형

실패는 성공의 어머니 해도 소용 없는 것들

다음에 또 하면서 시간 낭비 할까봐

 

라이믹스

수정본으로 설치
압축풀고 -> rssboard.cron.php -> html 폴더로 옮김

1.
html 폴더에 있는
rssboard.cron.php 에 있는 윗부분
define('__xbxe__',true); 
으로 추가

2.
20번째줄 admin -> 로그인할때 쓰는 메일주소

37번재줄 Object -> BaseObject
             return new Object(0,'success');
에서
             return new BaseObject(0,'success');
으로 변경

3. 권한부여
sudo chown -R www-data:www-data /var/www/html
sudo usermod -a -G www-data ubuntu

4. 
Exception #0 DateTime::__construct(): Failed to parse time string (<![CDATA[ 몇년몇년-몇월-몇일 시시:분분:초초 ]]>) at position 0 (<): Unexpected character in
오류가 뜸.

$$$$$$$걍 아래 하지 말자 아래처럼 하면 sudo service nginx restart 하면 오류남 해결 안됨.$$$$$$$

sudo certbot certificates
을 치면 현재 인증서 위치랑 인증서 이름 확인 가능

sudo certbot delete --cert-name 도메인주소.com
삭제

sudo certbot certificates
을 다시 치면 현재 certbot 관련된거 없는거 확인 가능

sudo apt-get remove certbot
certbot 삭제

sudo apt-get remove cron
크론탭 삭제

삭제하고 혹시 sudo service nginx restart 또는 sudo service nginx start 했을때 아래 오류 생기면
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.

systemctl status nginx.service

journalctl -xe
확인하고

인증서랑 certbot 없어져서 그런걸 수 있으니 엔진엑스부터 다시 깔아본다.

$$$$$$$걍 위처럼 말자 아래처럼 하면 sudo service nginx restart 하면 오류남 해결 안됨$$$$$$$

$$$안됨 하지말자 rss 피드 feeding 안될때 하지말자 안됨$$$

transfer-encoding : chunked 로 되어있는데 

sudo nano /etc/nginx/nginx.conf
실행하고
아래 내려가면

gzip on;
아래 주석처리된거 다 # 없애기 주석해제
그리고 저장하고
sudo systemctl reload nginx
재시작

안됨

혹시나 
sudo nano /etc/php/7.4/fpm/php.ini
실행해서

; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
; Note: Resulting chunk size may vary due to nature of compression. PHP
;   outputs chunks that are few hundreds bytes each as a result of
;   compression. If you prefer a larger chunk size for better
;   performance, enable output_buffering in addition.
; Note: You need to use zlib.output_handler instead of the standard
;   output_handler, or otherwise the output will be corrupted.
http://php.net/zlib.output-compression
zlib.output_compression = Off
zlib.output_compression = On 온으로 바꿔봄

해도 안됨

sudo nano nginx.conf
gzip 주석 다 해제

sudo nano /etc/nginx/sites-available/default
실행하고 아래 추가 후 저장

#add for chunked
         #chunked_transfer_encoding on;
         #proxy_buffering off;
    #addend

proxy_http_version 1.1;
         chunked_transfer_encoding off;
         proxy_buffering off;

$$$안됨 하지말자 rss 피드 feeding 안될때 하지말자 안됨$$$

728x90
반응형