묻고답하기




안녕하십니까?

제가 집의 PC에 APMSETUP7과 XE를 설치하여 홈페이지를 꾸며 왔으나
속도에 한계가 있으므로 NGINX에 도전하기로 하고
WnMP라는 pacakge 프로그램을 설치하였습니다.

 

그런데 XE 1.7.3.1를 설치하는 마지막  단계인 "완료"버튼을 누른 결과,
제2항과 같은 내용의 메시지(broswer는 IE9를 사용)가 나타났습니다.

이 문제를 저의 능력으로는 도저히 해결할 길이 없어서
고수님들께 도움을 요청합니다. 감사합니다.


1. 저의 PC 서버의 재원

 

       1)   Windows 7 home premium k


        2)  WNMP 2.0.1.1의 구성 프로그램

                      Nginx 1.2.8
                      MariaDB 5.5.30
                      PHP 5.4.13 (Non Thread Safe + FastCGI) 
                      phpMyAdmin 3.5.7

 


2. 웹 사이트에서 페이지를 표시할 수 없습니다. HTTP 500
 
                  가능성이 높은 원인:
                    •  웹 사이트는 유지 관리 중입니다.
                    •  웹 사이트에 프로그래밍 오류가 있습니다.

 

3.  XE의 tmpDB.config.php파일의 내용

 

 <?php if(!defined("__XE__")) exit();$db_info->master_db = array('db_type' => 'mysql','db_port' => '3306','db_hostname' => 'localhost','db_userid' => 'root','db_password' => 'xxxxxxx','db_database' => 'xe','db_table_prefix' => 'xe_');
$db_info->slave_db = array(array('db_type' => 'mysql','db_port' => '3306','db_hostname' => 'localhost','db_userid' => 'root','db_password' => 'xxxxxxx','db_database' => 'xe','db_table_prefix' => 'xe_'));
$db_info->default_url = 'http://localhost/xe/';
$db_info->lang_type = 'ko';
$db_info->use_mobile_view = 'Y';

 

                            *. 죄송합니다. 비밀번호는 x로 칠했습니다.


4.  WnMP 의 error.log 파일의 내용

 

PHP Catchable fatal error:  Object of class Object could not be converted to string in C:\Wnmp\html\xe\classes\db\DBMysql.class.php on line 590" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "POST /xe/ HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "localhost", referrer: "http://localhost/xe/index.php?act=dispInstallManagerForm"


5.  Nginx.conf 파일의 내용 (똑같은 내용을 첨부파일로도 올렸습니다)

 

            worker_processes  1;


            error_log  logs/error.log;
            pid        logs/nginx.pid;

 

           events {
                  worker_connections  100;
           }

 

           http {
                 include       mime.types;
                 default_type  application/octet-stream;

                 access_log  logs/access.log;

                 sendfile        on;
                 #tcp_nopush     on;

 

                #keepalive_timeout  0;
                 keepalive_timeout  65;
                         ssl_session_timeout 10m;
                         ssl_protocols TLSv1.2 TLSv1.1 TLSv1 SSLv3;
                         ssl_ciphers ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH;
                         ssl_prefer_server_ciphers on;
                 gzip  on;

 

               # http server
              server {
                     listen 80; # IPv4
                     server_name localhost;

 

                      ## Parameterization using hostname of access and log filenames.
                       access_log logs/localhost_access.log;
                       error_log logs/localhost_error.log;

 

                      ## Root and index files.
                      root html;
                     index  index.php index.html index.htm;

 

                    ## If no favicon exists return a 204 (no content error).
                    location = /favicon.ico {
                            try_files $uri =204;
                            log_not_found off;
                            access_log off;
                   }
 
                   ## Try the requested URI as files before handling it to PHP.
                    location / {
 
                           ## Regular PHP processing.
                           location ~ \.php$ {
                                     root           html;
                                     try_files  $uri =404;
                                    fastcgi_pass   127.0.0.1:9000;
                                    fastcgi_index  index.php;
                                    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                                    include        fastcgi_params;
                            }
 
                    ## Don't log robots.txt requests.
                    location = /robots.txt {
                             allow all;
                             log_not_found off;
                             access_log off;
                    }  
 
                      ## Static files
                        location ~* \.(?:css|gif|htc|ico|js|jpe?g|png|swf)$ {
                                expires max;
                                       log_not_found off;
                                ## No need to bleed constant updates. Send the all shebang in one
                                ## fell swoop.
                                 tcp_nodelay off;
                                ## Set the OS file cache.
                               open_file_cache max=1000 inactive=120s;
                               open_file_cache_valid 45s;
                              open_file_cache_min_uses 2;
                              open_file_cache_errors off;
                       }
 
                        ## Keep a tab on the 'big' static files.
                         location ~* ^.+\.(?:ogg|pdf|pptx?)$ {
                                 expires 30d;
                                ## No need to bleed constant updates. Send the all shebang in one
                                ## fell swoop.
                                 tcp_nodelay off;
                           }
                     } # / location

            } # end http server

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
김태규887 페이지수정-표만들기 [1] file 2013.04.23 by ㅊㅇㅋㅋ
헥토파신 윈도우 서버에서 백업 어떻게 해야하죠? [1] 2013.04.23 by ㅊㅇㅋㅋ
영구만세 혹시 XE로 누적기록이 가능할까요?  
sohorang 카운터가 자정에 250부터 시작하네요.  
EvangelineA.K.Macdowell 하위 카테고리 사용시 상위 카테고리까지 출력하기.. [1] 2013.04.23 by 송동우
PEANUTSOUL 게시판 파일 첨부 오류 [1] file 2013.04.23 by ㅊㅇㅋㅋ
마법의가을 작성된 글을 관리자가 수정을 하면 글 작성자가 관리자로 바뀝니다. [1] 2013.04.23 by 몽실아빠
마음의빈자리 가입 폼 관리에 아이디 항목이 없어졌습니다. file  
김벡희 아이디로된 배너 클릭 시 포인트지급..  
최황삼 WNMP (Nginx)에서 XE 설치가 안됩니다. [2] file 2013.04.23 by 최황삼
스비라 member.model.php에서 member_info 구하기..  
태림씨야! xe migration empty page, 1.7.3.1  
크르릉33 $logged_info->group_list 관련 질문! [1] 2013.04.23 by 송동우
에엘 닉네임 수정 질문 [1] 2013.04.23 by 송동우
Fianna 특정 브라우저에서만 팝업 띄우기 [1] 2013.04.23 by 송동우
걷고있는그녀 사이트 광고 넣고싶어요 ㅠ [1] file 2013.04.23 by 송동우
ㄲㅏ 꿍 제로보드 xe 1.3.0버젼 게시판 설치땜에 문의 드려요 [1] 2013.04.23 by 푸시아
김벡희 닉네임 출력 질문드립니다... [1] 2013.04.22 by 송동우
김벡희 질문드립니다 ....  
걷고있는그녀 사이트에 광고소스를 넣고 싶은데 위치좀 가르쳐주세요 [1] file 2013.04.22 by 송동우
빵G select box에 링크를 넣는 방법은 없을까요?  
뱅다리 XE 1.7버전에서요...홈페이지 메인 설정 하는거 궁금합니다. [2] 2013.04.22 by 윈컴이
체리맛딸긔 관리자페이지와 게시판관련 질문  
o초코o 주소고정하면 ㅠㅠ  
양파대롱 xe가 해킹에 취약한가요? [2] 2020.03.14 by BNU
필살인생 XE 1.4.5.10 -> 1.7.3.1 업데이트 방법?? [1] 2013.04.22 by ㅊㅇㅋㅋ
하늘편지2 게시판관련 문의 [1] file 2013.04.22 by ㅊㅇㅋㅋ
YHR XE Core ver. 1.7.3.1 로 업뎃했는데요... [1] 2013.04.22 by ㅊㅇㅋㅋ
빵G layout.html 과 레이아웃, 스킨의 정의에 대한 질문입니다. [1] 2013.04.22 by ㅊㅇㅋㅋ
장재수 XE 1.7.3 홈페이지간에 게시판의 이미지 복사 붙이기 안되는 오류 file