-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.php
1806 lines (1752 loc) · 87.4 KB
/
setup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/// Copyright (c) 2004-2019, Needlworks / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT)
define('__TEXTCUBE_SETUP__',true);
header('Content-Type: text/html; charset=utf-8');
ini_set('display_errors', 'on');
define('ROOT','.');
//if (!defined('__TEXTCUBE_CACHE_DIR__')) {
define('__TEXTCUBE_CACHE_DIR__', ROOT . '/user/cache');
//}
require ROOT.'/framework/id/textcube/config.default.php';
if (version_compare(PHP_VERSION,'5.4.0', '<')) {
if(!isset($service['forceinstall']) || $service['forceinstall'] != true) {
header('HTTP/1.1 503 Service Unavailable');
echo "PHP Version mismatch. You need at least PHP 5.4.0 to install this version of Textcube.";
exit;
}
}
$bootFiles = array();
foreach (new DirectoryIterator(ROOT.'/framework/boot') as $fileInfo) {
if($fileInfo->isFile()) array_push($bootFiles, $fileInfo->getPathname());
}
sort($bootFiles);
foreach ($bootFiles as $bf) {
require_once($bf);
}
unset($bootFiles);
if (get_magic_quotes_gpc()) {
foreach ($_GET as $key => $value)
$_GET[$key] = stripslashes($value);
foreach ($_POST as $key => $value)
$_POST[$key] = stripslashes($value);
foreach ($_COOKIE as $key => $value)
$_COOKIE[$key] = stripslashes($value);
}
$host = explode(':', $_SERVER['HTTP_HOST']);
if (count($host) > 1) {
$_SERVER['HTTP_HOST'] = $host[0];
$_SERVER['SERVER_PORT'] = $host[1];
}
unset($host);
if(empty($accessInfo)) {
$root = substr($_SERVER['SCRIPT_FILENAME'], 0, strlen($_SERVER['SCRIPT_FILENAME']) - 10);
$path = stripPath(substr($_SERVER['PHP_SELF'], 0, strlen($_SERVER['PHP_SELF']) - 10));
} else {
$root = substr($_SERVER['SCRIPT_FILENAME'], 0, strlen($_SERVER['SCRIPT_FILENAME']) - 12);
$path = stripPath(substr($_SERVER['PHP_SELF'], 0, strlen($_SERVER['PHP_SELF']) - 12));
}
$_SERVER['PHP_SELF'] = rtrim($_SERVER['PHP_SELF'], '/');
// Set default table prefix.
if (isset($_POST['dbPrefix']) && $_POST['dbPrefix'] == '') {
$_POST['dbPrefix'] == 'tc_';
}
$context = Model_Context::getInstance();
$context->setProperty('import.library', array(
'function.string',
'function.time',
'function.javascript',
'function.html',
'function.xml',
'function.mail'));
if(isset($_POST['dbms'])) $database['dbms'] = $_POST['dbms'];
require ROOT.'/library/include.php';
importlib('model.blog.blogSetting');
importlib('model.blog.entry');
importlib('auth');
if (!empty($_GET['test'])) {
echo getFingerPrint();
exit;
}
$baseLanguage = 'ko';
if( !empty($_POST['Lang']) ) $baseLanguage = $_POST['Lang'];
$locale = Locales::getInstance();
$locale->setDomain('setup');
if( $locale->setDirectory(ROOT.'/resources/locale/setup') ) $locale->set( $baseLanguage , "setup");
if (file_exists($root . '/config.php') && (filesize($root . '/config.php') > 0)) {
header('HTTP/1.1 503 Service Unavailable');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo TEXTCUBE_NAME;?> <?php echo TEXTCUBE_VERSION;?> - Setup</title>
<link rel="stylesheet" media="screen" type="text/css" href="resources/style/setup/style.css" />
<script type="text/javascript">
//<![CDATA[
function current(){
document.getElementById("setup").submit();
}
//]]>
</script>
</head>
<body>
<div id="container">
<form id="setup" name="setup" method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
<div id="title">
<h1><img src="./resources/style/setup/image/title.gif" width="253" height="44" alt="Textcube를 점검합니다." /></h1>
</div>
<div id="inner">
<p class="message"><?php echo _t('다시 설정하시려면 config.php를 먼저 삭제하셔야 합니다.');?></p>
<p class="message">
<?php
if( $locale->setDirectory(ROOT.'/resources/locale/setup')) {
$currentLang = isset($_REQUEST['Lang']) ? $_REQUEST['Lang'] : '';
$availableLanguages = $locale->getSupportedLocales();
?>
Select Language : <select name="Lang" id = "Lang" onchange= "current();" >
<?php
foreach( $availableLanguages as $key => $value)
print('<option value="'.$key.'" '.( $key == $currentLang ? ' selected="selected" ' : '').' >'.$value.'</option>');
?></select>
<?php
}
?>
</p>
</div>
</form>
</div>
</body>
</html>
<?php
exit;
}
if (array_key_exists('phpinfo',$_GET)) {
phpinfo();
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo TEXTCUBE_NAME;?> <?php echo TEXTCUBE_VERSION;?> - Setup</title>
<link rel="stylesheet" media="screen" type="text/css" href="./resources/style/setup/style.css" />
<script type="text/javascript">
//<![CDATA[
function init() {
}
function previous() {
}
function current(){
document.getElementById("step").value ="";
document.getElementById("setup").submit();
}
function next(type) {
if (type != undefined)
document.getElementById("setupMode").value = type;
document.getElementById("setup").submit();
}
function show(id) {
if (document.getElementById("typeDomain"))
document.getElementById("typeDomain").style.display = "none";
if (document.getElementById("typePath"))
document.getElementById("typePath").style.display = "none";
if (document.getElementById("typeSingle"))
document.getElementById("typeSingle").style.display = "none";
if (document.getElementById(id))
document.getElementById(id).style.display = "block";
}
//]]>
</script>
</head>
<body onload="init()">
<div id="container">
<form id="setup" name="setup" method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
<div id="title">
<h1><img src="./resources/style/setup/image/title.gif" width="253" height="44" alt="<?php echo TEXTCUBE_NAME;?> <?php echo TEXTCUBE_VERSION;?> Setup" /></h1>
</div>
<input type="hidden" name="Lang" id="Lang" value="<?php echo $baseLanguage;?>" />
<?php
if (empty($_POST['step'])) {
?>
<div id="inner">
<input type="hidden" id="step" name="step" value="1" />
<h2><span class="step"><?php echo _f('%1단계', 1);?></span> : <?php echo _t('텍스트큐브 설치를 시작합니다.');?></h2>
<div id="langSel" >
<?php drawSetLang( $baseLanguage, 'Norm');?>
</div>
<div id="info"><b><?php echo TEXTCUBE_VERSION;?></b><br />
<?php echo TEXTCUBE_COPYRIGHT;?><br />
Homepage: <a href="<?php echo TEXTCUBE_HOMEPAGE;?>"><?php echo TEXTCUBE_HOMEPAGE;?></a>
</div>
<div id="content">
<ol>
<li><?php echo _t('소스를 포함한 소프트웨어에 포함된 모든 저작물(이하, 텍스트큐브)의 저작권자는 Needlworks / TNF 입니다.');?></li>
<li><?php echo _t('텍스트큐브는 GPL 라이선스로 제공되며, 모든 사람이 자유롭게 이용할 수 있습니다.');?></li>
<li><?php echo _t('프로그램 사용에 대한 유지 및 보수 등의 의무와, 사용 중 데이터 손실 등에 대한 사고책임은 모두 사용자에게 있습니다.');?></li>
<li><?php echo _t('스킨 및 트리, 플러그인의 저작권은 각 제작자에게 있습니다.');?></li>
</ol>
</div>
<div id="navigation">
<a href="#" onclick="next(); return false;" title="<?php echo _t('다음');?>"><img src="./resources/style/setup/image/icon_next.gif" width="74" height="24" alt="<?php echo _t('다음');?>" /></a>
</div>
</div>
<?php
}
else if ($_POST['step'] == 7) {
checkStep(8, false);
} else {
for ($i = 1; $i <= $_POST['step']; $i ++) {
if (!checkStep($i))
break;
}
if ($i > $_POST['step'])
checkStep($_POST['step'] + 1, false);
}
function checkStep($step, $check = true) {
global $root, $path;
$error = 0;
if ($step == 1) {
if ($check)
return true;
}
else if ($step == 2) {
if ($check) {
if (!empty($_POST['mode'])) {
switch ($_POST['mode']) {
case 'install':
case 'setup':
case 'uninstall':
return true;
}
}
}
?>
<input type="hidden" name="step" value="2" />
<input id="setupMode" type="hidden" name="mode" value="" />
<div id="inner">
<h2><span class="step"><?php echo _f('%1단계', 2);?></span> : <?php echo _t('작업 유형을 선택해 주십시오.');?></h2>
<div style="text-align:center">
<div style="width:100%; padding:40px 0px 40px 0px">
<div style="margin:20px;"><input type="button" value="<?php echo _t('새로운 텍스트큐브를 설정합니다');?>" style="width:100%; height:40px; font-size:14px" onclick="next('install');return false;" /></div>
<div style="margin:20px;"><input type="button" value="<?php echo _t('텍스트큐브를 다시 설정합니다');?>" style="width:100%; height:40px; font-size:14px" onclick="next('setup');return false;" /></div>
<div style="margin:20px;"><input type="button" value="<?php echo _t('텍스트큐브 테이블을 삭제합니다');?>" style="width:100%; height:40px; font-size:14px" onclick="next('uninstall');return false;" /></div>
</div>
</div>
</div>
<?php
}
else if ($step == 3) {
if ($check) {
switch ($_POST['mode']) {
case 'install':
case 'setup':
if (!empty($_POST['dbServer']) && !empty($_POST['dbName']) && !empty($_POST['dbUser']) && isset($_POST['dbPassword']) && isset($_POST['dbPrefix'])) {
$dbTemp = array('server'=>$_POST['dbServer'],'username'=>$_POST['dbUser'],'password'=>$_POST['dbPassword'],'port'=>$_POST['dbPort']);
if(!empty($_POST['dbName'])) $dbTemp['database'] = $_POST['dbName'];
global $dbms;
$dbms = $_POST['dbms'];
if (!POD::bind($dbTemp))
$error = 1;
// else if (!POD::select_db($_POST['dbName'])) // select_db is deprecated.
// $error = 2;
else if (!empty($_POST['dbPrefix']) && !preg_match('/^[a-zA-Z0-9_]+$/', $_POST['dbPrefix']))
$error = 3;
else
return true;
}
break;
case 'uninstall':
if (!empty($_POST['dbServer']) && !empty($_POST['dbName']) && !empty($_POST['dbUser']) && isset($_POST['dbPassword']) && !empty($_POST['dbPort'])) {
$dbTemp = array('server'=>$_POST['dbServer'],'username'=>$_POST['dbUser'],'password'=>$_POST['dbPassword'],'port'=>$_POST['dbPort']);
if(!empty($_POST['dbName'])) $dbTemp['database'] = $_POST['dbName'];
global $dbms;
$dbms = $_POST['dbms'];
if (!POD::bind($dbTemp))
$error = 1;
// else if (!POD::select_db($_POST['dbName'])) // select_db is deprecated.
// $error = 2;
else
return true;
}
break;
}
}
?>
<input type="hidden" name="step" value="3" />
<input type="hidden" name="mode" value="<?php echo $_POST['mode'];?>" />
<script type="text/javascript">
//<![CDATA[
function suggestDefaultPort(db) {
switch(db) {
case 'MySQLi':
default:
port = 3306;
break;
case 'Cubrid':
port = 30000;
break;
case 'PostgreSQL':
port = 5432;
break;
default:
port = '';
break;
}
document.getElementById('dbPort').value = port;
document.getElementById('dbms'+db).checked = checked;
return true;
}
//]]>
</script>
<div id="inner">
<h2><span class="step"><?php echo _f('%1단계', 3);?></span> : <?php echo _t('작업 정보를 입력해 주십시오.');?></h2>
<div id="userinput">
<table class="inputs">
<tr>
<th><?php echo _t('데이터베이스 관리 시스템');?> :</th>
<td>
<?php
$dbmsSupport = array();
if(function_exists('mysqli_connect')) array_push($dbmsSupport,'MySQLi');
if(function_exists('pg_connect')) array_push($dbmsSupport,'PostgreSQL');
if(class_exists('SQLite3')) array_push($dbmsSupport,'SQLite3');
if(function_exists('cubrid_connect')) array_push($dbmsSupport,'Cubrid');
foreach($dbmsSupport as $dbms) {
?>
<input type="radio" id="dbms<?php echo $dbms;?>" name="dbms" value="<?php echo $dbms;?>" <?php echo (((isset($_POST['dbms']) && $_POST['dbms'] == $dbms)||(!isset($_POST['dbms']) && $dbms == $dbmsSupport[0])) ? 'checked' : '');?> onclick="suggestDefaultPort('<?php echo $dbms;?>');return false;" /> <?php echo $dbms;?>
<?php
}
?>
</td>
</tr>
<tr>
<th><?php echo _t('데이터베이스 서버');?> :</th>
<td>
<input type="text" name="dbServer" value="<?php echo (isset($_POST['dbServer']) ? $_POST['dbServer'] : 'localhost');?>" class="input<?php echo ($check && (empty($_POST['dbServer']) || ($error == 1)) ? ' input_error' : '');?>" />
</td>
</tr>
<tr>
<th><?php echo _t('데이터베이스 포트');?> :</th>
<td>
<input type="text" id="dbPort" name="dbPort" value="<?php echo (isset($_POST['dbPort']) ? $_POST['dbPort'] :
'3306'
);?>" class="input<?php echo ($check && (empty($_POST['dbPort']) || ($error == 1)) ? ' input_error' : '');?>" />
</td>
</tr>
<tr>
<th><?php echo _t('데이터베이스 이름');?> :</th>
<td>
<input type="text" name="dbName" value="<?php echo (isset($_POST['dbName']) ? $_POST['dbName'] : NULL);?>" class="input<?php echo ($check && (empty($_POST['dbName']) || ($error == 2)) ? ' input_error' : '');?>" />
</td>
</tr>
<tr>
<th><?php echo _t('데이터베이스 사용자명');?> :</th>
<td>
<input type="text" name="dbUser" value="<?php echo (isset($_POST['dbUser']) ? $_POST['dbUser'] : '');?>" class="input<?php echo ($check && (empty($_POST['dbUser']) || $error) ? ' input_error' : '');?>" />
</td>
</tr>
<tr>
<th><?php echo _t('데이터베이스 암호');?> :</th>
<td>
<input type="password" name="dbPassword" value="<?php echo (isset($_POST['dbPassword']) ? htmlspecialchars($_POST['dbPassword']) : '');?>" class="input<?php echo ($check && ($error == 1) ? ' input_error' : '');?>" />
</td>
</tr>
<?php
switch ($_POST['mode']) {
case 'install':
case 'setup':
?>
<tr>
<th><?php echo _t('테이블 식별자');?> :</th>
<td>
<input type="text" name="dbPrefix" value="<?php echo (isset($_POST['dbPrefix']) ? $_POST['dbPrefix'] : 'tc_');?>" class="input <?php echo ($check && ($error == 3) ? ' input_error' : '');?>" />
</td>
</tr>
<?php
break;
case 'uninstall':
break;
}
?>
</table>
</div>
<div id="content">
<ol>
<li><?php echo _t('데이터베이스가 해당 호스트에 먼저 생성되어 있어야 합니다.');?></li>
<li><?php echo _t('테이블식별자는 텍스트큐브가 사용하는 테이블이름 앞에 붙는 문자열입니다. 데이터 베이스내에 다른 어플리케이션이 사용하는 테이블이 있을 경우 구별하기 위해 사용합니다');?> <?php echo _t('테이블식별자를 입력하지 않을 경우 자동으로 tc_ 를 사용합니다.');?></li>
</ol>
</div>
<div id="warning"><?php
if ($error == 1)
echo _t('데이터베이스 서버에 연결할 수 없습니다. 정보를 다시 입력해 주십시오.');
else if ($error == 2)
echo _t('데이터베이스를 사용할 수가 없습니다. 정보를 다시 입력해 주십시오.');
else if ($error == 3)
echo _t('테이블 식별자가 올바르지 않습니다. 다시 입력해 주십시오.');
else if ($error == 6)
echo _t('데이터베이스에 연결할 수 없습니다.');
else if ($error == 7)
echo _t('데이터베이스에 접근할 수 없습니다.');
else if ($error == 8)
echo _t('새로운 테이블 식별자가 올바르지 않습니다. 다시 입력해 주십시오.');
else if ($check)
echo _t('표시된 정보가 부족합니다.');
else
echo ' ';
?></div>
<div id="navigation">
<a href="#" onclick="window.history.back()" title="<?php echo _t('이전');?>"><img src="./resources/style/setup/image/icon_prev.gif" width="74" height="24" alt="<?php echo _t('이전');?>" /></a>
<a href="#" onclick="next(); return false;" title="<?php echo _t('다음');?>"><img src="./resources/style/setup/image/icon_next.gif" width="74" height="24" alt="<?php echo _t('다음');?>" /></a>
</div>
</div>
<?php
}
else if (($step == 4) || ($step == 33)) {
if ($check) {
if ($_POST['mode'] == 'uninstall') {
if (empty($_POST['target'])) {
checkStep(2, false);
return false;
}
else {
checkStep(205, false);
return false;
}
}
if (!empty($_POST['checked']) && $_POST['checked'] == 'yes')
return true;
}
if ($_POST['mode'] == 'uninstall')
return checkStep(204, false);
?>
<input type="hidden" name="step" value="4" />
<input type="hidden" name="mode" value="<?php echo $_POST['mode'];?>" />
<input type="hidden" name="dbms" value="<?php echo (isset($_POST['dbms']) ? $_POST['dbms'] : '');?>" />
<input type="hidden" name="dbServer" value="<?php echo (isset($_POST['dbServer']) ? $_POST['dbServer'] : '');?>" />
<input type="hidden" name="dbName" value="<?php echo (isset($_POST['dbName']) ? $_POST['dbName'] : '');?>" />
<input type="hidden" name="dbPort" value="<?php echo (isset($_POST['dbPort']) ? $_POST['dbPort'] : '');?>" />
<input type="hidden" name="dbUser" value="<?php echo (isset($_POST['dbUser']) ? $_POST['dbUser'] : '');?>" />
<input type="hidden" name="dbPassword" value="<?php echo (isset($_POST['dbPassword']) ? htmlspecialchars($_POST['dbPassword']) : '');?>" />
<input type="hidden" name="dbPrefix" value="<?php echo (isset($_POST['dbPrefix']) ? $_POST['dbPrefix'] : '');?>" />
<input type="hidden" name="disableRewrite" value="<?php echo (isset($_POST['disableRewrite']) ? $_POST['disableRewrite'] : '');?>" />
<div id="inner">
<h2><span class="step"><?php echo _f('%1단계', 4);?></span> : <?php echo _t('설치 요구 사항을 확인하고 있습니다.');?> </h2>
<div id="content-box">
<h3><?php echo _t('환경');?></h3>
<ul>
<li><?php echo _t('하드웨어');?>: <?php echo @exec('uname -mp');?></li>
<li><?php echo _t('운영체제');?>: <?php echo @exec('uname -sir');?></li>
<li><?php echo _t('웹서버');?>: <?php echo $_SERVER['SERVER_SOFTWARE'];?> <?php echo isset($_SERVER['SERVER_SIGNATURE']) ? $_SERVER['SERVER_SIGNATURE'] : '(no signature)';?></li>
<li><?php echo _t('PHP 버전');?>: <?php echo phpversion();?></li>
<li><?php echo _t('데이터베이스 종류');?>: <?php echo POD::dbms();?></li>
<li><?php echo _f('%1 버전',POD::dbms());?>: <?php echo POD::version();?></li>
</ul>
<h3>PHP</h3>
<ul>
<?php
$functions = "
addslashes
array_flip
array_key_exists
array_pop
array_push
array_shift
array_slice
base64_encode
ceil
checkdate
closedir
copy
count
dechex
dir
explode
fclose
feof
fgets
file_exists
file_get_contents
filesize
fopen
fputs
fread
fsockopen
function_exists
fwrite
get_magic_quotes_gpc
getimagesize
gmdate
gmmktime
gmstrftime
header
html_entity_decode
htmlspecialchars
implode
ini_set
intval
is_dir
is_file
is_null
is_numeric
is_writable
ksort
ltrim
max
md5
microtime
min
mkdir
mktime
move_uploaded_file
nl2br
number_format
ob_end_clean
ob_get_contents
ob_start
opendir
ord
parse_url
preg_match
preg_replace
rand
rawurlencode
readdir
rmdir
rtrim
session_cache_expire
session_destroy
session_id
session_name
session_set_cookie_params
session_set_save_handler
session_start
setcookie
sizeof
sprintf
str_replace
strftime
stripslashes
strlen
strncasecmp
strncmp
strpos
strrev
strtolower
strval
substr
substr_count
substr_replace
time
trim
unlink
urlencode
xml_get_error_code
xml_parse
xml_parser_create
xml_parser_free
xml_parser_set_option
xml_set_character_data_handler
xml_set_default_handler
xml_set_element_handler
xml_set_object
";
$required = array();
foreach (explode("\n", str_replace("\r", '', trim($functions))) as $function) {
if (!function_exists($function))
array_push($required, $function);
}
if (version_compare(PHP_VERSION, '5.4.0') === -1 && ( !isset( $service['forceinstall'] ) || $service['forceinstall']==false) ) {
$error = 4;
?>
<span style="color:red"><?php echo _f('PHP 버전이 낮습니다. 설치를 위해서는 최소한 %1 이상의 버전이 필요합니다.','5.4.0');?></span>
<?php
} else if (count($required) == 0) {
?>
<li>OK</li>
<?php
} else {
$error = 4;
?>
<span style="color:red"><?php echo _t('함수가 설치되어야 합니다.');?></span>
<?php
foreach ($required as $function) {
?>
<li style="color:red"><?php echo $function;?></li>
<?php
}
}
?>
</ul>
<h3><?php echo POD::dbms();?></h3>
<ul>
<?php
if (POD::charset() == 'utf8')
echo '<li>Character Set: OK</li>';
else {
echo '<li style="color:navy">Character Set: ', _t('UTF8 미지원 (경고: 한글 지원이 불완전할 수 있습니다.)'), '</li>';
}
if (POD::query("CREATE TABLE {$_POST['dbPrefix']}Setup (a INT NOT NULL)")) {
POD::query("DROP TABLE {$_POST['dbPrefix']}Setup");
echo '<li>', _t('테이블 생성 권한'), ': OK</li>';
}
else {
$error = 6;
echo '<li style="color:red">', _t('테이블 생성 권한'), ': ', _t('없음'), '</li>';
}
?>
</ul>
<?php
$tables = array();
if ($result = POD::tableList()) {
foreach($result as $table) {
if (strncmp($table, $_POST['dbPrefix'], strlen($_POST['dbPrefix'])))
continue;
switch (strtolower(substr($table, strlen($_POST['dbPrefix'])))) {
case 'attachments':
case 'blogsettings':
case 'blogstatistics':
case 'categories':
case 'comments':
case 'commentsnotified':
case 'commentsnotifiedqueue':
case 'commentsnotifiedsiteinfo':
case 'dailystatistics':
case 'entries':
case 'entriesarchive':
case 'feedgrouprelations':
case 'feedgroups':
case 'feeditems':
case 'feedreads':
case 'feedsettings':
case 'feedstarred':
case 'feeds':
case 'filters':
case 'linkcategories':
case 'links':
case 'openidusers':
case 'pagecachelog':
case 'plugins':
case 'refererlogs':
case 'refererstatistics':
case 'reservedwords':
case 'servicesetting':
case 'sessionvisits':
case 'sessions':
case 'skinsettings':
case 'tagrelations':
case 'tags':
case 'teamblog':
case 'trackbacklogs':
case 'trackbacks':
case 'usersettings':
case 'users':
case 'xmlrpcpingsettings':
$tables[count($tables)] = $table;
break;
}
}
}
switch ($_POST['mode']) {
case 'install':
echo '<h3>', _t('새 데이터베이스 테이블'), '</h3>';
if (count($tables) == 0) {
echo '<ul><li>OK</li></ul>';
} else {
$error = 7;
echo '<ul style="color:red">', _t('테이블이 이미 존재합니다.');
foreach ($tables as $table)
echo '<li>', $table, '</li>';
echo '</ul>';
}
break;
case 'setup':
echo '<h3>', _t('데이터베이스 테이블 확인'), '</h3>';
if (((count($tables) < 40) && (count($tables) > 35)) || ((count($tables) == 35) && !in_array('Filters', $tables))) {
echo '<ul><li>OK</li></ul>';
} else {
$error = 7;
echo '<ul style="color:red">', _t('테이블이 존재하지 않습니다.');
foreach ($tables as $table)
echo '<li>', $table, '</li>';
echo '</ul>';
}
}
?>
<h3><?php echo _t('파일 시스템 권한');?></h3>
<ul>
<?php
$commands = array();
$filename = $root . '/.htaccess';
if (file_exists($filename)) {
if (is_writable($filename)) {
if (filesize($filename))
echo '<li style="color:navy">', _f('설정 파일: OK (경고: "%1" 파일을 덮어 쓰게 됩니다.)', $filename), '</li>';
else
echo '<li>', _t('웹 설정 파일'), ': OK</li>';
}
else {
$error = 8;
echo '<li style="color:red">', _t('웹 설정 파일'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0666'), '</li>';
array_push($commands, 'chmod 0666 '.$filename);
}
}
else if (is_writable($root))
echo '<li>', _t('웹 설정 파일'), ': OK</li>';
else {
$error = 9;
echo '<li style="color:red">', _t('웹 설정 파일'), ': ', _f('"%1"에 %2 파일을 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, '.htaccess', '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$root);
}
$filename = $root . '/config.php';
if (file_exists($filename)) {
if (is_writable($filename)) {
if (filesize($filename))
echo '<li style="color:navy">', _f('설정 파일: OK (경고: "%1" 파일을 덮어 쓰게 됩니다.)', $filename), '</li>';
else
echo '<li>', _t('설정 파일'), ': OK</li>';
}
else {
$error = 10;
echo '<li style="color:red">', _t('설정 파일'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0666'), '</li>';
array_push($commands, 'chmod 0666 '.$filename);
}
}
else if (is_writable($root))
echo '<li>', _t('설정 파일'), ': OK</li>';
else {
$error = 11;
echo '<li style="color:red">', _t('설정 파일'), ': ', _f('"%1"에 %2 파일을 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'config.php', '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$root);
}
$filename = $root . '/user';
if (file_exists($filename)) {
if (is_dir($filename) && is_writable($filename))
echo '<li>', _t('사용자 데이터 디렉토리'), ': OK</li>';
else {
$error = 12;
echo '<li style="color:red">', _t('사용자 데이터 디렉토리'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$filename);
}
} else if (mkdir($filename)) {
@chmod($filename, 0777);
echo '<li>', _t('사용자 데이터 디렉토리'), ': OK</li>';
} else {
$error = 13;
echo '<li style="color:red">', _t('사용자 데이터 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'user', '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$root);
}
$filename = $root . '/user/attach';
if (file_exists($filename)) {
if (is_dir($filename) && is_writable($filename))
echo '<li>', _t('첨부 디렉토리'), ': OK</li>';
else {
$error = 12;
echo '<li style="color:red">', _t('첨부 디렉토리'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$filename);
}
} else if (mkdir($filename)) {
@chmod($filename, 0777);
echo '<li>', _t('첨부 디렉토리'), ': OK</li>';
} else {
$error = 13;
echo '<li style="color:red">', _t('첨부 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'attach', '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$root);
}
$filename = $root . '/user/cache';
if (is_dir($filename)) {
if (is_writable($filename))
echo '<li>', _t('캐시 디렉토리'), ': OK</li>';
else {
$error = 12;
echo '<li style="color:red">', _t('캐시 디렉토리'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$filename);
}
} else if (mkdir($filename)) {
@chmod($filename, 0777);
echo '<li>', _t('캐시 디렉토리'), ': OK</li>';
} else {
$error = 13;
echo '<li style="color:red">', _t('캐시 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'cache', '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$root);
}
/* $filename = $root . '/remote';
if (is_dir($filename)) {
if (is_writable($filename))
echo '<li>', _t('원격 설치 디렉토리'), ': OK</li>';
else {
$error = 12;
echo '<li style="color:red">', _t('원격 설치 디렉토리'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0777'), '</li>';
}
} else if (mkdir($filename)) {
@chmod($filename, 0777);
echo '<li>', _t('원격 설치 디렉토리'), ': OK</li>';
} else {
$error = 13;
echo '<li style="color:red">', _t('원격 설치 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'cache', '0777'), '</li>';
}*/
$filename = $root . '/user/skin/blog/customize';
if (is_dir($filename)) {
if (is_writable($filename))
echo '<li>', _t('스킨 디렉토리'), ': OK</li>';
else {
$error = 14;
echo '<li style="color:red">', _t('스킨 디렉토리'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0777'), '</li>';
array_push($commands, 'chmod 0777 '.$filename);
}
} else if (mkdir($filename)) {
@chmod($filename, 0777);
echo '<li>', _t('스킨 디렉토리'), ': OK</li>';
} else {
$error = 15;
echo '<li style="color:red">', _t('스킨 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', "$root/user/skin/blog", 'customize', '0777'), '</li>';
array_push($commands, 'chmod 0777 '."$root/user/skin/blog");
}
?>
</ul>
<?php
if (!empty($commands)) {
echo '<span class="instruction">'._t("퍼미션 수정은 FTP 프로그램을 사용하시거나 다음의 명령을 터미널에 붙여 넣으시면 됩니다.")."</span>";
echo '<ul class="instruction">';
$commands = array_unique($commands);
foreach($commands as $command) {
echo "<li>" . $command . "</li>";
}
echo '</ul>';
}
if ($step == 33) {
$error = 16;
if (checkIIS()) {
?>
<h3><?php echo _t('IIS Rewrite Module');?></h3>
<ul style="color:red">
<li><?php echo _t('현재 IIS에서의 설치는 실험적으로만 지원하고 있으며 별도의 Rewrite 모듈을 사용해야 합니다.').' '._t('만약 이 페이지를 보고 계시다면 Apache mod_rewrite와 호환되지 않는 Rewrite 모듈을 사용 중이거나 아예 모듈이 없는 경우입니다.'); ?></li>
<li><?php echo _t('IIS 7.0을 사용하시는 경우 공식 URL Rewrite Module을 사용하려면 <a href="http://www.iis.net/extensions/URLRewrite">이곳에서 다운로드</a>받아 설치하시고, 계속 진행·설치 후 생성되는 <b>.htaccess</b> 파일 내용을 그대로 import해주시면 됩니다.'); ?></li>
<li><?php echo _t('IIS 6.0 이전 버전을 사용하시는 경우 Rewrite 모듈을 설치하려면, 오픈스소 무료 모듈을 제공하고 있는 <a href="http://www.codeplex.com/IIRF" target="_blank">Ionics Isapi Rewrite Filter 홈페이지</a>를 방문하여 설치하신 후, 계속 진행·설치 후 생성되는 <b>.htaccess</b> 파일의 내용을 위 모듈의 설정파일(<b>IsapiRewrite4.ini</b>)에 복사하시기 바랍니다.'); ?></li>
</ul>
<p>
<input type="radio" name="rewriteIIS" value="IISRewrite" id="rewriteIIS_Option1"><label for="rewriteIIS_Option1"><?php echo _t('IIS 7.0용 공식 URL Rewrite 모듈을 사용합니다.'); ?></label><br />
<input type="radio" name="rewriteIIS" value="ISAPI" id="rewriteIIS_Option2"><label for="rewriteIIS_Option2"><?php echo _t('IIS 6.0 및 그 이전 버전을 위한 오픈소스 Rewrite 모듈을 사용합니다.'); ?></label>
</p>
<?php
$error = 0;
} else {
?>
<h3><?php echo _t('Apache Rewrite Engine');?></h3>
<ul style="color:red">
<li><?php echo _t('Rewrite를 사용할 수 없습니다.');?><br /><span style="color:black"><?php echo _t('다음 항목을 확인하십시오.');?></span></li>
<input type="checkbox" id="disableRewrite" name="disableRewrite" />
<label for="disableRewrite"><?php echo _t('rewrite 모듈을 사용하지 않습니다.').' '._t('만약 rewrite 모듈 설정을 올바르게 했는데도 모듈 사용 여부의 검사에 문제가 있는 경우 rewrite 모듈을 사용하지 않음을 선택하시고 이 부분을 건너 뛰시기 바랍니다.').' '._t('지금 설정하지 않아도 설치 이후에 관리 패널의 서비스설정-서버 에서 rewrite 관련 설정을 할 수 있습니다.');?></label>
<ol style="color:blue">
<li><?php echo _t('웹서버 설정에 <b>mod_rewrite</b>의 로딩이 포함되어야 합니다.');?><br />
<samp><?php echo _t('예: LoadModule <b>rewrite_module</b> modules/<b>mod_rewrite</b>.so');?></samp>
</li>
<li><?php echo _t('웹서버 설정의 이 디렉토리에 대한 <em>Options</em> 항목에 <b>FollowSymLinks</b>가 포함되거나 <b>All</b>이어야 합니다.');?>
<samp><br /><?php echo _t('예: Options <b>FollowSymLinks</b>');?></samp>
<samp><br /><?php echo _t('예: Options <b>All</b>');?></samp>
</li>
<li><?php echo _t('웹서버 설정의 이 디렉토리에 대한 <em>AllowOverride</em> 항목에 <b>FileInfo</b>가 포함되거나 <b>All</b>이어야 합니다.');?>
<samp><br /><?php echo _t('예: AllowOverride <b>FileInfo</b>');?></samp>
<samp><br /><?php echo _t('예: AllowOverride <b>All</b>');?></samp>
</li>
<li><b><?php echo _t('위 2와 3의 문제는 아래 내용을 웹서버 설정에 포함시켜 해결할 수 있습니다.');?></b>
<samp style="color:black"><br />
<Directory "<?php echo $root;?>"><br />
Options FollowSymLinks<br />
AllowOverride FileInfo<br />
</Directory>
</samp>
</li>
</ul>
</ul>
<?php
}
}
?>
</div>
<div id="navigation">
<a href="#" onclick="window.history.back()" title="<?php echo _t('이전');?>"><img src="./resources/style/setup/image/icon_prev.gif" width="74" height="24" alt="<?php echo _t('이전');?>" /></a>
<a href="#" onclick="next(); return false;" title="<?php echo _t('다음');?>"><img src="./resources/style/setup/image/icon_next.gif" width="74" height="24" alt="<?php echo _t('다음');?>" /></a>
</div>
</div>
<input type="hidden" name="checked" value="<?php echo ($error > 0 ? 'no' : 'yes');?>" />
<?php
}
else if ($step == 5) {
if ($check) {
if (!empty($_POST['domain']) && !empty($_POST['type']))
return true;
}
// mod_rewrite routine.
if(empty($_POST['disableRewrite']) && empty($_POST['rewriteIIS'])) {
$filename = $root . '/.htaccess';
$fp = fopen($filename, 'w+');
if (!$fp) {
checkStep($step - 1, false);
return false;
}
fwrite($fp,
"RewriteEngine On
RewriteBase $path/
RewriteRule ^testrewrite$ setup.php [L]"
);
fclose($fp);
@chmod($filename, 0666);
if (testMyself('blog' . substr($_SERVER['HTTP_HOST'], strpos($_SERVER['HTTP_HOST'], '.')), $path . '/testrewrite?test=now', $_SERVER['SERVER_PORT']))
$rewrite = 3;
else if (testMyself('blog.' . $_SERVER['HTTP_HOST'], $path . '/testrewrite?test=now', $_SERVER['SERVER_PORT']))
$rewrite = 2;
else if (testMyself($_SERVER['HTTP_HOST'], $path . '/testrewrite?test=now', $_SERVER['SERVER_PORT']))
$rewrite = 1;
else {
$rewrite = 0;
@unlink($filename);
checkStep(33, false);
return false;
}
@unlink($filename);
} else if (!empty($_POST['rewriteIIS'])) {
switch ($_POST['rewriteIIS']) {
case 'ISAPI':
$rewrite = -1;
break;
case 'IISRewrite':
default:
$rewrite = -2;
}
} else {
$rewrite = 0;
}
$domain = $rewrite == 3 ? substr($_SERVER['HTTP_HOST'], strpos($_SERVER['HTTP_HOST'], '.') + 1) : $_SERVER['HTTP_HOST'];
$blogProtocol = isset($_SERVER['HTTPS']) ? 'https' : 'http';
$blogDefaultPort = isset($_SERVER['HTTPS']) ? 443 : 80;
?>
<input type="hidden" name="step" value="<?php echo $step;?>" />
<input type="hidden" name="mode" value="<?php echo $_POST['mode'];?>" />
<input type="hidden" name="dbms" value="<?php echo (isset($_POST['dbms']) ? $_POST['dbms'] : '');?>" />
<input type="hidden" name="dbServer" value="<?php echo (isset($_POST['dbServer']) ? $_POST['dbServer'] : '');?>" />
<input type="hidden" name="dbPort" value="<?php echo (isset($_POST['dbPort']) ? $_POST['dbPort'] : '');?>" />
<input type="hidden" name="dbName" value="<?php echo (isset($_POST['dbName']) ? $_POST['dbName'] : '');?>" />
<input type="hidden" name="dbUser" value="<?php echo (isset($_POST['dbUser']) ? $_POST['dbUser'] : '');?>" />
<input type="hidden" name="dbPassword" value="<?php echo (isset($_POST['dbPassword']) ? htmlspecialchars($_POST['dbPassword']) : '');?>" />
<input type="hidden" name="dbPrefix" value="<?php echo (isset($_POST['dbPrefix']) ? $_POST['dbPrefix'] : '');?>" />
<input type="hidden" name="checked" value="<?php echo (isset($_POST['checked']) ? $_POST['checked'] : '');?>" />
<input type="hidden" name="domain" value="<?php echo $domain;?>" />
<input type="hidden" name="disableRewrite" value="<?php echo (isset($_POST['disableRewrite']) ? $_POST['disableRewrite'] : '');?>" />
<input type="hidden" name="rewriteMode" value="<?php echo ($rewrite <= -1) ? $_POST['rewriteIIS'] : 'mod_rewrite';?>" />
<div id="inner">
<h2><span class="step"><?php echo _f('%1단계', $step);?></span> : <?php echo _t('사용 가능한 운영 방법은 다음과 같습니다. 선택하여 주십시오.');?></h2>
<div id="userinput">
<table class="inputs">
<?php
if ($rewrite != 0) {
?>
<tr>
<th width="120"><strong><?php echo _t('다중 사용자');?> : </strong></th>
<td>
<?php
if ($rewrite >= 2) {
?>
<label for="type1"><input type="radio" id="type1" name="type" value="domain" checked="checked" onclick="show('typeDomain');" />
<?php echo _t('도메인네임(DNS)으로 블로그 식별');?></label>
<br />
<?php
}
?>
<label for="type2"><input type="radio" id="type2" name="type" value="path"<?php echo (($rewrite == 1 || $rewrite == -1) ? ' checked="checked"' : '');?> onclick="show('typePath');" />
<?php echo _t('하위 경로(Path)로 블로그 식별');?></label></td>
</tr>
<?php
}
?>
<tr>
<th style="padding-top:10px"><strong><?php echo _t('단일 사용자');?> : </strong></th>
<td style="padding-top:10px">
<label for="type3"><input type="radio" id="type3" name="type" value="single" onclick="show('typeSingle');" <?php echo (empty($_POST['disableRewrite']) ? '' : 'checked="checked"');?> /><?php echo _t('단일 블로그');?></label></td>
</tr>
<tr>
<th style="padding-top:20px"><?php echo _t('블로그 주소 예시');?></th>
<td style="padding-top:20px; height:100px">
<ul id="typeDomain"<?php echo ($rewrite >= 2 ? '' : ' style="display:none"');?>>
<li><?php echo $blogProtocol;?>://<b>blog1</b>.<?php echo $domain;?><?php echo ($_SERVER['SERVER_PORT'] == $blogDefaultPort ? '' : ":{$_SERVER['SERVER_PORT']}");?><?php echo $path;?>/</li>
<li><?php echo $blogProtocol;?>://<b>blog2</b>.<?php echo $domain;?><?php echo ($_SERVER['SERVER_PORT'] == $blogDefaultPort ? '' : ":{$_SERVER['SERVER_PORT']}");?><?php echo $path;?>/</li>