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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
|
<?php /** * install routine for zenphoto * @package setup */ // force UTF-8 Ø Define('PHP_MIN_VERSION', '5.2'); Define('PHP_DESIRED_VERSION', '5.4');
// leave this as the first executable statement to avoid problems with PHP not having gettext support. if (!function_exists("gettext")) { require_once(dirname(dirname(__FILE__)) . '/lib-gettext/gettext.inc'); $noxlate = -1; } else { $noxlate = 1; } define('HTACCESS_VERSION', '1.4.5'); // be sure to change this the one in .htaccess when the .htaccess file is updated.
define('OFFSET_PATH', 2);
if (version_compare(PHP_VERSION, '5.0.0', '<')) { die(sprintf(gettext('Zenphoto requires PHP version %s or greater'), PHP_MIN_VERSION)); } require_once(dirname(dirname(__FILE__)) . '/global-definitions.php');
$session_path = session_save_path(); if (!file_exists($session_path) || !is_writable($session_path)) { @mkdir(dirname(dirname(dirname(__FILE__))) . '/' . DATA_FOLDER . '/PHP_sessions', $chmod | 0311); session_save_path(dirname(dirname(dirname(__FILE__))) . '/' . DATA_FOLDER . '/PHP_sessions'); }
$session = session_start();
header('Last-Modified: ' . ZP_LAST_MODIFIED); header('Content-Type: text/html; charset=UTF-8'); header("Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0");
require_once(dirname(__FILE__) . '/setup-functions.php'); if ($debug = isset($_REQUEST['debug'])) { if (!$debug = $_REQUEST['debug']) { $debug = true; } }
$setup_checked = isset($_GET['checked']); $upgrade = false;
require_once(dirname(dirname(__FILE__)) . '/lib-utf8.php');
if (isset($_REQUEST['autorun'])) { if (!empty($_REQUEST['autorun'])) { $autorun = setup_sanitize($_REQUEST['autorun']); } else { $autorun = 'admin'; } unset($_GET['autorun']); unset($_POST['autorun']); } else { $autorun = false; }
$chmod = fileperms(dirname(dirname(__FILE__))) & 0666;
$en_US = dirname(dirname(__FILE__)) . '/locale/en_US/'; if (!file_exists($en_US)) { @mkdir(dirname(dirname(__FILE__)) . '/locale/', $chmod | 0311); @mkdir($en_US, $chmod | 0311); }
$zptime = time(); if (!file_exists($serverpath . '/' . DATA_FOLDER)) { @mkdir($serverpath . '/' . DATA_FOLDER, $chmod | 0311); }
@unlink(SERVERPATH . '/' . DATA_FOLDER . '/zenphoto.cfg.bak'); // remove any old backup file
if (file_exists($oldconfig = SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE)) { $zpconfig = file_get_contents($oldconfig); if (strpos($zpconfig, '<?php') === false) { $zpconfig = "<?php\n" . $zpconfig . "\n?>"; file_put_contents(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE, $zpconfig); configMod(); } $newconfig = false; } else if (file_exists($oldconfig = dirname(dirname(dirname(__FILE__))) . '/' . ZENFOLDER . '/zp-config.php')) { //migrate old root configuration file. $zpconfig = file_get_contents($oldconfig); $i = strpos($zpconfig, '/** Do not edit above this line. **/'); $zpconfig = "<?php\nglobal \$_zp_conf_vars;\n\$conf = array()\n" . substr($zpconfig, $i); file_put_contents(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE, $zpconfig); $result = @unlink(dirname(dirname(dirname(__FILE__))) . '/' . ZENFOLDER . '/zp-config.php'); $newconfig = false; configMod(); } else if (file_exists($oldconfig = SERVERPATH . '/' . DATA_FOLDER . '/zenphoto.cfg')) { $zpconfig = "<?php\n" . file_get_contents($oldconfig) . "\n?>"; file_put_contents(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE, $zpconfig); @unlink(SERVERPATH . '/' . DATA_FOLDER . '/zenphoto.cfg'); $newconfig = false; configMod(); } else { $newconfig = true; @copy(dirname(dirname(__FILE__)) . '/zenphoto_cfg.txt', SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE); }
$zptime = filemtime($oldconfig = SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE); @copy(dirname(dirname(__FILE__)) . '/dataaccess', $serverpath . '/' . DATA_FOLDER . '/.htaccess'); @chmod($serverpath . '/' . DATA_FOLDER . '/.htaccess', 0444);
if (session_id() == '') { session_start(); } if (isset($_GET['mod_rewrite'])) { $mod = '&mod_rewrite=' . $_GET['mod_rewrite']; } else { $mod = ''; }
$zp_cfg = @file_get_contents(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE); $xsrftoken = sha1(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE . $zp_cfg . session_id());
$updatezp_config = false;
if (strpos($zp_cfg, "\$conf['special_pages']") === false) { $template = file_get_contents(dirname(dirname(__FILE__)) . '/zenphoto_cfg.txt'); $i = strpos($template, "\$conf['special_pages']"); $j = strpos($template, '//', $i); $k = strpos($zp_cfg, '/** Do not edit below this line. **/'); if ($k !== false) { $zp_cfg = substr($zp_cfg, 0, $k) . str_pad('', 80, '/') . "\n" . substr($template, $i, $j - $i) . str_pad('', 5, '/') . "\n" . substr($zp_cfg, $k); $updatezp_config = true; } }
$i = strpos($zp_cfg, 'define("DEBUG", false);'); if ($i !== false) { $updatezp_config = true; $j = strpos($zp_cfg, "\n", $i); $zp_cfg = substr($zp_cfg, 0, $i) . substr($zp_cfg, $j); // remove this so it won't be defined twice }
if (isset($_POST['db'])) { //try to update the zp-config file setupXSRFDefender(); setupLog(gettext("db POST handling")); $updatezp_config = true; if (isset($_POST['db_software'])) { $zp_cfg = updateConfigItem('db_software', setup_sanitize($_POST['db_software']), $zp_cfg); } if (isset($_POST['db_user'])) { $zp_cfg = updateConfigItem('mysql_user', setup_sanitize($_POST['db_user']), $zp_cfg); } if (isset($_POST['db_pass'])) { $zp_cfg = updateConfigItem('mysql_pass', setup_sanitize($_POST['db_pass']), $zp_cfg); } if (isset($_POST['db_host'])) { $zp_cfg = updateConfigItem('mysql_host', setup_sanitize($_POST['db_host']), $zp_cfg); } if (isset($_POST['db_database'])) { $zp_cfg = updateConfigItem('mysql_database', trim(setup_sanitize($_POST['db_database'])), $zp_cfg); } if (isset($_POST['db_prefix'])) { $zp_cfg = updateConfigItem('mysql_prefix', str_replace(array('.', '/', '\\', '`', '"', "'"), '_', trim(setup_sanitize($_POST['db_prefix']))), $zp_cfg); } }
define('ACK_REGISTER_GLOBALS', 1); define('ACK_DISPLAY_ERRORS', 2);
if (isset($_GET['security_ack'])) { setupXSRFDefender(); $zp_cfg = updateConfigItem('security_ack', (isset($conf['security_ack']) ? $cache['keyword'] : NULL) | (int) $_GET['security_ack'], $zp_cfg, false); $updatezp_config = true; }
$permission_names = array( 0444 => gettext('readonly'), 0644 => gettext('strict'), 0664 => gettext('relaxed'), 0666 => gettext('loose') ); $permissions = array_keys($permission_names); if ($updatechmod = isset($_REQUEST['chmod_permissions'])) { setupXSRFDefender(); $selected = round($_REQUEST['chmod_permissions']); if ($selected >= 0 && $selected < count($permissions)) { $chmod = $permissions[$selected]; } else { $updatechmod = false; } } if ($updatechmod || $newconfig) { if ($updatechmod || isset($_zp_conf_vars['CHMOD'])) { $chmodval = "\$conf['CHMOD']"; } else { $chmodval = sprintf('0%o', $chmod); } if ($updatechmod) { $zp_cfg = updateConfigItem('CHMOD', sprintf('0%o', $chmod), $zp_cfg, false); if (strpos($zp_cfg, "if (!defined('CHMOD_VALUE')) {") !== false) { $zp_cfg = preg_replace("|if\s\(!defined\('CHMOD_VALUE'\)\)\s{\sdefine\(\'CHMOD_VALUE\'\,(.*)\);\s}|", "if (!defined('CHMOD_VALUE')) { define('CHMOD_VALUE', " . $chmodval . "); }\n", $zp_cfg); } else { $i = strpos($zp_cfg, "/** Do not edit below this line. **/"); $zp_cfg = substr($zp_cfg, 0, $i) . "if (!defined('CHMOD_VALUE')) { define('CHMOD_VALUE', " . $chmodval . "); }\n" . substr($zp_cfg, $i); } } $updatezp_config = true; }
if (isset($_REQUEST['FILESYSTEM_CHARSET'])) { setupXSRFDefender(); $fileset = $_REQUEST['FILESYSTEM_CHARSET']; $zp_cfg = updateConfigItem('FILESYSTEM_CHARSET', $fileset, $zp_cfg); $updatezp_config = true; } if ($updatezp_config) { updateConfigfile($zp_cfg); $updatezp_config = false; }
$curdir = getcwd(); chdir(dirname(dirname(__FILE__))); // Important. when adding new database support this switch may need to be extended, $engines = array(); $preferences = array('mysqli' => 1, 'pdo_mysql' => 2, 'mysql' => 3); $cur = 999999; $preferred = NULL; foreach (setup_glob('functions-db-*.php') as $key => $engineMC) { $engineMC = substr($engineMC, 13, -4); $engine = strtolower($engineMC); if (array_key_exists($engine, $preferences)) { $order = $preferences[$engine]; $enabled = extension_loaded($engine); if ($enabled && $order < $cur) { $preferred = $engineMC; $cur = $order; } $engines[$order] = array('user' => true, 'pass' => true, 'host' => true, 'database' => true, 'prefix' => true, 'engine' => $engineMC, 'enabled' => $enabled); } } ksort($engines); chdir($curdir);
if (file_exists(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE)) { unset($_zp_conf_vars); require(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE); if (isset($_zp_conf_vars) && !isset($conf) && isset($_zp_conf_vars['special_pages'])) { if (isset($_zp_conf_vars['db_software'])) { $confDB = $_zp_conf_vars['db_software']; if (empty($_POST) && empty($_GET) && ($confDB === 'MySQL' || $preferred != 'MySQL')) { $confDB = NULL; } if (extension_loaded(strtolower($confDB)) && file_exists(dirname(dirname(__FILE__)) . '/functions-db-' . $confDB . '.php')) { $selected_database = $_zp_conf_vars['db_software']; } else { $selected_database = $preferred; if ($preferred) { $_zp_conf_vars['db_software'] = $preferred; $zp_cfg = updateConfigItem('db_software', $preferred, $zp_cfg); $updatezp_config = true; } } } else { $_zp_conf_vars['db_software'] = $selected_database = $preferred; $zp_cfg = updateConfigItem('db_software', $zp_cfg, $preferred); $updatezp_config = true; $confDB = NULL; } if ($selected_database) { require_once(dirname(dirname(__FILE__)) . '/functions-db-' . $selected_database . '.php'); } else { require_once(dirname(dirname(__FILE__)) . '/functions-db_NULL.php'); } } else { // There is a problem with the configuration file ?> <div style="background-color: red;font-size: xx-large;"> <p> <?php echo gettext('A corrupt configuration file was detected. You should remove or repair the file and re-run setup.'); ?> </p> </div> <?php exit(); } }
if ($updatezp_config) { updateConfigfile($zp_cfg); }
$result = true; $environ = false; $DBcreated = false; $oktocreate = false; $connection = false; $connectDBErr = '';
if ($selected_database) { $connectDBErr = ''; $connection = db_connect($_zp_conf_vars, false); if ($connection) { // got the database handler and the database itself connected $result = query("SELECT `id` FROM " . $_zp_conf_vars['mysql_prefix'] . 'options' . " LIMIT 1", false); if ($result) { if (db_num_rows($result) > 0) { $upgrade = gettext("upgrade"); // apply some critical updates to the database for migration issues query('ALTER TABLE ' . $_zp_conf_vars['mysql_prefix'] . 'administrators' . ' ADD COLUMN `valid` int(1) default 1', false); query('ALTER TABLE ' . $_zp_conf_vars['mysql_prefix'] . 'administrators' . ' CHANGE `password` `pass` varchar(64)', false); query('ALTER TABLE ' . $_zp_conf_vars['mysql_prefix'] . 'administrators' . ' ADD COLUMN `loggedin` datetime', false); query('ALTER TABLE ' . $_zp_conf_vars['mysql_prefix'] . 'administrators' . ' ADD COLUMN `lastloggedin` datetime', false); query('ALTER TABLE ' . $_zp_conf_vars['mysql_prefix'] . 'administrators' . ' ADD COLUMN `challenge_phrase` TEXT', false); } } $environ = true; require_once(dirname(dirname(__FILE__)) . '/admin-functions.php'); } else { if ($_zp_DB_connection) { // there was a connection to the database handler but not to the database. if (!empty($_zp_conf_vars['mysql_database'])) { if (isset($_GET['Create_Database'])) { $result = db_create(); if ($result && ($connection = db_connect($_zp_conf_vars, false))) { $environ = true; require_once(dirname(dirname(__FILE__)) . '/admin-functions.php'); } else { if ($result) { $DBcreated = true; } else { $connectDBErr = db_error(); } } } else { $oktocreate = true; } } } else { $connectDBErr = db_error(); } } }
if (defined('CHMOD_VALUE')) { $chmod = CHMOD_VALUE & 0666; }
if (function_exists('setOption')) { setOptionDefault('zp_plugin_security-logger', 9 | CLASS_PLUGIN); } else { // setup a primitive environment $environ = false; require_once(dirname(__FILE__) . '/setup-primitive.php'); require_once(dirname(dirname(__FILE__)) . '/functions-filter.php'); require_once(dirname(dirname(__FILE__)) . '/functions-i18n.php'); }
if ($newconfig || isset($_GET['copyhtaccess'])) { if ($newconfig && !file_exists($serverpath . '/.htaccess') || setupUserAuthorized()) { @chmod($serverpath . '/.htaccess', 0777); $ht = @file_get_contents(SERVERPATH . '/.htaccess'); $newht = file_get_contents(SERVERPATH . '/' . ZENFOLDER . '/htaccess'); if (site_closed($ht)) { $newht = close_site($newht); } file_put_contents($serverpath . '/.htaccess', $newht); @chmod($serverpath . '/.htaccess', 0444); } }
if ($setup_checked) { if (!isset($_GET['protect_files'])) { setupLog(gettext("Completed system check"), true); if (isset($_COOKIE['setup_test_cookie'])) { $setup_cookie = $_COOKIE['setup_test_cookie']; } else { $setup_cookie = ''; } if ($setup_cookie == ZENPHOTO_RELEASE) { setupLog(gettext('Setup cookie test successful')); setcookie('setup_test_cookie', '', time() - 368000, '/'); } else { setupLog(gettext('Setup cookie test unsuccessful'), true); } } } else { if (isset($_POST['db'])) { setupLog(gettext("Post of Database credentials"), true); } else { $me = dirname(dirname(dirname(str_replace('\\', '/', __FILE__)))); $mine = SERVERPATH; if (isWin() || isMac()) { // case insensitive file systems $me = strtolower($me); $mine = strtolower($mine); } if ($mine == $me) { $clone = ''; } else { $clone = ' ' . gettext('clone'); } setupLog(sprintf(gettext('Zenphoto Setup v%1$s[%2$s]%3$s: %4$s'), ZENPHOTO_VERSION, ZENPHOTO_RELEASE, $clone, date('r')), true, true); // initialize the log file } if ($environ) { setupLog(gettext("Full environment")); } else { setupLog(gettext("Primitive environment")); if ($connectDBErr) { setupLog(sprintf(gettext("Query error: %s"), $connectDBErr), true); } } setcookie('setup_test_cookie', ZENPHOTO_RELEASE, time() + 3600, '/'); }
if (!isset($_zp_setupCurrentLocale_result) || empty($_zp_setupCurrentLocale_result)) { if (DEBUG_LOCALE) debugLog('Setup checking locale'); $_zp_setupCurrentLocale_result = setMainDomain(); if (DEBUG_LOCALE) debugLog('$_zp_setupCurrentLocale_result = ' . $_zp_setupCurrentLocale_result); }
$taskDisplay = array('create' => gettext("create"), 'update' => gettext("update")); if ($i = getOption('zenphoto_install')) { $install = unserialize($i); $prevRel = $install['ZENPHOTO']; } else { $prevRel = ''; }
if (empty($prevRel)) { // pre 1.4.2 release, compute the version $prevRel = getOption('zenphoto_release'); $zp_versions = array('1.2' => '2213', '1.2.1' => '2635', '1.2.2' => '2983', '1.2.3' => '3427', '1.2.4' => '3716', '1.2.5' => '4022', '1.2.6' => '4335', '1.2.7' => '4741', '1.2.8' => '4881', '1.2.9' => '5088', '1.3.0' => '5088', '1.3.1' => '5736', '1.4' => '6454', '1.4.1' => '6506', 'x.x.x' => '99999999'); if (empty($prevRel)) { $release = gettext('Upgrade from before Zenphoto v1.2'); $prevRel = '1.x'; $c = count($zp_versions); $check = -1; } else { $c = 0; foreach ($zp_versions as $rel => $build) { if ($build > $prevRel) { break; } else { $c++; $release = sprintf(gettext('Upgrade from Zenphoto v%s'), $rel); } } if ($c == count($zp_versions) - 1) { $check = 1; $release = gettext('Reinstalling current Zenphoto release'); $upgrade = gettext('reinstall'); } else { $check = -1; $c = count($zp_versions) - 1 - $c; } } } else { preg_match('/[0-9,\.]*/', ZENPHOTO_VERSION, $matches); $rel = explode('.', $matches[0] . '.0'); preg_match('/[0-9,\.]*/', $prevRel, $matches); $prevRel = explode('.', $matches[0] . '.0'); $release = sprintf(gettext('Upgrade from Zenphoto v%s'), $matches[0]); $c = ($rel[0] - $prevRel[0]) * 100 + ($rel[1] - $prevRel[1]) * 10 + ($rel[1] - $prevRel[1]); if ($prevRel[0] == 1 && $prevRel[1] <= 3) { $c = $c - 8; // there were only two 1.3.x releases } switch ($c) { case 1: $check = 1; break; default: $check = -1; break; } } if ($c <= 0) { $check = 1; $release = gettext('Reinstalling current Zenphoto release'); $upgrade = gettext('reinstall'); } ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title><?php printf('Zenphoto %s', $upgrade ? $upgrade : gettext('install')); ?></title> <link rel="stylesheet" href="<?php echo WEBPATH . '/' . ZENFOLDER; ?>/admin.css" type="text/css" />
<script src="<?php echo WEBPATH . '/' . ZENFOLDER; ?>/js/jquery.js" type="text/javascript"></script> <script src="<?php echo WEBPATH . '/' . ZENFOLDER; ?>/js/zenphoto.js" type="text/javascript" ></script> <script type="text/javascript"> var imageErr = false; function toggle_visibility(id) { var e = document.getElementById(id); if (e.style.display == 'block') e.style.display = 'none'; else e.style.display = 'block'; } </script> <link rel="stylesheet" href="setup.css" type="text/css" />
</head>
<body>
<div id="main">
<h1><img src="<?php echo WEBPATH . '/' . ZENFOLDER; ?>/images/zen-logo.png" title="<?php echo gettext('Zenphoto Setup'); ?>" alt="<?php echo gettext('Zenphoto Setup'); ?>" align="bottom" /> <span><?php echo $upgrade ? $upgrade : gettext("Setup"); ?></span> </h1>
<div id="content"> <?php $blindInstall = $warn = false;
if ($connection && !isset($_zp_options)) { $sql = "SELECT `name`, `value` FROM " . prefix('options'); $optionlist = query_full_array($sql, false); if ($optionlist) { $_zp_options = array(); foreach ($optionlist as $option) { $_zp_options[$option['name']] = $option['value']; } } }
if (!$setup_checked && (($upgrade && $autorun) || setupUserAuthorized())) { if ($blindInstall = ($upgrade && $autorun) && !setupUserAuthorized()) { ob_start(); // hide output for auto-upgrade } ?> <p> <?php printf(gettext("Welcome to Zenphoto! This page will set up Zenphoto %s on your web server."), ZENPHOTO_VERSION); ?> </p> <h2><?php echo gettext("Systems Check:"); ?></h2> <?php /* * *************************************************************************** * * * SYSTEMS CHECK * * * * *************************************************************************** */
global $_zp_conf_vars; $good = true;
if ($connection && $_zp_loggedin != ADMIN_RIGHTS) { if (TEST_RELEASE) { ?> <div class="notebox"> <?php echo '<p>' . gettext('<strong>Note:</strong> The release you are installing has debugging settings enabled!') . '</p>'; ?> </div> <?php } ?> <ul> <?php checkmark($check, $release, $release . ' ' . sprintf(ngettext('[%u release skipped]', '[%u releases skipped]', $c), $c), gettext('We do not test upgrades that skip releases. We recommend you upgrade in sequence.')); } else { ?> <ul> <?php $prevRel = false; checkmark(1, sprintf(gettext('Installing Zenphoto v%s'), ZENPHOTO_VERSION), '', ''); } chdir(dirname(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE)); $test = setup_glob('*.log'); $test[] = basename(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE); $p = true; foreach ($test as $file) { $permission = fileperms(dirname(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE) . '/' . $file) & 0777; if (!checkPermissions($permission, 0600)) { $p = -1; break; } } checkMark($p, sprintf(gettext('<em>%s</em> security'), DATA_FOLDER), sprintf(gettext('<em>%s</em> security [is compromised]'), DATA_FOLDER), sprintf(gettext('Zenphoto suggests you make the sensitive files in the %1$s folder accessable by <em>owner</em> only (permissions = 0600). The file permissions for <em>%2$s</em> are %3$04o which may allow unauthorized access.'), DATA_FOLDER, $file, $permission));
$err = versionCheck(PHP_MIN_VERSION, PHP_DESIRED_VERSION, PHP_VERSION); $good = checkMark($err, sprintf(gettext("PHP version %s"), PHP_VERSION), "", sprintf(gettext('PHP Version %1$s or greater is required. Version %2$s or greater is strongly recommended. Use earlier versions at your own risk.'), PHP_MIN_VERSION, PHP_DESIRED_VERSION), false) && $good;
if ($session && session_id() && $session_path == session_save_path()) { checkmark(true, gettext('PHP <code>Sessions</code>.'), gettext('PHP <code>Sessions</code> [appear to not be working].'), '', true); } else { if ($session && session_id() && $session_path != session_save_path()) { checkmark(-1, '', gettext('PHP <code>Sessions</code> [problems with <em>save_save_path</em>].'), sprintf(gettext('The configured PHP session path could not be used. Zenphoto has set the path to the %s folder.'), DATA_FOLDER), true); } else { checkmark(0, '', gettext('PHP <code>Sessions</code> [appear to not be working].'), gettext('PHP Sessions are required for Zenphoto administrative functions.'), true); } }
if (preg_match('#(1|ON)#i', @ini_get('register_globals'))) { if ((isset($_zp_conf_vars['security_ack']) ? $_zp_conf_vars['security_ack'] : NULL) & ACK_REGISTER_GLOBALS) { $register_globals = -1; $aux = ''; } else { $register_globals = false; $aux = ' ' . acknowledge(ACK_REGISTER_GLOBALS); } } else { $register_globals = true; $aux = ''; } $good = checkMark($register_globals, gettext('PHP <code>Register Globals</code>'), gettext('PHP <code>Register Globals</code> [is set]'), gettext('PHP Register globals presents a security risk to any PHP application. See <a href="http://php.net/manual/en/security.globals.php"><em>Using Register Globals</em></a>. Change your PHP.ini settings to <code>register_globals = off</code>.') . $aux) && $good;
if (preg_match('#(1|ON)#i', ini_get('safe_mode'))) { $safe = -1; } else { $safe = true; } checkMark($safe, gettext("PHP <code>Safe Mode</code>"), gettext("PHP <code>Safe Mode</code> [is set]"), gettext("Zenphoto functionality is reduced when PHP <code>safe mode</code> restrictions are in effect."));
if (!extension_loaded('suhosin')) { $blacklist = @ini_get("suhosin.executor.func.blacklist"); if ($blacklist) { $zpUses = array('symlink' => 0); $abort = $issue = 0; $blacklist = explode(',', $blacklist); foreach ($blacklist as $key => $func) { if (array_key_exists($func, $zpUses)) { $abort = true; $issue = $issue | $zpUses[$func]; if ($zpUses[$func]) { $blacklist[$key] = '<span style="color:red;">' . $func . '*</span>'; } } } $issue--; $good = checkMark($issue, '', gettext('<code>Suhosin</code> module [is enabled]'), sprintf(gettext('The following PHP functions are blocked: %s. Flagged functions are required by Zenphoto. Other functions in the list may be used by Zenphoto, possibly causing reduced functionality or Zenphoto failures.'), '<code>' . implode('</code>, <code>', $blacklist) . '</code>'), $abort) && $good; } }
primeMark(gettext('Magic_quotes')); if (get_magic_quotes_gpc()) { $magic_quotes_disabled = -1; } else { $magic_quotes_disabled = true; } checkMark($magic_quotes_disabled, gettext("PHP <code>magic_quotes_gpc</code>"), gettext("PHP <code>magic_quotes_gpc</code> [is enabled]"), gettext('We strongly recommend disabling <code>magic_quotes_gpc</code>. For more information See <em><a href="http://www.zenphoto.org/news/troubleshooting-zenphoto#what-is-magic_quotes_gpc-and-why-should-it-be-disabled-">What is magic_quotes_gpc and why should it be disabled?</a></em> in the Zenphoto troubleshooting guide.')); if (get_magic_quotes_runtime()) { $magic_quotes_disabled = 0; } else { $magic_quotes_disabled = true; } checkMark($magic_quotes_disabled, gettext("PHP <code>magic_quotes_runtime</code>"), gettext("PHP <code>magic_quotes_runtime</code> [is enabled]"), gettext('You must disable <code>magic_quotes_runtime</code>.')); checkMark(!ini_get('magic_quotes_sybase'), gettext("PHP <code>magic_quotes_sybase</code>"), gettext("PHP <code>magic_quotes_sybase</code> [is enabled]"), gettext('You must disable <code>magic_quotes_sybase</code>.'));
switch (strtolower(@ini_get('display_errors'))) { case 0: case 'off': case 'stderr': $display = true; $aux = ''; break; case 1: case 'on': case 'stdout': default: if (TEST_RELEASE || ((isset($_zp_conf_vars['security_ack']) ? $_zp_conf_vars['security_ack'] : NULL) & ACK_DISPLAY_ERRORS)) { $display = -1; $aux = ''; } else { $display = 0; $aux = ' ' . acknowledge(ACK_DISPLAY_ERRORS); } break; } checkmark($display, gettext('PHP <code>display_errors</code>'), sprintf(gettext('PHP <code>display_errors</code> [is enabled]'), $display), gettext('This setting may result in PHP error messages being displayed on WEB pages. These displays may contain sensitive information about your site.') . $aux, $display && !TEST_RELEASE);
checkMark($noxlate, gettext('PHP <code>gettext()</code> support'), gettext('PHP <code>gettext()</code> support [is not present]'), gettext("Localization of Zenphoto requires native PHP <code>gettext()</code> support")); checkmark(function_exists('flock') ? 1 : -1, gettext('PHP <code>flock</code> support'), gettext('PHP <code>flock</code> support [is not present]'), gettext('Zenpoto uses <code>flock</code> for serializing critical regions of code. Without <code>flock</code> active sites may experience <em>race conditions</em> which may be causing inconsistent data.')); if ($_zp_setupCurrentLocale_result === false) { checkMark(-1, gettext('PHP <code>setlocale()</code>'), ' ' . gettext('PHP <code>setlocale()</code> failed'), gettext("Locale functionality is not implemented on your platform or the specified locale does not exist. Language translation may not work.") . '<br />' . gettext('See the <a href="http://www.zenphoto.org/news/troubleshooting-zenphoto#24">troubleshooting guide</a> on zenphoto.org for details.')); } primeMark(gettext('mb_strings')); if (function_exists('mb_internal_encoding')) { @mb_internal_encoding('UTF-8'); if (($charset = mb_internal_encoding()) == 'UTF-8') { $mb = 1; } else { $mb = -1; } $m2 = gettext('Setting <em>mbstring.internal_encoding</em> to <strong>UTF-8</strong> in your <em>php.ini</em> file is recommended to insure accented and multi-byte characters function properly.'); checkMark($mb, gettext("PHP <code>mbstring</code> package"), sprintf(gettext('PHP <code>mbstring</code> package [Your internal character set is <strong>%s</strong>]'), $charset), $m2); } else { $test = $_zp_UTF8->convert('test', 'ISO-8859-1', 'UTF-8'); if (empty($test)) { $m2 = gettext("You need to install the <code>mbstring</code> package or correct the issue with <code>iconv()</code>"); checkMark(0, '', gettext("PHP <code>mbstring</code> package [is not present and <code>iconv()</code> is not working]"), $m2); } else { $m2 = gettext("Strings generated internally by PHP may not display correctly. (e.g. dates)"); checkMark(-1, '', gettext("PHP <code>mbstring</code> package [is not present]"), $m2); } }
if ($environ) { /* Check for graphic library and image type support. */ primeMark(gettext('Graphics library')); if (function_exists('zp_graphicsLibInfo')) { $graphics_lib = zp_graphicsLibInfo(); if (array_key_exists('Library_desc', $graphics_lib)) { $library = $graphics_lib['Library_desc']; } else { $library = ''; } $good = checkMark(!empty($library), sprintf(gettext("Graphics support: <code>%s</code>"), $library), gettext('Graphics support [is not installed]'), gettext('You need to install a graphics support library such as the <em>GD library</em> in your PHP')) && $good; if (!empty($library)) { $missing = array(); if (!isset($graphics_lib['JPG'])) { $missing[] = 'JPEG'; } if (!(isset($graphics_lib['GIF']))) { $missing[] = 'GIF'; } if (!(isset($graphics_lib['PNG']))) { $missing[] = 'PNG'; } if (count($missing) > 0) { if (count($missing) < 3) { if (count($missing) == 2) { $imgmissing = sprintf(gettext('Your PHP graphics library does not support %1$s or %2$s'), $missing[0], $missing[1]); } else { $imgmissing = sprintf(gettext('Your PHP graphics library does not support %1$s'), $missing[0]); } $err = -1; $mandate = gettext("To correct this you should install a graphics library with appropriate image support in your PHP"); } else { $imgmissing = sprintf(gettext('Your PHP graphics library does not support %1$s, %2$s, or %3$s'), $missing[0], $missing[1], $missing[2]); $err = 0; $good = false; $mandate = gettext("To correct this you need to install GD with appropriate image support in your PHP"); } checkMark($err, gettext("PHP graphics image support"), '', $imgmissing . "<br />" . gettext("The unsupported image types will not be viewable in your albums.") . "<br />" . $mandate); } if (!zp_imageCanRotate()) { checkMark(-1, '', gettext('Graphics Library rotation support [is not present]'), gettext('The graphics support library does not provide support for image rotation.')); } } } else { $graphicsmsg = ''; foreach ($_zp_graphics_optionhandlers as $handler) { $graphicsmsg .= $handler->canLoadMsg($handler); } checkmark(0, '', gettext('Graphics support [configuration error]'), gettext('No Zenphoto image handling library was loaded. Be sure that your PHP has a graphics support.') . ' ' . trim($graphicsmsg)); } } if (file_exists(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE)) { require( SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE); $cfg = true; } else { $cfg = false; }
$good = checkMark($cfg, sprintf(gettext('<em>%1$s</em> file'), CONFIGFILE), sprintf(gettext('<em>%1$s</em> file [does not exist]'), CONFIGFILE), sprintf(gettext('Setup was not able to create this file. You will need to copy the <code>%1$s/zenphoto_cfg.txt</code> file to <code>%2$s/%3$s</code> then edit it as indicated in the file\'s comments.'), ZENFOLDER, DATA_FOLDER, CONFIGFILE)) && $good; if ($cfg) { primeMark(gettext('File permissions')); $chmodselector = '<form action="#"><input type="hidden" name="xsrfToken" value="' . $xsrftoken . '" />' . '<p>' . sprintf(gettext('Set File permissions to %s.'), permissionsSelector($permission_names, $chmod)) . '</p></form>'; if (array_key_exists($chmod | 4, $permission_names)) { $value = sprintf(gettext('<em>%1$s</em> (<code>0%2$o</code>)'), $permission_names[$chmod | 4], $chmod); } else { $value = sprintf(gettext('<em>unknown</em> (<code>%o</code>)'), $chmod); } if ($chmod > 0664) { if (isset($_zp_conf_vars['CHMOD'])) { $severity = -3; } else { $severity = -1; } } else { $severity = -2; } $msg = sprintf(gettext('File Permissions [are %s]'), $value); checkMark($severity, $msg, $msg, '<p>' . gettext('If file permissions are not set to <em>strict</em> or tighter there could be a security risk. However, on some servers Zenphoto does not function correctly with tight file permissions. If Zenphoto has permission errors, run setup again and select a more relaxed permission.') . '</p>' . $chmodselector);
if (setupUserAuthorized()) { if ($environ) { if (isMac()) { checkMark(-1, '', gettext('Your filesystem is Macintosh'), gettext('Zenphoto is unable to deal with Macintosh file names containing diacritical marks. You should avoid these.'), false); ?> <input type="hidden" name="FILESYSTEM_CHARSET" value="UTF-8" />
<?php } else { primeMark(gettext('Character set')); $charset_defined = str_replace('-', '‑', FILESYSTEM_CHARSET); $charset = LOCAL_CHARSET; if (empty($charset)) { $charset = 'UTF-8'; } $test = ''; if (($dir = opendir($serverpath . '/' . DATA_FOLDER . '/')) !== false) { $testfiles = array(); while (($file = readdir($dir)) !== false) { if (preg_match('/^charset[\._]t(.*)$/', $file, $matches)) { $test = stripSuffix($matches[1]); break; } } closedir($dir); } if (isset($_REQUEST['charset_attempts'])) { $tries = sanitize_numeric($_REQUEST['charset_attempts']); } else { $tries = 0; }
switch (FILESYSTEM_CHARSET) { case 'ISO-8859-1': if ($tries & 2) { $trialset = 'unknown'; } else { $trialset = 'UTF-8'; $tries = $tries | 1; } break; default: if ($tries & 1) { $trialset = 'unknown'; } else { $trialset = 'ISO-8859-1'; $tries = $tries | 2; } break; } $msg2 = '<p>' . sprintf(gettext('If your server filesystem character set is different from <code>%s</code> and you create album or image filenames names containing characters with diacritical marks you may have problems with these objects.'), $charset_defined) . '</p>' . '<form action="#"><input type="hidden" name="xsrfToken" value="' . $xsrftoken . '" /><input type="hidden" name="charset_attempts" value="' . $tries . '" /><p>' . gettext('Change the filesystem character set define to %1$s') . '</p></form><br class="clearall" />';
if (isset($_zp_conf_vars['FILESYSTEM_CHARSET'])) { $selectedset = $_zp_conf_vars['FILESYSTEM_CHARSET']; } else { $selectedset = 'unknown'; } $msg = ''; if ($test) { // fount the test file if ((filesystemToInternal(trim($test)) == 'ést')) { // and the active character set define worked $notice = 1; $msg = sprintf(gettext('The Zenphoto filesystem character define is %1$s [confirmed]'), $charset_defined); $msg1 = ''; } else { if ($selectedset == 'unknown') { $notice = 1; $msg = gettext('The Zenphoto filesystem character define is ISO-8859-1 [assumed]'); $msg1 = ''; } else { // active character set is not correct $notice = 0; $msg1 = sprintf(gettext('The Zenphoto filesystem character define is %1$s [which seems wrong]'), $charset_defined); } } } else { // no test file $msg1 = sprintf(gettext('The Zenphoto filesystem character define is %1$s [no test performed]'), $charset_defined); $msg2 = '<p>' . sprintf(gettext('Setup did not perform a test of the filesystem character set. You can cause setup to test for a proper definition by creating a file in your <code>%1$s</code> folder named <strong><code>%2$s</code></strong> and re-running setup.'), DATA_FOLDER, 'charset_tést') . '</p>' . $msg2; if (isset($_zp_conf_vars['FILESYSTEM_CHARSET'])) { // but we have a define value $notice = -3; } else { // no defined value, who knows.... $notice = -1; } } checkMark($notice, $msg, $msg1, sprintf($msg2, charsetSelector(FILESYSTEM_CHARSET))); // UTF-8 URI if (($notice != -1) && @copy(SERVERPATH . '/' . ZENFOLDER . '/images/pass.png', $serverpath . '/' . DATA_FOLDER . '/' . internalToFilesystem('tést.jpg'))) { $test_image = WEBPATH . '/' . DATA_FOLDER . '/' . urlencode('tést.jpg'); $req_iso = gettext('Image URIs appear require the <em>filesystem</em> character set.'); $req_UTF8 = gettext('Image URIs appear to require the UTF-8 character set.'); ?> <script type="text/javascript"> // <!-- <![CDATA[ function uri(enable) { var text; if (enable) { text = 'true'; } else { text = 'false'; } $('#setUTF8URI').val(enable); $('#UTF8_uri_warn').hide(); } var loadSucceeded = true; $(document).ready(function() { var image = new Image(); image.onload = function() { <?php if (!UTF8_IMAGE_URI) { ?> $('#UTF8_uri_warn').html('<?php echo gettext('You should enable the URL option <em>UTF8 image URIs</em>.'); ?>' + ' <?php echo gettext('<a href="javascript:uri(true)">Please do</a>'); ?>'); $('#UTF8_uri_warn').show(); <?php if ($autorun) { ?> uri(true); <?php } } ?> }; image.onerror = function() { $('#UTF8_uri_text').html('<?php echo $req_iso; ?>'); <?php if (UTF8_IMAGE_URI) { ?> $('#UTF8_uri').attr('class', 'warn'); $('#UTF8_uri_warn').html('<?php echo gettext('You should disable the URL option <em>UTF8 image URIs</em>.'); ?>' + ' <?php echo gettext('<a href="javascript:uri(false)">Please do</a>'); ?>'); $('#UTF8_uri_warn').show(); <?php if ($autorun) { ?> uri(false); <?php } } ?> }; image.src = '<?php echo $test_image; ?>';
}); // ]]> --> </script> <li id="UTF8_uri" class="pass"><span id="UTF8_uri_text"> <?php echo $req_UTF8; ?> </span> <div id="UTF8_uri_warn" class="warning" style="display: none"> <h1>
<?php echo gettext('Warning!'); ?></h1> <span id="UTR8_uri_warn"></span> </div> </li>
<?php } } } } } primeMark(gettext('Database')); foreach ($engines as $engine) { $handler = $engine['engine']; if ($handler == $confDB && $engine['enabled']) { $good = checkMark(1, sprintf(gettext('PHP <code>%s</code> support for configured Database'), $handler), '', '') && $good; } else { if ($engine['enabled']) { if (isset($enabled['experimental'])) { ?> <li class="note_warn"><?php echo sprintf(gettext(' <code>%1$s</code> support (<a onclick="$(\'#%1$s\').toggle(\'show\')" >experimental</a>)'), $handler); ?> </li> <p class="warning" id="<?php echo $handler; ?>" style="display: none;"> <?php echo $enabled['experimental'] ?> </p> <?php } else { ?> <li class="note_ok"><?php echo sprintf(gettext('PHP <code>%s</code> support'), $handler); ?> </li> <?php } } else { ?> <li class="note_exception"><?php echo sprintf(gettext('PHP <code>%s</code> support [is not installed]'), $handler); ?> </li> <?php } } } $connection = db_connect($_zp_conf_vars, false); if ($connection) { if (empty($_zp_conf_vars['mysql_database'])) { $connection = false; $connectDBErr = gettext('No database selected'); } } else { $connectDBErr = db_error(); } if ($_zp_DB_connection) { // connected to DB software $dbsoftware = db_software(); $dbapp = $dbsoftware['application']; $dbversion = $dbsoftware['version']; $required = $dbsoftware['required']; $desired = $dbsoftware['desired']; $sqlv = versionCheck($required, $desired, $dbversion); $good = checkMark($sqlv, sprintf(gettext('%1$s version %2$s'), $dbapp, $dbversion), "", sprintf(gettext('%1$s Version %2$s or greater is required. Version %3$s or greater is preferred. Use a lower version at your own risk.'), $dbapp, $required, $desired), false) && $good; } primeMark(gettext('Database connection'));
if ($cfg) { if ($adminstuff = !extension_loaded(strtolower($selected_database)) || !$connection) { if (is_writable(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE)) { $good = false; checkMark(false, '', gettext("Database credentials in configuration file"), sprintf(gettext('<em>%1$s</em> reported: %2$s'), DATABASE_SOFTWARE, $connectDBErr)); // input form for the information include(dirname(__FILE__) . '/setup-sqlform.php'); } else { if ($connectDBErr) { $msg = $connectDBErr; } else { $msg = gettext("You have not correctly set your <strong>Database</strong> <code>user</code>, <code>password</code>, etc. in your configuration file and <strong>setup</strong> is not able to write to the file."); } $good = checkMark(!$adminstuff, gettext("Database setup in configuration file"), '', $msg) && $good; } } else { $good = checkMark((bool) $connection, sprintf(gettext('Connect to %s'), DATABASE_SOFTWARE), gettext("Connect to Database [<code>CONNECT</code> query failed]"), $connectDBErr) && $good; } }
if ($_zp_DB_connection) { if ($connection) { if ($DBcreated) { checkMark(1, sprintf(gettext('Database <code>%s</code> created'), $_zp_conf_vars['mysql_database']), ''); } } else { $good = 0; if ($oktocreate) { ?> <li class="note"> <div class="notebox"> <p><?php echo sprintf(gettext('Click here to attempt to create <a href="?Create_Database" >%s</a>.'), $_zp_conf_vars['mysql_database']); ?></p> </div> </li> <?php } else if (!empty($_zp_conf_vars['mysql_database'])) { checkMark(0, '', sprintf(gettext('Database <code>%s</code> not created [<code>CREATE DATABASE</code> query failed]'), $_zp_conf_vars['mysql_database']), $connectDBErr); } } if ($environ && $connection) { $oldmode = db_getSQLmode(); $result = db_setSQLmode(); $msg = gettext('You may need to set <code>SQL mode</code> <em>empty</em> in your Database configuration.'); if ($result) { $mode = db_getSQLmode(); if ($mode === false) { checkMark(-1, '', sprintf(gettext('<code>SQL mode</code> [query failed]'), $oldmode), $msg); } else { if ($oldmode != $mode) { checkMark(-1, sprintf(gettext('<code>SQL mode</code> [<em>%s</em> overridden]'), $oldmode), '', gettext('Consider setting it <em>empty</em> in your Database configuration.')); } else { if (!empty($mode)) { $err = -1; } else { $err = 1; } checkMark($err, gettext('<code>SQL mode</code>'), sprintf(gettext('<code>SQL mode</code> [is set to <em>%s</em>]'), $mode), gettext('Consider setting it <em>empty</em> if you get Database errors.')); } } } else { checkMark(-1, '', gettext('<code>SQL mode</code> [SET SESSION failed]'), $msg); }
$dbn = "`" . $_zp_conf_vars['mysql_database'] . "`.*"; $db_results = db_permissions();
$access = -1; $rightsfound = 'unknown'; $rightsneeded = array(gettext('Select') => 'SELECT', gettext('Create') => 'CREATE', gettext('Drop') => 'DROP', gettext('Insert') => 'INSERT', gettext('Update') => 'UPDATE', gettext('Alter') => 'ALTER', gettext('Delete') => 'DELETE', gettext('Index') => 'INDEX'); ksort($rightsneeded); $neededlist = ''; foreach ($rightsneeded as $right => $value) { $neededlist .= '<code>' . $right . '</code>, '; } $neededlist = substr($neededlist, 0, -2) . ' '; $i = strrpos($neededlist, ','); $neededlist = substr($neededlist, 0, $i) . ' ' . gettext('and') . substr($neededlist, $i + 1); if ($db_results) { $report = "<br /><br /><em>" . gettext("Grants found:") . "</em> "; foreach ($db_results as $row) { $row = stripcslashes($row); $row_report = "<br /><br />" . $row; $r = str_replace(',', '', $row); preg_match('/\sON(.*)\sTO\s?/i', $r, $matches); $found = trim(isset($matches[1]) ? $matches[1] : NULL); if ($partial = (($i = strpos($found, '%')) !== false)) { $found = substr($found, 0, $i); } $rights = array_flip(explode(' ', $r)); $rightsfound = 'insufficient'; if (($found == $dbn) || ($found == "*.*") || $partial && preg_match('/^' . $found . '/xis', $dbn)) { $allow = true; foreach ($rightsneeded as $key => $right) { if (!isset($rights[$right])) { $allow = false; } } if (isset($rights['ALL']) || $allow) { $access = 1; } $report .= '<strong>' . $row_report . '</strong>'; } else { $report .= $row_report; } } } else { $report = "<br /><br />" . gettext("The <em>SHOW GRANTS</em> query failed."); } checkMark($access, sprintf(gettext('Database <code>access rights</code> for <em>%s</em>'), $_zp_conf_vars['mysql_database']), sprintf(gettext('Database <code>access rights</code> for <em>%1$s</em> [%2$s]'), $_zp_conf_vars['mysql_database'], $rightsfound), sprintf(gettext("Your Database user must have %s rights."), $neededlist) . $report);
$result = db_show('tables'); $tableslist = ''; $tables = array(); if ($result) { $check = 1; while ($row = db_fetch_row($result)) { $tables[] = $row[0]; $tableslist .= "<code>" . $row[0] . "</code>, "; } db_free_result($result); } else { $check = -1; } if (empty($tableslist)) { $msg = gettext('<em>SHOW TABLES</em> [found no tables]'); $msg2 = ''; } else { $msg = sprintf(gettext("<em>SHOW TABLES</em> found: %s"), substr($tableslist, 0, -2)); $msg2 = ''; } checkMark($check, $msg, gettext("<em>SHOW TABLES</em> [Failed]"), sprintf(gettext("The database did not return a list of the database tables for <code>%s</code>."), $_zp_conf_vars['mysql_database']) . "<br />" . gettext("<strong>Setup</strong> will attempt to create all tables. This will not over write any existing tables.")); if (isset($_zp_conf_vars['UTF-8']) && $_zp_conf_vars['UTF-8']) { $fields = 0; $fieldlist = array(); foreach (array('images' => 1, 'albums' => 2) as $lookat => $add) { if (in_array($_zp_conf_vars['mysql_prefix'] . $lookat, $tables)) { $columns = db_list_fields('images'); if ($columns) { foreach ($columns as $col => $utf8) { if (!is_null($row['Collation']) && $row['Collation'] != 'utf8_unicode_ci') { $fields = $fields | $add; $fieldlist[] = '<code>' . $lookat . '->' . $col . '</code>'; } } } else { $fields = 4; } } } $err = -1; switch ($fields) { case 0: // all is well $msg2 = ''; $err = 1; break; case 1: $msg2 = gettext('Database <code>field collations</code> [Image table]'); break; case 2: $msg2 = gettext('Database <code>field collations</code> [Album table]'); break; case 3: $msg2 = gettext('Database <code>field collations</code> [Image and Album tables]'); break; default: $msg2 = gettext('Database <code>field collations</code> [SHOW COLUMNS query failed]'); break; } checkmark($err, gettext('Database <code>field collations</code>'), $msg2, sprintf(ngettext('%s is not UTF-8. You should consider porting your data to UTF-8 and changing the collation of the database fields to <code>utf8_unicode_ci</code>', '%s are not UTF-8. You should consider porting your data to UTF-8 and changing the collation of the database fields to <code>utf8_unicode_ci</code>', count($fieldlist)), implode(', ', $fieldlist))); } else { checkmark(-1, '', gettext('Database <code>$conf["UTF-8"]</code> [is not set <em>true</em>]'), gettext('You should consider porting your data to UTF-8 and changing the collation of the database fields to <code>utf8_unicode_ci</code> and setting this <em>true</em>. Zenphoto works best with pure UTF-8 encodings.')); } } }
primeMark(gettext('Zenphoto files')); @set_time_limit(120); $lcFilesystem = file_exists(strtoupper(__FILE__)); $base = $serverpath . '/'; getResidentZPFiles(SERVERPATH . '/' . ZENFOLDER, $lcFilesystem); if ($lcFilesystem) { $res = array_search(strtolower($base . ZENFOLDER . '/Zenphoto.package'), $_zp_resident_files); $base = strtolower($base); } else { $res = array_search($base . ZENFOLDER . '/Zenphoto.package', $_zp_resident_files); } unset($_zp_resident_files[$res]); $cum_mean = filemtime(SERVERPATH . '/' . ZENFOLDER . '/Zenphoto.package'); $hours = 3600; $lowset = $cum_mean - $hours; $highset = $cum_mean + $hours;
$package_file_count = false; $package = file_get_contents(SERVERPATH . '/' . ZENFOLDER . '/Zenphoto.package'); if ($lcFilesystem) { // case insensitive file systems $package = strtolower($package); } if (!empty($package)) { $installed_files = explode("\n", trim($package)); $count = array_pop($installed_files); $package_file_count = is_numeric($count) && ($count > 0) && ($count == count($installed_files)); } if (!$package_file_count) { checkMark(-1, '', gettext("Zenphoto package [missing]"), gettext('The file <code>Zenphoto.package</code> is either missing, not readable, or defective. Your installation may be corrupt!')); $installed_files = array(); } $folders = array(); if ($updatechmod) { $permissions = 1; setupLog(sprintf(gettext('Setting permissions (0%o) for Zenphoto package.'), $chmod), true); } else { $permission = 0; } foreach ($installed_files as $key => $value) { $component_data = explode(':', $value); $value = trim($component_data[0]); if (count($component_data) > 1) { $fromPackage = trim($component_data[1]); } else { $fromPackage = ''; } $component = $base . $value; if (file_exists($component)) { $res = array_search($component, $_zp_resident_files); if ($res !== false) { unset($_zp_resident_files[$res]); } if (is_dir($component)) { if ($updatechmod) { @chmod($component, $chmod | 0311); clearstatcache(); $perms = fileperms($component) & 0777; if ($permissions == 1 && !checkPermissions($perms, $chmod | 0311)) { if (checkPermissions($perms & 0755, 0755) || TEST_RELEASE) { // could not set them, but they will work. $permissions = -1; } else { $permissions = 0; } } } $folders[$component] = $component; unset($installed_files[$key]); if (dirname($value) == THEMEFOLDER) { getResidentZPFiles($base . $value, $lcFilesystem); } } else { if ($updatechmod) { @chmod($component, $chmod); clearstatcache(); $perms = fileperms($component) & 0777; if ($permissions == 1 && !checkPermissions($perms, $chmod)) { if (checkPermissions($perms & 0644, 0644) || TEST_RELEASE) { // could not set them, but they will work. $permissions = -1; } else { $permissions = 0; } } }
$t = filemtime($component); if ((!(TEST_RELEASE || $fromPackage == '*') && ($t < $lowset || $t > $highset))) { $installed_files[$key] = $value; } else { unset($installed_files[$key]); } } } } if ($updatechmod && count($folders) > 0) { foreach ($folders as $key => $folder) { if (!checkPermissions(fileperms($folder) & 0777, 0755)) { // need to set them?. @chmod($folder, $chmod | 0311); clearstatcache(); $perms = fileperms($folder) & 0777; if ($permissions == 1 && !checkPermissions($perms, $chmod | 0311)) { if (checkPermissions($perms & 0755, 0755) || TEST_RELEASE) { // could not set them, but they will work. $permissions = 0; } else { $permissions = -1; } } } } } $plugin_subfolders = array(); $Cache_html_subfolders = array(); foreach ($installed_files as $key => $component) { $folders = explode('/', $component); $folder = array_shift($folders); switch ($folder) { case ALBUMFOLDER: case CACHEFOLDER: case DATA_FOLDER: case UPLOAD_FOLDER: unset($installed_files[$key]); break; case 'plugins': $plugin_subfolders[] = implode('/', $folders); unset($installed_files[$key]); // this will be taken care of later break; case 'cache_html': $Cache_html_subfolders[] = implode('/', $folders); unset($installed_files[$key]); break; } } $filelist = ''; foreach ($installed_files as $extra) { $filelist .= filesystemToInternal(str_replace($base, '', $extra) . '<br />'); } if (count($installed_files) > 0) { if (defined('TEST_RELEASE') && TEST_RELEASE) { $msg1 = gettext("Zenphoto core files [This is a <em>debug</em> build. Some files are missing or seem wrong]"); } else { $msg1 = gettext("Zenphoto core files [Some files are missing or seem wrong]"); } $msg2 = gettext('Perhaps there was a problem with the upload. You should check the following files: ') . '<br /><code>' . substr($filelist, 0, -6) . '</code>'; $mark = -1; } else { if (defined('TEST_RELEASE') && TEST_RELEASE) { $mark = -1; $msg1 = gettext("Zenphoto core files [This is a <em>debug</em> build]"); } else { $msg1 = ''; $mark = 1; } $msg2 = ''; } checkMark($mark, gettext("Zenphoto core files"), $msg1, $msg2, false); if (setupUserAuthorized() && $connection) { primeMark(gettext('Installation files')); $systemlist = $filelist = array(); $phi_ini_count = $svncount = 0; foreach ($_zp_resident_files as $extra) { if (getSuffix($extra) == 'xxx') { @unlink($extra); // presumed to be protected copies of the setup files } else if (strpos($extra, 'php.ini') !== false) { $phi_ini_count++; } else if (defined('TEST_RELEASE') && TEST_RELEASE || (strpos($extra, '/.svn') === false)) { $systemlist[] = $extra; $filelist[] = $_zp_UTF8->convert(str_replace($base, '', $extra), FILESYSTEM_CHARSET, 'UTF-8'); } else { $svncount++; } } if ($svncount) { $filelist[] = '<br />' . sprintf(ngettext('.svn [%s instance]', '.svn [%s instances]', $svncount), $svncount); } if ($phi_ini_count && TEST_RELEASE) { $filelist[] = '<br />' . sprintf(ngettext('php.ini [%s instance]', 'php.ini [%s instances]', $phi_ini_count), $phi_ini_count); } if ($package_file_count) { // no point in this if the package list was damaged! if (!empty($filelist)) { if (isset($_GET['delete_extra'])) { foreach ($systemlist as $key => $file) { if (!is_dir($file)) { @chmod($file, 0777); if (@unlink($file)) { unset($filelist[$key]); unset($systemlist[$key]); } } } rsort($systemlist); foreach ($systemlist as $key => $file) { @chmod($file, 0777); if (@rmdir($file)) { unset($filelist[$key]); } }
if (!empty($filelist)) { checkmark(-1, '', gettext('Zenphoto core folders [Some unknown files were found]'), gettext('The following files could not be deleted.') . '<br /><code>' . implode('<br />', $filelist) . '<code>'); } } else { checkMark(-1, '', gettext('Zenphoto core folders [Some unknown files were found]'), gettext('You should remove the following files: ') . '<br /><code>' . implode('<br />', $filelist) . '</code><p class="buttons"><a href="?delete_extra' . ($debug ? '&debug' : '') . '">' . gettext("Delete extra files") . '</a></p><br class="clearall" /><br class="clearall" />'); } } checkMark($permissions, gettext("Zenphoto core file permissions"), gettext("Zenphoto core file permissions [not correct]"), gettext('Setup could not set the one or more components to the selected permissions level. You will have to set the permissions manually. See the <a href="http://www.zenphoto.org/news/troubleshooting-zenphoto#29">Troubleshooting guide</a> for details on Zenphoto permissions requirements.')); } } $msg = gettext("<em>.htaccess</em> file"); $Apache = stristr($_SERVER['SERVER_SOFTWARE'], "apache"); $Nginx = stristr($_SERVER['SERVER_SOFTWARE'], "nginx"); $htfile = $serverpath . '/.htaccess'; $ht = trim(@file_get_contents($htfile)); $htu = strtoupper($ht); $vr = ""; $ch = 1; $j = 0; $err = ''; $desc = ''; if (empty($htu)) { $err = gettext("<em>.htaccess</em> file [is empty or does not exist]"); $ch = -1; if ($Apache) { $desc = gettext('If you have the mod_rewrite module enabled an <em>.htaccess</em> file is required the root zenphoto folder to create cruft-free URLs.') . '<br /><br />' . gettext('You can ignore this warning if you do not intend to set the <code>mod_rewrite</code> option.'); if (setupUserAuthorized()) { $desc .= ' ' . gettext('<p class="buttons"><a href="?copyhtaccess" >Make setup create the file</a></p><br style="clear:both" /><br />'); } } else if ($Nginx) { $err = gettext("Server seems to be <em>nginx</em>"); $mod = "&mod_rewrite"; // enable test to see if it works. $desc = gettext('If you wish to create cruft-free URLs, you will need to configuring <em>URL rewriting for NGINX servers</em>.') . ' ' . //TODO sprintf(gettest('Please see the <em>nginx_zenphoto_rewrite.conf</em> file in the %s folder for details.'),ZENFOLDER). '<br /><br />' . gettext('You can ignore this warning if you do not intend to set the <code>mod_rewrite</code> option.'); } else { $mod = "&mod_rewrite"; // enable test to see if it works. $desc = gettext("Server seems not to be <em>Apache</em> or <em>Apache-compatible</em>, <code>mod_rewrite</code> may not be available."); } } else { $i = strpos($htu, 'VERSION'); if ($i !== false) { $j = strpos($htu, ";"); $vr = trim(substr($htu, $i + 7, $j - $i - 7)); }
$ch = !empty($vr) && ($vr == HTACCESS_VERSION); $d = str_replace('\\', '/', dirname(dirname(dirname($_SERVER['SCRIPT_NAME'])))); $d = str_replace(' ', '%20', $d); // apache appears to trip out if there is a space in the rewrite base if (!$ch) { // wrong version $oht = trim(@file_get_contents(SERVERPATH . '/' . ZENFOLDER . '/oldhtaccess')); //fix the rewritebase $i = strpos($oht, 'RewriteBase /zenphoto'); $oht = substr($oht, 0, $i) . "RewriteBase $d" . substr($oht, $i + 21); if ($closed = site_closed($ht)) { $oht = close_site($oht); } $oht = trim($oht); if ($oht == $ht) { // an unmodified .htaccess file, we can just replace it $ht = trim(file_get_contents(SERVERPATH . '/' . ZENFOLDER . '/htaccess')); $i = strpos($ht, 'RewriteBase /zenphoto'); $ht = substr($ht, 0, $i) . "RewriteBase $d" . substr($ht, $i + 21); if ($closed) { $ht = close_site($ht); } $htu = strtoupper($ht); @chmod($htfile, 0777); @unlink($htfile); $ch = file_put_contents($htfile, trim($ht)); @chmod($htfile, 0444); } } if (!$ch) { if (!$Apache) { $desc = gettext("Server seems not to be Apache or Apache-compatible, <code>.htaccess</code> not required."); $ch = -1; } else { $desc = sprintf(gettext("The <em>.htaccess</em> file in your root folder is not the same version as the one distributed with this version of Zenphoto. If you have made changes to <em>.htaccess</em>, merge those changes with the <em>%s/htaccess</em> file to produce a new <em>.htaccess</em> file."), ZENFOLDER); if (setupUserAuthorized()) { $desc .= ' ' . gettext('<p class="buttons"><a href="?copyhtaccess" >Replace the existing <em>.htaccess</em> file with the current version</a></p><br style="clear:both" /><br />'); } } $err = gettext("<em>.htaccess</em> file [wrong version]"); } }
$rw = ''; if ($ch > 0) { $i = strpos($htu, 'REWRITEENGINE'); if ($i === false) { $rw = ''; } else { $j = strpos($htu, "\n", $i + 13); $rw = trim(substr($htu, $i + 13, $j - $i - 13)); } if (!empty($rw)) { $msg = sprintf(gettext("<em>.htaccess</em> file (<em>RewriteEngine</em> is <strong>%s</strong>)"), $rw); $mod = "&mod_rewrite=$rw"; } } $good = checkMark($ch, $msg, $err, $desc, false) && $good;
$base = true; $f = ''; if ($rw == 'ON') { $i = strpos($htu, 'REWRITEBASE', $j); if ($i === false) { $base = false; $b = ''; $err = gettext("<em>.htaccess</em> RewriteBase [is <em>missing</em>]"); $i = $j + 1; } else { $j = strpos($htu, "\n", $i + 11); $bs = trim(substr($ht, $i + 11, $j - $i - 11)); $base = ($bs == $d); $b = sprintf(gettext("<em>.htaccess</em> RewriteBase is <code>%s</code>"), $bs); $err = sprintf(gettext("<em>.htaccess</em> RewriteBase is <code>%s</code> [Does not match install folder]"), $bs); } $f = ''; $save = false; if (!$base) { $ht = substr($ht, 0, $i) . "RewriteBase $d\n" . substr($ht, $j + 1); $save = $base = true; $b = sprintf(gettext("<em>.htaccess</em> RewriteBase is <code>%s</code> (fixed)"), $d); } // upgrade the site closed rewrite rules preg_match_all('|[# ][ ]*RewriteRule(.*)plugins/site_upgrade/closed\.php|', $ht, $matches); $siteupdate = false; foreach ($matches[0] as $match) { if (strpos($match, 'index\.php$') !== false) { $match1 = str_replace('index\.php$', 'index\.php(.*)$', $match); $match1 = str_replace('closed.php', 'closed.php%1', $match1); $ht = str_replace($match, $match1, $ht); $siteupdate = $save = true; } } if ($save) { // try and fix it @chmod($htfile, 0777); if (is_writeable($htfile)) { if (@file_put_contents($htfile, $ht)) { $err = ''; } clearstatcache(); } @chmod($htfile, 0444); } $good = checkMark($base, $b, $err, gettext("Setup was not able to write to the file change RewriteBase match the install folder.") . "<br />" . sprintf(gettext("Either make the file writeable or set <code>RewriteBase</code> in your <code>.htaccess</code> file to <code>%s</code>."), $d)) && $good; if ($siteupdate) { $good = checkMark($save, gettext('Rewrite rules updated'), gettext('Rewrite rules updated [not updated]'), gettext("Setup was not able to write to the file change the rewrite rules for site upgrades.")) && $good; } } //robots.txt file $robots = file_get_contents(dirname(dirname(__FILE__)) . '/example_robots.txt'); if ($robots === false) { checkmark(-1, gettext('<em>robots.txt</em> file'), gettext('<em>robots.txt</em> file [Not created]'), gettext('Setup could not find the <em>example_robots.txt</em> file.')); } else { if (file_exists($serverpath . '/robots.txt')) { checkmark(-2, gettext('<em>robots.txt</em> file'), gettext('<em>robots.txt</em> file [Not created]'), gettext('Setup did not create a <em>robots.txt</em> file because one already exists.')); } else { $text = explode('****delete all lines above and including this one *******', $robots); $d = dirname(dirname(dirname($_SERVER['SCRIPT_NAME']))); if ($d == '/') $d = ''; $robots = str_replace('/zenphoto', $d, trim($text[1])); $rslt = file_put_contents($serverpath . '/robots.txt', $robots); if ($rslt === false) { $rslt = -1; } else { $rslt = 1; } checkmark($rslt, gettext('<em>robots.txt</em> file'), gettext('<em>robots.txt</em> file [Not created]'), gettext('Setup could not create a <em>robots.txt</em> file.')); } }
if (isset($_zp_conf_vars['external_album_folder']) && !is_null($_zp_conf_vars['external_album_folder'])) { checkmark(-1, 'albums', gettext("albums [<code>\$conf['external_album_folder']</code> is deprecated]"), sprintf(gettext('You should update your configuration file to conform to the current %1$s example file.'), CONFIGFILE)); $_zp_conf_vars['album_folder_class'] = 'external'; $albumfolder = $_zp_conf_vars['external_album_folder']; } if (!isset($_zp_conf_vars['album_folder_class'])) { $_zp_conf_vars['album_folder_class'] = 'std'; } if (isset($_zp_conf_vars['album_folder'])) { $albumfolder = str_replace('\\', '/', $_zp_conf_vars['album_folder']); switch ($_zp_conf_vars['album_folder_class']) { case 'std': $albumfolder = str_replace('\\', '/', $serverpath) . $albumfolder; break; case 'in_webpath': $webpath = $_SERVER['SCRIPT_NAME']; $root = $serverpath; if (!empty($webpath)) { $root = str_replace('\\', '/', dirname($root)); } $albumfolder = $root . $albumfolder; break; } $good = folderCheck('albums', $albumfolder, $_zp_conf_vars['album_folder_class'], NULL, true, $chmod | 0311, $updatechmod) && $good; } else { checkmark(-1, gettext('<em>albums</em> folder'), gettext('<em>albums</em> folder [The line <code>\$conf[\'album_folder\']</code> is missing from your configuration file]'), sprintf(gettext('You should update your configuration file to conform to the current %1$s example file.'), CONFIGFILE)); }
$good = folderCheck('cache', $serverpath . '/' . CACHEFOLDER . '/', 'std', NULL, true, $chmod | 0311, $updatechmod) && $good; $good = checkmark(file_exists($en_US), gettext('<em>locale</em> folders'), gettext('<em>locale</em> folders [Are not complete]'), gettext('Be sure you have uploaded the complete Zenphoto package. You must have at least the <em>en_US</em> folder.')) && $good; $good = folderCheck(gettext('uploaded'), $serverpath . '/' . UPLOAD_FOLDER . '/', 'std', NULL, false, $chmod | 0311, $updatechmod) && $good; $good = folderCheck(DATA_FOLDER, $serverpath . '/' . DATA_FOLDER . '/', 'std', NULL, false, $chmod | 0311, $updatechmod) && $good; @rmdir(SERVERPATH . '/' . DATA_FOLDER . '/mutex'); @mkdir(SERVERPATH . '/' . DATA_FOLDER . '/' . MUTEX_FOLDER, $chmod | 0311);
$good = folderCheck(gettext('HTML cache'), $serverpath . '/' . STATIC_CACHE_FOLDER . '/', 'std', $Cache_html_subfolders, true, $chmod | 0311, $updatechmod) && $good; $good = folderCheck(gettext('Third party plugins'), $serverpath . '/' . USER_PLUGIN_FOLDER . '/', 'std', $plugin_subfolders, true, $chmod | 0311, $updatechmod) && $good; ?> </ul> <?php if ($good) { $dbmsg = ""; } else { if (setupUserAuthorized()) { ?> <div class="error"> <?php echo gettext("You need to address the problems indicated above then run <code>setup</code> again."); ?> </div> <p class='buttons'> <a href="?refresh" title="<?php echo gettext("Setup failed."); ?>" style="font-size: 15pt; font-weight: bold;"> <img src="<?php echo WEBPATH . '/' . ZENFOLDER; ?>/images/fail.png" alt=""/> <?php echo gettext("Refresh"); ?> </a> </p> <br class="clearall" /><br class="clearall" /> <?php } else { ?> <div class="error"> <?php if (zp_loggedin()) { echo gettext("You need <em>USER ADMIN</em> rights to run setup."); } else { echo gettext('You must be logged in to run setup.'); } ?> </div> <?php $_zp_authority->printLoginForm('', false); } if ($noxlate > 0) { setupLanguageSelector(); } ?> <br class="clearall" /> <?php echo "\n</div><!-- content -->"; echo "\n</div><!-- main -->"; printSetupFooter(); echo "</body>"; echo "</html>"; exit(); } } else { $dbmsg = gettext("database connected"); } // system check if (file_exists(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE)) {
require(SERVERPATH . '/' . DATA_FOLDER . '/' . CONFIGFILE); require_once(dirname(dirname(__FILE__)) . '/functions.php'); $task = ''; if (isset($_GET['create'])) { $task = 'create'; $create = array_flip(explode(',', sanitize($_GET['create']))); } if (isset($_GET['update'])) { $task = 'update'; }
if (db_connect($_zp_conf_vars) && empty($task)) { $result = db_show('tables'); $tables = array(); $prefix = $_zp_conf_vars['mysql_prefix']; $prefixLC = strtolower($prefix); $prefixUC = strtoupper($prefixLC); if ($result) { while ($row = db_fetch_row($result)) { $key = $row[0]; $key = str_replace(array($prefixLC, $prefixUC), $_zp_conf_vars['mysql_prefix'], $key); $tables[$key] = 'update'; } db_free_result($result); } $expected_tables = array($_zp_conf_vars['mysql_prefix'] . 'options', $_zp_conf_vars['mysql_prefix'] . 'albums', $_zp_conf_vars['mysql_prefix'] . 'images', $_zp_conf_vars['mysql_prefix'] . 'comments', $_zp_conf_vars['mysql_prefix'] . 'administrators', $_zp_conf_vars['mysql_prefix'] . 'admin_to_object', $_zp_conf_vars['mysql_prefix'] . 'tags', $_zp_conf_vars['mysql_prefix'] . 'obj_to_tag', $_zp_conf_vars['mysql_prefix'] . 'captcha', $_zp_conf_vars['mysql_prefix'] . 'pages', $_zp_conf_vars['mysql_prefix'] . 'news2cat', $_zp_conf_vars['mysql_prefix'] . 'news_categories', $_zp_conf_vars['mysql_prefix'] . 'news', $_zp_conf_vars['mysql_prefix'] . 'menu', $_zp_conf_vars['mysql_prefix'] . 'plugin_storage', $_zp_conf_vars['mysql_prefix'] . 'search_cache' );
// v1.3.2 handle zenpage table name change transition: // if the old table exists it gets updated instead of a new one being created if (isset($tables[$_zp_conf_vars['mysql_prefix'] . 'zenpage_pages'])) { unset($expected_tables[array_search($_zp_conf_vars['mysql_prefix'] . 'pages', $expected_tables)]); $expected_tables[] = $_zp_conf_vars['mysql_prefix'] . 'zenpage_pages'; } if (isset($tables[$_zp_conf_vars['mysql_prefix'] . 'zenpage_news'])) { unset($expected_tables[array_search($_zp_conf_vars['mysql_prefix'] . 'news', $expected_tables)]); $expected_tables[] = $_zp_conf_vars['mysql_prefix'] . 'zenpage_zenpage_pages'; } if (isset($tables[$_zp_conf_vars['mysql_prefix'] . 'zenpage_news2cat'])) { unset($expected_tables[array_search($_zp_conf_vars['mysql_prefix'] . 'news2cat', $expected_tables)]); $expected_tables[] = $_zp_conf_vars['mysql_prefix'] . 'zenpage_news'; } if (isset($tables[$_zp_conf_vars['mysql_prefix'] . 'zenpage_news_categories'])) { unset($expected_tables[array_search($_zp_conf_vars['mysql_prefix'] . 'news_categories', $expected_tables)]); $expected_tables[] = $_zp_conf_vars['mysql_prefix'] . 'zenpage_news_categories'; } foreach ($expected_tables as $needed) { if (!isset($tables[$needed])) { $tables[$needed] = 'create'; } } if (isset($tables[$_zp_conf_vars['mysql_prefix'] . 'admintoalbum'])) { $tables[$_zp_conf_vars['mysql_prefix'] . 'admin_to_object'] = 'update'; } }
// Prefix the table names. These already have `backticks` around them! $tbl_albums = prefix('albums'); $tbl_comments = prefix('comments'); $tbl_images = prefix('images'); $tbl_options = prefix('options'); $tbl_administrators = prefix('administrators'); $tbl_admin_to_object = prefix('admin_to_object'); $tbl_tags = prefix('tags'); $tbl_obj_to_tag = prefix('obj_to_tag'); $tbl_captcha = prefix('captcha'); $tbl_news = prefix('news'); $tbl_pages = prefix('pages'); $tbl_news_categories = prefix('news_categories'); $tbl_news2cat = prefix('news2cat'); $tbl_menu_manager = prefix('menu'); $tbl_plugin_storage = prefix('plugin_storage'); $tbl_searches = prefix('search_cache');
// Prefix the constraint names: $db_schema = array(); $sql_statements = array(); $collation = db_collation();
/* * ********************************************************************************* Add new fields in the upgrade section. This section should remain static except for new tables. This tactic keeps all changes in one place so that noting gets accidentaly omitted. * ********************************************************************************** */
//v1.2 if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'captcha'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_captcha ( `id` int(11) UNSIGNED NOT NULL auto_increment, `ptime` int(32) UNSIGNED NOT NULL, `hash` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) $collation;"; } //v1.1.7 if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'options'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_options ( `id` int(11) UNSIGNED NOT NULL auto_increment, `ownerid` int(11) UNSIGNED NOT NULL DEFAULT 0, `name` varchar(191) NOT NULL, `value` text, `theme` varchar (127) NOT NULL, `creator` varchar (255) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE (`name`, `ownerid`, `theme`) ) $collation;"; } if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'tags'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_tags ( `id` int(11) UNSIGNED NOT NULL auto_increment, `name` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE (`name`) ) $collation;"; } if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'obj_to_tag'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_obj_to_tag ( `id` int(11) UNSIGNED NOT NULL auto_increment, `tagid` int(11) UNSIGNED NOT NULL, `type` tinytext, `objectid` int(11) UNSIGNED NOT NULL, PRIMARY KEY (`id`) ) $collation;"; }
// v. 1.1.5 if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'administrators'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_administrators ( `id` int(11) UNSIGNED NOT NULL auto_increment, `user` varchar(64) NOT NULL, `pass` varchar(64) NOT NULL, `passhash` int (1), `passupdate` datetime, `name` text, `email` text, `rights` int, `custom_data` text, `valid` int(1) NOT NULL DEFAULT 1, `group` varchar(64) DEFAULT NULL, `date` datetime, `loggedin` datetime, `lastloggedin` datetime, `quota` int(11) DEFAULT NULL, `language` varchar(5) DEFAULT NULL, `prime_album` varchar(255) DEFAULT NULL, `other_credentials` TEXT, `challenge_phrase` TEXT, PRIMARY KEY (`id`), UNIQUE (`user`,`valid`) ) $collation;"; } if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'admin_to_object'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_admin_to_object ( `id` int(11) UNSIGNED NOT NULL auto_increment, `adminid` int(11) UNSIGNED NOT NULL, `objectid` int(11) UNSIGNED NOT NULL, `type` varchar(32) DEFAULT 'album', `edit` int(11) DEFAULT 32767, PRIMARY KEY (`id`) ) $collation;"; }
// base implementation if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'albums'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_albums ( `id` int(11) UNSIGNED NOT NULL auto_increment, `parentid` int(11) unsigned default NULL, `folder` varchar(255) NOT NULL default '', `title` text, `desc` text, `date` datetime default NULL, `updateddate` datetime default NULL, `location` text, `show` int(1) unsigned NOT NULL default '1', `closecomments` int(1) unsigned NOT NULL default '0', `commentson` int(1) UNSIGNED NOT NULL default '1', `thumb` varchar(255) default NULL, `mtime` int(32) default NULL, `sort_type` varchar(20) default NULL, `subalbum_sort_type` varchar(20) default NULL, `sort_order` int(11) unsigned default NULL, `image_sortdirection` int(1) UNSIGNED default '0', `album_sortdirection` int(1) UNSIGNED default '0', `hitcounter` int(11) unsigned default 0, `password` varchar(255) NOT NULL DEFAULT '', `password_hint` text, `publishdate` datetime default NULL, `expiredate` datetime default NULL, `total_value` int(11) DEFAULT 0, `total_votes` int(11) DEFAULT 0, `used_ips` longtext, `custom_data` text, `dynamic` int(1) DEFAULT 0, `search_params` text, `album_theme` varchar(127), `user` varchar(64), `rating` float, `rating_status` int(1) DEFAULT 3, `watermark` varchar(255), `watermark_thumb` varchar(255), `owner` varchar(64) DEFAULT NULL, `codeblock` text, PRIMARY KEY (`id`), UNIQUE `folder` (`folder`) ) $collation;"; }
if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'comments'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_comments ( `id` int(11) UNSIGNED NOT NULL auto_increment, `ownerid` int(11) unsigned NOT NULL default '0', `name` varchar(255) NOT NULL default '', `email` varchar(255) NOT NULL default '', `website` varchar(255) default NULL, `date` datetime default NULL, `comment` text, `inmoderation` int(1) unsigned NOT NULL default '0', `type` varchar(52) DEFAULT 'images', `IP` text, `private` int(1) DEFAULT 0, `anon` int(1) DEFAULT 0, `custom_data` text, PRIMARY KEY (`id`), KEY `ownerid` (`ownerid`) ) $collation;"; }
if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'images'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS $tbl_images ( `id` int(11) UNSIGNED NOT NULL auto_increment, `albumid` int(11) unsigned NOT NULL default '0', `filename` varchar(255) NOT NULL default '', `title` text, `desc` text, `location` text, `city` tinytext, `state` tinytext, `country` tinytext, `credit` text, `copyright` text, `commentson` int(1) UNSIGNED NOT NULL default '1', `show` int(1) NOT NULL default '1', `date` datetime default NULL, `sort_order` int(11) unsigned default NULL, `height` int(10) unsigned default NULL, `width` int(10) unsigned default NULL, `thumbX` int(10) unsigned default NULL, `thumbY` int(10) unsigned default NULL, `thumbW` int(10) unsigned default NULL, `thumbH` int(10) unsigned default NULL, `mtime` int(32) default NULL, `publishdate` datetime default NULL, `expiredate` datetime default NULL, `hitcounter` int(11) unsigned default 0, `total_value` int(11) unsigned default '0', `total_votes` int(11) unsigned default '0', `used_ips` longtext, `custom_data` text, `rating` float, `rating_status` int(1) DEFAULT 3, `hasMetadata` int(1) DEFAULT 0, `watermark` varchar(255) DEFAULT NULL, `watermark_use` int(1) DEFAULT 7, `owner` varchar(64) DEFAULT NULL, `filesize` int(11), `codeblock` text, `user` varchar(64) DEFAULT NULL, `password` varchar(64) DEFAULT NULL, `password_hint` text, PRIMARY KEY (`id`), KEY (`albumid`), UNIQUE `filename` (`filename`,`albumid`) ) $collation;"; }
//v1.2.4 if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'news'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS " . prefix('news') . " ( `id` int(11) UNSIGNED NOT NULL auto_increment, `title` text, `content` longtext, `extracontent` text, `show` int(1) unsigned NOT NULL default '1', `date` datetime, `titlelink` varchar(255) NOT NULL, `commentson` int(1) UNSIGNED NOT NULL, `codeblock` text, `author` varchar(64) NOT NULL, `lastchange` datetime default NULL, `lastchangeauthor` varchar(64) NOT NULL, `hitcounter` int(11) unsigned default 0, `permalink` int(1) unsigned NOT NULL default 0, `locked` int(1) unsigned NOT NULL default 0, `expiredate` datetime default NULL, `total_value` int(11) unsigned default '0', `total_votes` int(11) unsigned default '0', `used_ips` longtext, `rating` float, `rating_status` int(1) DEFAULT 3, `sticky` int(1) DEFAULT 0, `custom_data` text, `truncation` int(1) unsigned default 0, PRIMARY KEY (`id`), UNIQUE (`titlelink`) ) $collation;"; }
if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'news_categories'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS " . prefix('news_categories') . " ( `id` int(11) UNSIGNED NOT NULL auto_increment, `title` text, `titlelink` varchar(255) NOT NULL, `permalink` int(1) UNSIGNED NOT NULL default 0, `hitcounter` int(11) unsigned default 0, `user` varchar(64) DEFAULT NULL, `password` varchar(64) DEFAULT NULL, `password_hint` text, `parentid` int(11) DEFAULT NULL, `sort_order` varchar(48) DEFAULT NULL, `desc` text, `custom_data` text, `show` int(1) unsigned NOT NULL default '1', PRIMARY KEY (`id`), UNIQUE (`titlelink`) ) $collation;"; }
if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'news2cat'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS " . prefix('news2cat') . " ( `id` int(11) UNSIGNED NOT NULL auto_increment, `cat_id` int(11) unsigned NOT NULL, `news_id` int(11) unsigned NOT NULL, PRIMARY KEY (`id`) ) $collation;"; }
if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'pages'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS " . prefix('pages') . " ( `id` int(11) UNSIGNED NOT NULL auto_increment, `parentid` int(11) unsigned default NULL, `title` text, `content` longtext, `extracontent` text, `sort_order`varchar(48) NOT NULL default '', `show` int(1) unsigned NOT NULL default '1', `titlelink` varchar(255) NOT NULL, `commentson` int(1) unsigned NOT NULL, `codeblock` text, `author` varchar(64) NOT NULL, `date` datetime default NULL, `lastchange` datetime default NULL, `lastchangeauthor` varchar(64) NOT NULL, `hitcounter` int(11) unsigned default 0, `permalink` int(1) unsigned NOT NULL default 0, `locked` int(1) unsigned NOT NULL default 0, `expiredate` datetime default NULL, `total_value` int(11) unsigned default '0', `total_votes` int(11) unsigned default '0', `used_ips` longtext, `rating` float, `rating_status` int(1) DEFAULT 3, `user` varchar(64) DEFAULT NULL, `password` varchar(64) DEFAULT NULL, `password_hint` text, `custom_data` text, `truncation` int(1) unsigned default 0, PRIMARY KEY (`id`), UNIQUE (`titlelink`) ) $collation;"; }
if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'menu'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS " . prefix('menu') . " ( `id` int(11) UNSIGNED NOT NULL auto_increment, `parentid` int(11) unsigned default NULL, `title` text, `link` varchar(255) NOT NULL, `include_li` int(1) unsigned default 1, `type` varchar(16) NOT NULL, `sort_order`varchar(48) NOT NULL default '', `show` int(1) unsigned NOT NULL default '1', `menuset` varchar(32) NOT NULL, `span_class` varchar(32) default NULL, `span_id` varchar(32) default NULL, PRIMARY KEY (`id`) ) $collation;"; } // v 1.3.2 if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'plugin_storage'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS " . prefix('plugin_storage') . " ( `id` int(11) UNSIGNED NOT NULL auto_increment, `type` varchar(32) NOT NULL, `aux` varchar(255), `data` longtext, PRIMARY KEY (`id`), KEY `type` (`type`), KEY `aux` (`aux`) ) $collation;"; } // v 1.4.2 if (isset($create[$_zp_conf_vars['mysql_prefix'] . 'search_cache'])) { $db_schema[] = "CREATE TABLE IF NOT EXISTS " . prefix('search_cache') . " ( `id` int(11) UNSIGNED NOT NULL auto_increment, `criteria` TEXT, `date` datetime default NULL, `data` longtext, KEY (`criteria`(255)), PRIMARY KEY (`id`) ) $collation;"; }
/* * ************************************************************************************** * ***** UPGRADE SECTION ****** * ***** ****** * ***** Add all new fields below ****** * ***** ****** * ************************************************************************************** */
//v1.3.2 $sql_statements[] = "RENAME TABLE " . prefix('zenpage_news') . " TO $tbl_news," . prefix('zenpage_news2cat') . " TO $tbl_news2cat," . prefix('zenpage_news_categories') . " TO $tbl_news_categories," . prefix('zenpage_pages') . " TO $tbl_pages";
// v. 1.0.0b $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `sort_type` varchar(20);"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `sort_order` int(11);"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `sort_order` int(11);";
// v. 1.0.3b $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `height` INT UNSIGNED;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `width` INT UNSIGNED;";
// v. 1.0.4b $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `parentid` int(11) unsigned default NULL;";
// v. 1.0.9 $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `mtime` int(32) default NULL;"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `mtime` int(32) default NULL;";
//v. 1.1 $sql_statements[] = "ALTER TABLE $tbl_options DROP `bool`, DROP `description`;"; $sql_statements[] = "ALTER TABLE $tbl_options CHANGE `value` `value` text;"; //v1.1.7 omits $sql_statements[] = "ALTER TABLE $tbl_options DROP INDEX `name`;"; //v1.1.7 omits $sql_statements[] = "ALTER TABLE $tbl_options ADD UNIQUE (`name`);"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `commentson` int(1) UNSIGNED NOT NULL default '1';"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `subalbum_sort_type` varchar(20) default NULL;"; //v1.1.7 omits $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `tags` text;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `location` tinytext;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `city` tinytext;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `state` tinytext;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `country` tinytext;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `credit` tinytext;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `copyright` tinytext;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `date` datetime default NULL;"; //v1.1.7 omits $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `tags` text;"; //v1.2.7 omits $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `EXIFValid` int(1) UNSIGNED default NULL;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `hitcounter` int(11) UNSIGNED default 0;";
//v1.1.1 $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `image_sortdirection` int(1) UNSIGNED default '0';"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `album_sortdirection` int(1) UNSIGNED default '0';";
//v1.1.3 $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `total_value` int(11) UNSIGNED default '0';"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `total_votes` int(11) UNSIGNED default '0';"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `used_ips` longtext;"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `password` varchar(255) NOT NULL default '';"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `password_hint` text;"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `hitcounter` int(11) UNSIGNED default 0;";
//v1.1.4 $sql_statements[] = "ALTER TABLE $tbl_comments ADD COLUMN `type` varchar(52) NOT NULL default 'images';"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `total_value` int(11) UNSIGNED default '0';"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `total_votes` int(11) UNSIGNED default '0';"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `used_ips` longtext;"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `custom_data` text"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `custom_data` text"; $sql_statements[] = "ALTER TABLE $tbl_albums CHANGE `password` `password` varchar(255) NOT NULL DEFAULT ''";
//v1.1.5 $sql_statements[] = " ALTER TABLE $tbl_comments DROP FOREIGN KEY `comments_ibfk1`"; $sql_statements[] = "ALTER TABLE $tbl_comments CHANGE `imageid` `ownerid` int(11) UNSIGNED NOT NULL default '0';"; // $sql_statements[] = "ALTER TABLE $tbl_comments DROP INDEX `imageid`;"; $sql = "SHOW INDEX FROM `" . $_zp_conf_vars['mysql_prefix'] . "comments`"; $result = query($sql, false); $hasownerid = false; if ($result) { while ($row = db_fetch_row($result)) { if ($row[2] == 'ownerid') { $hasownerid = true; } else { if ($row[2] != 'PRIMARY') { $sql_statements[] = "ALTER TABLE $tbl_comments DROP INDEX `" . $row[2] . "`;"; } } } db_free_result($result); } if (!$hasownerid) { $sql_statements[] = "ALTER TABLE $tbl_comments ADD INDEX (`ownerid`);"; } $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `dynamic` int(1) UNSIGNED default '0'"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `search_params` text";
//v1.1.6 $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `album_theme` text"; $sql_statements[] = "ALTER TABLE $tbl_comments ADD COLUMN `IP` text";
//v1.1.7 $sql_statements[] = "ALTER TABLE $tbl_comments ADD COLUMN `private` int(1) UNSIGNED default 0"; $sql_statements[] = "ALTER TABLE $tbl_comments ADD COLUMN `anon` int(1) UNSIGNED default 0"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `user` varchar(64) default ''"; $sql_statements[] = "ALTER TABLE $tbl_tags " . $collation; $sql_statements[] = "ALTER TABLE $tbl_tags CHANGE `name` `name` varchar(255) " . $collation; $sql_statements[] = "ALTER TABLE $tbl_administrators " . $collation; $sql_statements[] = "ALTER TABLE $tbl_administrators CHANGE `name` `name` TEXT " . $collation; $sql_statements[] = "ALTER TABLE $tbl_options ADD COLUMN `ownerid` int(11) UNSIGNED NOT NULL DEFAULT 0"; $sql_statements[] = "ALTER TABLE $tbl_options DROP INDEX `name`"; //v1.2.7 omits $sql_statements[] = "ALTER TABLE $tbl_options ADD UNIQUE `unique_option` (`name`, `ownerid`)"; //v1.2 $sql_statements[] = "ALTER TABLE $tbl_options CHANGE `ownerid` `ownerid` int(11) UNSIGNED NOT NULL DEFAULT 0"; $sql_statements[] = "ALTER TABLE $tbl_obj_to_tag " . $collation; $sql_statements[] = "ALTER TABLE $tbl_options CHANGE `name` `name` varchar(255) " . $collation; $hastagidindex = false; $sql = "SHOW INDEX FROM `" . $_zp_conf_vars['mysql_prefix'] . "obj_to_tag`"; $result = query($sql, false); if ($result) { while ($row = db_fetch_row($result)) { if ($row[2] == 'tagid') { $hastagidindex = true; } } db_free_result($result); } if (!$hastagidindex) { $sql_statements[] = "ALTER TABLE $tbl_obj_to_tag ADD INDEX (`tagid`)"; $sql_statements[] = "ALTER TABLE $tbl_obj_to_tag ADD INDEX (`objectid`)"; }
//v1.2.1 $sql_statements[] = "ALTER TABLE $tbl_albums CHANGE `title` `title` TEXT"; $sql_statements[] = "ALTER TABLE $tbl_images CHANGE `title` `title` TEXT"; $sql_statements[] = "ALTER TABLE $tbl_images CHANGE `location` `location` TEXT"; $sql_statements[] = "ALTER TABLE $tbl_images CHANGE `credit` `credit` TEXT"; $sql_statements[] = "ALTER TABLE $tbl_images CHANGE `copyright` `copyright` TEXT"; //v1.2.2 $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `thumbX` int(10) UNSIGNED default NULL;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `thumbY` int(10) UNSIGNED default NULL;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `thumbW` int(10) UNSIGNED default NULL;"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `thumbH` int(10) UNSIGNED default NULL;";
//v1.2.4 $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' DROP INDEX `titlelink`;'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' ADD UNIQUE (`titlelink`);'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' DROP INDEX `titlelink`;'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' ADD UNIQUE (`titlelink`);'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' DROP INDEX `titlelink`;'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD UNIQUE (`titlelink`);'; $sql_statements[] = 'ALTER TABLE ' . $tbl_comments . ' CHANGE `comment` `comment` TEXT;'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' CHANGE `title` `title` TEXT;'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' CHANGE `titlelink` `titlelink` varchar(255);'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' CHANGE `title` `title` TEXT;'; $sql_statements[] = 'ALTER TABLE ' . $tbl_comments . ' ADD COLUMN `custom_data` TEXT;'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' ADD COLUMN `expiredate` datetime default NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD COLUMN `expiredate` datetime default NULL'; $sql_statements[] = 'UPDATE ' . $tbl_pages . ' SET `parentid`=NULL WHERE `parentid`=0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' CHANGE `sort_order` `sort_order` VARCHAR(48) NOT NULL default ""'; //v1.2.5 $sql_statements[] = "ALTER TABLE $tbl_albums CHANGE `parentid` `parentid` int(11) unsigned default NULL;"; $sql_statements[] = "ALTER TABLE $tbl_images CHANGE `albumid` `albumid` int(11) unsigned default NULL"; $sql_statements[] = 'UPDATE ' . $tbl_albums . ' SET `parentid`=NULL WHERE `parentid`=0'; $sql_statements[] = 'UPDATE ' . $tbl_images . ' SET `albumid`=NULL WHERE `albumid`=0'; $sql_statements[] = 'DELETE FROM ' . $tbl_pages . ' WHERE `titlelink`=""'; // cleanup for bad records
$sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `rating` FLOAT NOT NULL DEFAULT 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `rating_status` int(1) UNSIGNED default 3'; $sql_statements[] = 'UPDATE ' . $tbl_albums . ' SET rating=total_value / total_votes WHERE total_votes > 0';
$sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `rating` FLOAT NOT NULL DEFAULT 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `rating_status` int(1) UNSIGNED default 3'; $sql_statements[] = 'UPDATE ' . $tbl_images . ' SET rating=total_value / total_votes WHERE total_votes > 0';
$sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD COLUMN `total_votes` int(11) UNSIGNED default 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD COLUMN `total_value` int(11) UNSIGNED default 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD COLUMN `rating` FLOAT NOT NULL DEFAULT 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD COLUMN `used_ips` longtext'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD COLUMN `rating_status` int(1) UNSIGNED default 3';
$sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' ADD COLUMN `total_votes` int(11) UNSIGNED default 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' ADD COLUMN `total_value` int(11) UNSIGNED default 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' ADD COLUMN `rating` FLOAT NOT NULL DEFAULT 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' ADD COLUMN `used_ips` longtext'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' ADD COLUMN `rating_status` int(1) UNSIGNED default 3'; //v1.2.6 $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `custom_data` TEXT'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' CHANGE `password` `pass` varchar(64)'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `valid` int(1) NOT NULL DEFAULT 1'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `group` varchar(64)'; $sql = 'SHOW INDEX FROM ' . $tbl_administrators; $result = query($sql, false); if ($result) { while ($row = db_fetch_row($result)) { if ($row[2] == 'user') { $sql_statements[] = "ALTER TABLE $tbl_administrators DROP INDEX `user`"; $sql_statements[] = "ALTER TABLE $tbl_administrators ADD UNIQUE (`valid`, `user`)"; break; } } db_free_result($result); } $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `watermark` varchar(255) DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' CHANGE `commentson` `commentson` int(1) UNSIGNED default 0'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news . ' CHANGE `commentson` `commentson` int(1) UNSIGNED default 0'; //v1.2.7 $sql_statements[] = "ALTER TABLE $tbl_albums CHANGE `album_theme` `album_theme` varchar(127) DEFAULT NULL"; $sql_statements[] = "ALTER TABLE $tbl_options ADD COLUMN `theme` varchar(127) NOT NULL"; $sql_statements[] = "ALTER TABLE $tbl_options CHANGE `name` `name` varchar(191) DEFAULT NULL"; $sql_statements[] = "ALTER TABLE $tbl_options DROP INDEX `unique_option`"; $sql_statements[] = "ALTER TABLE $tbl_options ADD UNIQUE `unique_option` (`name`, `ownerid`, `theme`)"; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' DROP COLUMN `EXIFValid`'; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `hasMetadata` int(1) default 0'; $sql_statements[] = 'UPDATE ' . $tbl_images . ' SET `date`=NULL WHERE `date`="0000-00-00 00:00:00"'; // empty dates should be NULL $sql_statements[] = 'UPDATE ' . $tbl_albums . ' SET `date`=NULL WHERE `date`="0000-00-00 00:00:00"'; // force metadata refresh //v1.2.8 $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' CHANGE `place` `location` TEXT'; //v1.3 $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `watermark` varchar(255) DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `watermark_use` int(1) DEFAULT 7'; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `owner` varchar(64) DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `filesize` INT'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `quota` INT'; $sql_statements[] = "ALTER TABLE $tbl_pages ADD COLUMN `user` varchar(64) default ''"; $sql_statements[] = 'ALTER TABLE ' . $tbl_pages . ' ADD COLUMN `password` VARCHAR(64)'; $sql_statements[] = "ALTER TABLE $tbl_pages ADD COLUMN `password_hint` text;"; $sql_statements[] = "ALTER TABLE $tbl_news_categories ADD COLUMN `user` varchar(64) default ''"; $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' ADD COLUMN `password` VARCHAR(64)'; $sql_statements[] = "ALTER TABLE $tbl_news_categories ADD COLUMN `password_hint` text;";
//v1.3.1 $sql_statements[] = 'RENAME TABLE ' . prefix('admintoalbum') . ' TO ' . $tbl_admin_to_object; $sql_statements[] = 'ALTER TABLE ' . $tbl_admin_to_object . ' ADD COLUMN `type` varchar(32) DEFAULT "album";'; $sql_statements[] = 'ALTER TABLE ' . $tbl_admin_to_object . ' CHANGE `albumid` `objectid` int(11) UNSIGNED NOT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' CHANGE `albums` `objects` varchar(64)'; $sql_statements[] = "ALTER TABLE $tbl_news ADD COLUMN `sticky` int(1) default 0"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD COLUMN `codeblock` TEXT"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `codeblock` TEXT"; $sql_statements[] = "ALTER TABLE $tbl_admin_to_object ADD COLUMN `edit` int default 32767";
//v1.4.0 $sql_statements[] = "ALTER TABLE $tbl_options CHANGE `value` `value` TEXT " . $collation; $sql_statements[] = "ALTER TABLE $tbl_news_categories ADD COLUMN `parentid` INT(11) DEFAULT NULL"; $sql_statements[] = "ALTER TABLE $tbl_news_categories ADD COLUMN `sort_order` varchar(48)"; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `user` varchar(64) default ''"; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `password` VARCHAR(64)'; $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `password_hint` text;"; $sql_statements[] = "ALTER TABLE $tbl_news_categories CHANGE `cat_name` `title` TEXT"; $sql_statements[] = "ALTER TABLE $tbl_news_categories CHANGE `cat_link` `titlelink` varchar(255) NOT NULL"; $sql_statements[] = 'UPDATE ' . $tbl_obj_to_tag . ' SET `type`="news" WHERE `type`="zenpage_news"'; $sql_statements[] = 'UPDATE ' . $tbl_obj_to_tag . ' SET `type`="pages" WHERE `type`="zenpage_pages"'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `language` VARCHAR(5)'; $sql_statements[] = "ALTER TABLE $tbl_news_categories ADD COLUMN `desc` text;"; $sql_statements[] = "ALTER TABLE $tbl_news_categories ADD COLUMN `custom_data` text"; $sql_statements[] = "ALTER TABLE $tbl_pages ADD COLUMN `custom_data` text"; $sql_statements[] = "ALTER TABLE $tbl_news ADD COLUMN `custom_data` text"; $sql_statements[] = "ALTER TABLE $tbl_images DROP FOREIGN KEY `images_ibfk1`"; $sql_statements[] = "ALTER TABLE $tbl_menu_manager ADD COLUMN `span_id` varchar(43) default NULL"; $sql_statements[] = "ALTER TABLE $tbl_menu_manager ADD COLUMN `span_class` varchar(43) default NULL"; $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `watermark_thumb` varchar(255) DEFAULT NULL'; //v1.4.1 $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `prime_album` varchar(255) DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `other_credentials` TEXT'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `date` datetime'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `loggedin` datetime'; $sql_statements[] = 'UPDATE ' . $tbl_administrators . ' SET `date`="' . date('Y-m-d H:i:s', $zptime) . '" WHERE `date` IS NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `owner` varchar(64) DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' CHANGE `owner` `owner` varchar(64) DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_options . ' ADD COLUMN `creator` varchar(255) DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `updateddate` datetime DEFAULT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' DROP INDEX `title`'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' CHANGE `titlelink` `titlelink` VARCHAR(255) NOT NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' CHANGE `title` `title` TEXT'; $sql_statements[] = 'ALTER TABLE ' . $tbl_news_categories . ' ADD UNIQUE `titlelink` (`titlelink`)'; $sql_statements[] = "ALTER TABLE $tbl_news_categories ADD COLUMN `show` int(1) unsigned NOT NULL default '1'"; //v1.4.2 $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `challenge_phrase` TEXT'; $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `publishdate` datetime default NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_albums . ' ADD COLUMN `expiredate` datetime default NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `publishdate` datetime default NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_images . ' ADD COLUMN `expiredate` datetime default NULL'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `lastloggedin` datetime'; //v1.4.3 $sql_statements[] = "ALTER TABLE $tbl_options CHANGE `theme` `theme` varchar(127) NOT NULL"; $sql_statements[] = "ALTER TABLE $tbl_options CHANGE `name` `name` varchar(191) NOT NULL"; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `valid` int(1) NOT NULL DEFAULT 1'; $sql_statements[] = "ALTER TABLE $tbl_tags CHANGE `name` `name` varchar(255) NOT NULL"; $sql_statements[] = "ALTER TABLE $tbl_images DROP FOREIGN KEY `" . trim($tbl_images, '`') . "_ibfk1`"; $sql_statements[] = "ALTER TABLE $tbl_comments DROP FOREIGN KEY `" . trim($tbl_comments, '`') . "_ibfk1`"; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' CHANGE `pass` `pass` varchar(64)'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `passhash` int (1)'; $sql_statements[] = 'ALTER TABLE ' . $tbl_administrators . ' ADD COLUMN `passupdate` datetime'; //v1.4.4 $sql_statements[] = "ALTER TABLE $tbl_searches CHANGE `data` `data` LONGTEXT"; $sql_statements[] = "ALTER TABLE $tbl_plugin_storage CHANGE `data` `data` LONGTEXT"; $sql_statements[] = "ALTER TABLE $tbl_news CHANGE `content` `content` LONGTEXT"; $sql_statements[] = "ALTER TABLE $tbl_pages CHANGE `content` `content` LONGTEXT"; //v1.4.5 $sql_statements[] = "ALTER TABLE $tbl_news ADD COLUMN `truncation` int(1) unsigned NOT NULL default '0'"; $sql_statements[] = "ALTER TABLE $tbl_pages ADD COLUMN `truncation` int(1) unsigned NOT NULL default '0'"; $sql_statements[] = "CREATE INDEX `albumid` ON $tbl_images (`albumid`)"; $sql_statements[] = "ALTER TABLE $tbl_albums DROP INDEX `folder`"; $sql_statements[] = "ALTER TABLE $tbl_albums ADD UNIQUE `folder` (`folder`)"; $sql_statements[] = "ALTER TABLE $tbl_images DROP INDEX `filename`"; $sql_statements[] = "ALTER TABLE $tbl_images ADD UNIQUE `filename` (`filename`, `albumid`)";
// do this last incase there are any field changes of like names! foreach ($_zp_exifvars as $key => $exifvar) { if ($s = $exifvar[4]) { if ($s < 255) { $size = "varchar($s)"; } else { $size = 'MEDIUMTEXT'; } $sql_statements[] = "ALTER TABLE $tbl_images ADD COLUMN `$key` $size default NULL"; $sql_statements[] = "ALTER TABLE $tbl_images CHANGE `$key` `$key` $size default NULL"; } }
/** * ************************************************************************************ * ***** END of UPGRADE SECTION * ***** * ***** Add all new fields above * ***** * ************************************************************************************* */ $createTables = true; if (isset($_GET['create']) || isset($_GET['update']) || isset($_GET['protect_files']) && db_connect($_zp_conf_vars)) { if (!isset($_GET['protect_files'])) { if ($taskDisplay[substr($task, 0, 8)] == 'create') { echo "<h3>" . gettext("About to create tables") . "...</h3>"; } else { echo "<h3>" . gettext("About to update tables") . "...</h3>"; } setupLog(gettext("Begin table creation")); foreach ($db_schema as $sql) { @set_time_limit(60); $result = db_create_table($sql); echo ' '; // keep alive if (!$result) { $createTables = false; setupLog(sprintf(gettext('Query %1$s Failed. Error: %2$s'), $sql, db_error())); echo '<div class="error">'; echo sprintf(gettext('Table creation failure:<br />Query: %1$s<br />Error: %2$s'), $sql, db_error()); echo '</div>'; } else { setupLog(sprintf(gettext('Query ( %s ) Success.'), $sql)); } } // always run the update queries to insure the tables are up to current level setupLog(gettext("Begin table updates")); foreach ($sql_statements as $sql) { @set_time_limit(60); echo ' '; // keep alive $result = db_table_update($sql); if (!$result) { $error = db_error(); setupLog(sprintf(gettext('Query %1$s Failed. Error: %2$s'), $sql, $error), strpos($error, 'syntax') !== false); } else { setupLog(sprintf(gettext('Query ( %s ) Success.'), $sql)); } }
echo "<h3>"; if ($taskDisplay[substr($task, 0, 8)] == 'create') { if ($createTables) { echo gettext('Done with table create!'); } else { echo gettext('Done with table create with errors!'); } } else { if ($createTables) { echo gettext('Done with table update'); } else { echo gettext('Done with table update with errors'); } } echo "</h3>";
checkUnique($tbl_administrators, array('valid' => 0, 'user' => 0)); checkUnique($tbl_albums, array('folder' => 0)); checkUnique($tbl_images, array('albumid' => 0, 'filename' => 0)); checkUnique($tbl_options, array('name' => 0, 'ownerid' => 0, 'theme' => 0)); checkUnique($tbl_news_categories, array('titlelink' => 0)); checkUnique($tbl_news, array('titlelink' => 0)); checkUnique($tbl_pages, array('titlelink' => 0)); checkUnique($tbl_tags, array('name' => 0));
// set defaults on any options that need it setupLog(gettext("Done with database creation and update")); if ($prevRel = getOption('zenphoto_release')) { setupLog(sprintf(gettext("Previous Release was %s"), $prevRel), true); } require(dirname(__FILE__) . '/setup-option-defaults.php');
if ($debug == 'base64') { // update zenpage codeblocks--remove the base64 encoding $sql = 'SELECT `id`, `codeblock` FROM ' . prefix('news') . ' WHERE `codeblock` NOT REGEXP "^a:[0-9]+:{"'; $result = query_full_array($sql, false); if (is_array($result)) { foreach ($result as $row) { $codeblock = base64_decode($row['codeblock']); $sql = 'UPDATE ' . prefix('news') . ' SET `codeblock`=' . db_quote($codeblock) . ' WHERE `id`=' . $row['id']; query($sql); } } $sql = 'SELECT `id`, `codeblock` FROM ' . prefix('pages') . ' WHERE `codeblock` NOT REGEXP "^a:[0-9]+:{"'; $result = query_full_array($sql, false); if (is_array($result)) { foreach ($result as $row) { $codeblock = base64_decode($row['codeblock']); $sql = 'UPDATE ' . prefix('pages') . ' SET `codeblock`=' . db_quote($codeblock) . ' WHERE `id`=' . $row['id']; query($sql); } } }
if ($debug == 'albumids') { // fixes 1.2 move/copy albums with wrong ids $albums = $_zp_gallery->getAlbums(); foreach ($albums as $album) { checkAlbumParentid($album, NULL, 'setuplog'); } } }
if ($createTables) { if (isset($_GET['protect_files'])) { require_once(dirname(dirname(__FILE__)) . '/' . PLUGIN_FOLDER . '/security-logger.php'); $curdir = getcwd(); chdir(dirname(__FILE__)); $list = setup_glob('*.php'); chdir($curdir); $rslt = array(); foreach ($list as $component) { @chmod(SERVERPATH . '/' . ZENFOLDER . '/setup/' . $component, 0777); if (@rename(SERVERPATH . '/' . ZENFOLDER . '/setup/' . $component, SERVERPATH . '/' . ZENFOLDER . '/setup/' . $component . '.xxx')) { @chmod(SERVERPATH . '/' . ZENFOLDER . '/setup/' . $component . '.xxx', FILE_MOD); setupLog(sprintf(gettext('%s protected.'), $component), true); } else { @chmod(SERVERPATH . '/' . ZENFOLDER . '/setup/' . $component, FILE_MOD); setupLog(sprintf(gettext('failed to protect %s.'), $component), true); $rslt[] = '../setup/' . $component; } }
if (empty($rslt)) { zp_apply_filter('log_setup', true, 'protect', gettext('protected')); ?> <p class="messagebox"><?php echo gettext('Setup scripts protected.'); ?></p> <?php } else { $rslt = implode(', ', $rslt); zp_apply_filter('log_setup', false, 'protect', $rslt); ?> <p class="errorbox"> <?php printf(gettext('Failed to protect: %s'), $rslt); ?> </p> <?php $autorun = false; } } else { if (!(defined('TEST_RELEASE') && TEST_RELEASE)) { $origautorun = $autorun; $autorun = 'setup'; } }
if ($_zp_loggedin == ADMIN_RIGHTS) { $filelist = safe_glob(SERVERPATH . "/" . BACKUPFOLDER . '/*.zdb'); if (count($filelist) > 0) { $link = sprintf(gettext('You may <a href="%1$s">set your admin user and password</a> or <a href="%2$s">run backup-restore</a>'), WEBPATH . '/' . ZENFOLDER . '/admin-users.php?page=users', WEBPATH . '/' . ZENFOLDER . '/' . UTILITIES_FOLDER . '/backup_restore.php'); $autorun = false; } else { $link = sprintf(gettext('You need to <a href="%1$s">set your admin user and password</a>'), WEBPATH . '/' . ZENFOLDER . '/admin-users.php?page=users'); if ($autorun == 'admin' || $autorun == 'gallery') { $autorun = WEBPATH . '/' . ZENFOLDER . '/admin-users.php?page=users'; } } } else { $link = sprintf(gettext('You can now <a href="%1$s">View your gallery</a> or <a href="%2$s">administer.</a>'), WEBPATH . '/', WEBPATH . '/' . ZENFOLDER . '/admin.php'); } ?> <p id="golink" class="delayshow" style="display:none;"><?php echo $link; ?></p> <?php switch ($autorun) { case false: break; case 'admin': $autorun = WEBPATH . '/' . ZENFOLDER . '/admin.php'; break; case 'gallery': $autorun = WEBPATH . '/'; break; case 'setup': $autorun = WEBPATH . '/' . ZENFOLDER . '/setup/index.php?checked&autorun=' . $origautorun . '&protect_files&xsrfToken=' . $xsrftoken; break; default: break; } ?> <script type="text/javascript"> window.onload = function() { $('.delayshow').show(); <?php if ($autorun) { ?> if (!imageErr) { $('#golink').hide(); window.location = '<?php echo $autorun; ?>'; } <?php } ?> } </script> <?php } } else if (db_connect($_zp_conf_vars)) { $task = ''; if (setupUserAuthorized() || $blindInstall) { if (!empty($dbmsg)) { ?> <h2><?php echo $dbmsg; ?></h2> <?php } ?> <div class="dbwindow"> <ul> <?php $db_list = ''; $create = array(); foreach ($expected_tables as $table) { if ($tables[$table] == 'create') { $create[] = $table; if (!empty($db_list)) { $db_list .= ', '; } $db_list .= "<code>$table</code>"; } } if (($nc = count($create)) > 0) { ?> <li class="createdb"> <?php printf(gettext("Database tables to create: %s"), $db_list); ?> </li> <?php } $db_list = ''; $update = array(); foreach ($expected_tables as $table) { if ($tables[$table] == 'update') { $update[] = $table; if (!empty($db_list)) { $db_list .= ', '; } $db_list .= "<code>$table</code>"; } } if (($nu = count($update)) > 0) { ?> <li class="updatedb"> <?php printf(gettext("Database tables to update: %s"), $db_list); ?> </li> <?php } ?> </ul> </div> <?php if ($nc > 0) { $task = "create=" . implode(',', $create); } if ($nu > 0) { if (empty($task)) { $task = "update"; } else { $task .= "&update"; } } if ($debug) { $task .= '&debug=' . $debug; } }
if (isset($tables[$_zp_conf_vars['mysql_prefix'] . 'zenpage_news'])) { $hideGoButton = ' style="display:none"'; $autorun = false; ?> </script> <div class="warning" id="dbrestructure"> <p><?php echo gettext('<strong>Warning!</strong> This upgrade makes structural changes to the database which are not easily reversed. Be sure you have a database backup before proceeding.'); ?></p> <form> <input type="hidden" name="xsrfToken" value="<?php echo $xsrftoken ?>" /> <p><?php printf(gettext('%s I acknowledge that proceeding will restructure my database.'), '<input type="checkbox" id="agree" value="0" onclick="javascript:$(\'#setup\').show();$(\'#agree\').attr(\'checked\',\'checked\')" />') ?></p> </form> </div> <?php } else { $hideGoButton = ''; } if ($warn) { $img = 'warn.png'; } else { $img = 'pass.png'; } if ($autorun) { $task .= '&autorun=' . $autorun; } if ($blindInstall) { ob_end_clean(); $blindInstall = false; $stop = !$autorun; } else { $stop = !setupUserAuthorized(); } if ($stop) { ?> <div class="error"> <?php if (zp_loggedin()) { echo gettext("You need <em>USER ADMIN</em> rights to run setup."); } else { echo gettext('You must be logged in to run setup.'); } ?> </div> <?php $_zp_authority->printLoginForm('', false); } else { if (!empty($task) && substr($task, 0, 1) != '&') { $task = '&' . $task; } $task = html_encode($task); ?> <form id="setup" action="<?php echo WEBPATH . '/' . ZENFOLDER, '/setup/index.php?checked'; echo $task . $mod; ?>" method="post"<?php echo $hideGoButton; ?> > <input type="hidden" name="setUTF8URI" id="setUTF8URI" value="dont" /> <input type="hidden" name="xsrfToken" value="<?php echo $xsrftoken ?>" /> <?php if (isset($_REQUEST['autorun'])) { if (!empty($_REQUEST['autorun'])) { $auto = setup_sanitize($_REQUEST['autorun']); } else { $auto = 'admin'; } ?> <input type="hidden" id="autorun" name="autorun" value="<?php echo html_encode($auto); ?>" /> <?php } ?> <p class="buttons"><button class="submitbutton" id="submitbutton" type="submit" title="<?php echo gettext('run setup'); ?>" ><img src="<?php echo WEBPATH . '/' . ZENFOLDER; ?>/images/<?php echo $img; ?>" alt="" /><?php echo gettext("Go"); ?></button></p> <br class="clearall" /><br class="clearall" /> </form> <?php } if ($autorun) { ?> <script type="text/javascript"> $('#submitbutton').hide(); $('#setup').submit(); </script> <?php } } else { ?> <div class="error"> <h3><?php echo gettext("database did not connect"); ?></h3> <p> <?php echo gettext("If you haven't created the database yet, now would be a good time."); ?> </p> </div> <?php } } else { // The config file hasn't been created yet. Show the steps. ?> <div class="error"> <?php echo sprintf(gettext('The %1$s file does not exist.'), CONFIGFILE); ?> </div> <?php }
if ($blindInstall) { ob_end_clean(); } ?> <?php if ($noxlate > 0) { setupLanguageSelector(); } ?> <br class="clearall" /> </div><!-- content --> </div><!-- main --> <?php printSetupFooter(); ?> </body> </html>
|