-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathexample-output.html
1524 lines (1524 loc) · 63.5 KB
/
example-output.html
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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><link type="text/css" rel="stylesheet" href="chrome-extension://cpngackimfmofbokmjmljamhdncknpmg/style.css"><script type="text/javascript" charset="utf-8" src="chrome-extension://cpngackimfmofbokmjmljamhdncknpmg/page_context.js"></script></head><body screen_capture_injected="true"><pre><h1>Compare Two phpinfo() Files</h1><p>Comparison between <span style="color: red;">http://test.asymptomatic.net/phpinfo.php</span> and <span style="color: blue;">http://hosting.iptcom.net/phpinfo.php</span></p><h2>side-by-side comparison</h2><span style="font-weight: bold;">System </span>
array1: Linux slice1.owenw.com 2.6.16.29-xen #1 SMP Sun Sep 30 04:00:13 UTC 2007 x86_64
array2: FreeBSD hosting01.iptelecom.net.ua 4.11-STABLE FreeBSD 4.11-STABLE #0: Mon Nov i386
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Linux slice1.owenw.com 2.6.16.29-xen #1 SMP Sun Sep 30 04:00:13 UTC 2007 x86_64 </span>
+ <span style="color: blue;">FreeBSD hosting01.iptelecom.net.ua 4.11-STABLE FreeBSD 4.11-STABLE #0: Mon Nov i386 </span>
<br><span style="font-weight: bold;">Build Date </span>
array1: Feb 8 2008 16:00:05
array2: Mar 15 2007 13:03:41
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Feb 8 2008 16:00:05 </span>
+ <span style="color: blue;">Mar 15 2007 13:03:41 </span>
<br><span style="font-weight: bold;">Server API </span>
array1: Apache 2.0 Handler
array2: Apache
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Apache 2.0 Handler </span>
+ <span style="color: blue;">Apache </span>
<br><span style="font-weight: bold;">Virtual Directory Support </span>
array1: disabled
array2: disabled
<br><span style="font-weight: bold;">Configuration File (php.ini) Path </span>
array1: /etc/php5/apache2/php.ini
array2: /usr/local/etc/php.ini
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/etc/php5/apache2/php.ini </span>
+ <span style="color: blue;">/usr/local/etc/php.ini </span>
<br><span style="font-weight: bold;">Scan this dir for additional .ini files </span>
array1: /etc/php5/apache2/conf.d
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/etc/php5/apache2/conf.d </span>
<br><span style="font-weight: bold;">PHP API </span>
array1: 20041225
array2: 20020918
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">20041225 </span>
+ <span style="color: blue;">20020918 </span>
<br><span style="font-weight: bold;">PHP Extension </span>
array1: 20060613
array2: 20020429
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">20060613 </span>
+ <span style="color: blue;">20020429 </span>
<br><span style="font-weight: bold;">Zend Extension </span>
array1: 220060519
array2: 20050606
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">220060519 </span>
+ <span style="color: blue;">20050606 </span>
<br><span style="font-weight: bold;">Debug Build </span>
array1: no
array2: no
<br><span style="font-weight: bold;">Thread Safety </span>
array1: disabled
array2: disabled
<br><span style="font-weight: bold;">Zend Memory Manager </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">IPv6 Support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">Registered PHP Streams </span>
array1: zip
array2: php, http, ftp, https, ftps, compress.zlib
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">zip </span>
+ <span style="color: blue;">php, http, ftp, https, ftps, compress.zlib </span>
<br><span style="font-weight: bold;">Registered Stream Socket Transports </span>
array1: tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">tcp, udp, unix, udg, ssl, sslv3, sslv2, tls </span>
<br><span style="font-weight: bold;">Registered Stream Filters </span>
array1: string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.*
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.* </span>
<br><span style="font-weight: bold;">allow_call_time_pass_reference</span>
array1: On
array2: On
<br><span style="font-weight: bold;">allow_url_fopen</span>
array1: On
array2: On
<br><span style="font-weight: bold;">allow_url_include</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">always_populate_raw_post_data</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">arg_separator.input</span>
array1: &
array2: &
<br><span style="font-weight: bold;">arg_separator.output</span>
array1: &
array2: &
<br><span style="font-weight: bold;">asp_tags</span>
array1: Off
array2: On
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
+ <span style="color: blue;">On</span>
<br><span style="font-weight: bold;">auto_globals_jit</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">default_mimetype</span>
array1: text/html
array2: text/html
<br><span style="font-weight: bold;">define_syslog_variables</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">display_errors</span>
array1: On
array2: On
<br><span style="font-weight: bold;">display_startup_errors</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">enable_dl</span>
array1: On
array2: On
<br><span style="font-weight: bold;">error_log</span>
array1: /var/log/apache2/php_error.log
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/var/log/apache2/php_error.log</span>
<br><span style="font-weight: bold;">error_reporting</span>
array1: 6135
array2: 0
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">6135</span>
+ <span style="color: blue;">0</span>
<br><span style="font-weight: bold;">expose_php</span>
array1: On
array2: On
<br><span style="font-weight: bold;">extension_dir</span>
array1: /usr/lib/php5/20060613
array2: ./
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/usr/lib/php5/20060613</span>
+ <span style="color: blue;">./</span>
<br><span style="font-weight: bold;">file_uploads</span>
array1: On
array2: On
<br><span style="font-weight: bold;">highlight.bg</span>
array1: <font style="color: #FFFFFF">#FFFFFF</font>
array2: <font style="color: #FFFFFF">#FFFFFF</font>
<br><span style="font-weight: bold;">highlight.comment</span>
array1: <font style="color: #FF8000">#FF8000</font>
array2: <font style="color: #FF8000">#FF8000</font>
<br><span style="font-weight: bold;">highlight.default</span>
array1: <font style="color: #0000BB">#0000BB</font>
array2: <font style="color: #0000BB">#0000BB</font>
<br><span style="font-weight: bold;">highlight.html</span>
array1: <font style="color: #000000">#000000</font>
array2: <font style="color: #000000">#000000</font>
<br><span style="font-weight: bold;">highlight.keyword</span>
array1: <font style="color: #007700">#007700</font>
array2: <font style="color: #007700">#007700</font>
<br><span style="font-weight: bold;">highlight.string</span>
array1: <font style="color: #DD0000">#DD0000</font>
array2: <font style="color: #DD0000">#DD0000</font>
<br><span style="font-weight: bold;">html_errors</span>
array1: On
array2: On
<br><span style="font-weight: bold;">ignore_repeated_errors</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">ignore_repeated_source</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">ignore_user_abort</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">implicit_flush</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">include_path</span>
array1: .:/usr/share/php:/usr/share/pear
array2: .:/usr/local/lib/php:/usr/local/lib/php/lib
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">.:/usr/share/php:/usr/share/pear</span>
+ <span style="color: blue;">.:/usr/local/lib/php:/usr/local/lib/php/lib</span>
<br><span style="font-weight: bold;">log_errors</span>
array1: Off
array2: On
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
+ <span style="color: blue;">On</span>
<br><span style="font-weight: bold;">log_errors_max_len</span>
array1: 1024
array2: 1024
<br><span style="font-weight: bold;">magic_quotes_gpc</span>
array1: Off
array2: On
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
+ <span style="color: blue;">On</span>
<br><span style="font-weight: bold;">magic_quotes_runtime</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">magic_quotes_sybase</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">max_execution_time</span>
array1: 30
array2: 300
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">30</span>
+ <span style="color: blue;">300</span>
<br><span style="font-weight: bold;">max_input_time</span>
array1: 60
array2: 120
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">60</span>
+ <span style="color: blue;">120</span>
<br><span style="font-weight: bold;">memory_limit</span>
array1: 96M
array2: 16M
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">96M</span>
+ <span style="color: blue;">16M</span>
<br><span style="font-weight: bold;">post_max_size</span>
array1: 8M
array2: 8M
<br><span style="font-weight: bold;">precision</span>
array1: 12
array2: 12
<br><span style="font-weight: bold;">realpath_cache_size</span>
array1: 16K
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">16K</span>
<br><span style="font-weight: bold;">realpath_cache_ttl</span>
array1: 120
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">120</span>
<br><span style="font-weight: bold;">register_argc_argv</span>
array1: On
array2: On
<br><span style="font-weight: bold;">register_globals</span>
array1: Off
array2: On
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
+ <span style="color: blue;">On</span>
<br><span style="font-weight: bold;">register_long_arrays</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">report_memleaks</span>
array1: On
array2: On
<br><span style="font-weight: bold;">report_zend_debug</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">safe_mode</span>
array1: Off
array2: On
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
+ <span style="color: blue;">On</span>
<br><span style="font-weight: bold;">safe_mode_gid</span>
array1: Off
array2: On
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
+ <span style="color: blue;">On</span>
<br><span style="font-weight: bold;">sendmail_path</span>
array1: /usr/sbin/sendmail -t -i
array2: /usr/sbin/sendmail -t -i
<br><span style="font-weight: bold;">serialize_precision</span>
array1: 100
array2: 100
<br><span style="font-weight: bold;">short_open_tag</span>
array1: On
array2: On
<br><span style="font-weight: bold;">SMTP</span>
array1: localhost
array2: localhost
<br><span style="font-weight: bold;">smtp_port</span>
array1: 25
array2: 25
<br><span style="font-weight: bold;">sql.safe_mode</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">track_errors</span>
array1: Off
array2: On
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
+ <span style="color: blue;">On</span>
<br><span style="font-weight: bold;">upload_max_filesize</span>
array1: 2M
array2: 8M
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2M</span>
+ <span style="color: blue;">8M</span>
<br><span style="font-weight: bold;">variables_order</span>
array1: EGPCS
array2: EGPCS
<br><span style="font-weight: bold;">xmlrpc_error_number</span>
array1: 0
array2: 0
<br><span style="font-weight: bold;">xmlrpc_errors</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">y2k_compliance</span>
array1: On
array2: On
<br><span style="font-weight: bold;">zend.ze1_compatibility_mode</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">Apache Version </span>
array1: Apache/2.2.3 (Debian) DAV/2 mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch13
array2: Apache/1.3.37 (Unix) mod_layout/3.4 mod_tsunami/3.0 PHP/4.4.4 rus/PL30.22 mod_throttle/3.1.2
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Apache/2.2.3 (Debian) DAV/2 mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch13 </span>
+ <span style="color: blue;">Apache/1.3.37 (Unix) mod_layout/3.4 mod_tsunami/3.0 PHP/4.4.4 rus/PL30.22 mod_throttle/3.1.2 </span>
<br><span style="font-weight: bold;">Apache API Version </span>
array1: 20051115
array2: 19990320
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">20051115 </span>
+ <span style="color: blue;">19990320 </span>
<br><span style="font-weight: bold;">Server Administrator </span>
array1: [email protected]
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">[email protected] </span>
<br><span style="font-weight: bold;">Hostname:Port </span>
array1: slice1.owenw.com:0
array2: hosting.iptelecom.net.ua:80
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">slice1.owenw.com:0 </span>
+ <span style="color: blue;">hosting.iptelecom.net.ua:80 </span>
<br><span style="font-weight: bold;">User/Group </span>
array1: www-data(33)/33
array2: nobody(65534)/65533
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">www-data(33)/33 </span>
+ <span style="color: blue;">nobody(65534)/65533 </span>
<br><span style="font-weight: bold;">Max Requests </span>
array1: Per Child: 0 - Keep Alive: on - Max Per Connection: 100
array2: Per Child: 20 - Keep Alive: on - Max Per Connection: 100
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Per Child: 0 - Keep Alive: on - Max Per Connection: 100 </span>
+ <span style="color: blue;">Per Child: 20 - Keep Alive: on - Max Per Connection: 100 </span>
<br><span style="font-weight: bold;">Timeouts </span>
array1: Connection: 300 - Keep-Alive: 15
array2: Connection: 10 - Keep-Alive: 0
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Connection: 300 - Keep-Alive: 15 </span>
+ <span style="color: blue;">Connection: 10 - Keep-Alive: 0 </span>
<br><span style="font-weight: bold;">Virtual Server </span>
array1: Yes
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Yes </span>
<br><span style="font-weight: bold;">Server Root </span>
array1: /etc/apache2
array2: /usr/local/
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/etc/apache2 </span>
+ <span style="color: blue;">/usr/local/ </span>
<br><span style="font-weight: bold;">Loaded Modules </span>
array1: core mod_log_config mod_logio prefork http_core mod_so mod_alias mod_auth_basic mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dav mod_dav_fs mod_deflate mod_dir mod_env mod_evasive20 mod_expires mod_mime mod_python mod_negotiation mod_php5 mod_rewrite mod_setenvif mod_status mod_vhost_alias
array2: mod_layout, mod_limitipconn, mod_evasive, mod_tsunami, mod_php4, mod_setenvif, mod_so, mod_unique_id, mod_usertrack, mod_headers, mod_expires, mod_cern_meta, mod_proxy, mod_digest, mod_auth_db, mod_auth_anon, mod_auth, mod_access, mod_rewrite, mod_alias, mod_userdir, mod_speling, mod_actions, mod_imap, mod_asis, mod_cgi, mod_dir, mod_autoindex, mod_include, mod_info, mod_status, mod_negotiation, mod_mime, mod_mime_magic, mod_log_config, mod_env, mod_vhost_alias, mod_mmap_static, mod_charset, mod_throttle, mod_bandwidth, http_core
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">core mod_log_config mod_logio prefork http_core mod_so mod_alias mod_auth_basic mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dav mod_dav_fs mod_deflate mod_dir mod_env mod_evasive20 mod_expires mod_mime mod_python mod_negotiation mod_php5 mod_rewrite mod_setenvif mod_status mod_vhost_alias </span>
+ <span style="color: blue;">mod_layout, mod_limitipconn, mod_evasive, mod_tsunami, mod_php4, mod_setenvif, mod_so, mod_unique_id, mod_usertrack, mod_headers, mod_expires, mod_cern_meta, mod_proxy, mod_digest, mod_auth_db, mod_auth_anon, mod_auth, mod_access, mod_rewrite, mod_alias, mod_userdir, mod_speling, mod_actions, mod_imap, mod_asis, mod_cgi, mod_dir, mod_autoindex, mod_include, mod_info, mod_status, mod_negotiation, mod_mime, mod_mime_magic, mod_log_config, mod_env, mod_vhost_alias, mod_mmap_static, mod_charset, mod_throttle, mod_bandwidth, http_core </span>
<br><span style="font-weight: bold;">engine</span>
array1: 1
array2: 1
<br><span style="font-weight: bold;">last_modified</span>
array1: 0
array2: 0
<br><span style="font-weight: bold;">xbithack</span>
array1: 0
array2: 0
<br><span style="font-weight: bold;">HTTP_HOST </span>
array1: test.asymptomatic.net
array2: hosting.iptcom.net
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">test.asymptomatic.net </span>
+ <span style="color: blue;">hosting.iptcom.net </span>
<br><span style="font-weight: bold;">HTTP_ACCEPT </span>
array1: */*
array2: */*
<br><span style="font-weight: bold;">PATH </span>
array1: /usr/local/bin:/usr/bin:/bin
array2: /etc:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/usr/local/bin:/usr/bin:/bin </span>
+ <span style="color: blue;">/etc:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin </span>
<br><span style="font-weight: bold;">SERVER_SOFTWARE </span>
array1: Apache/2.2.3 (Debian) DAV/2 mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch13
array2: Apache/1.3.37 (Unix) mod_layout/3.4 mod_tsunami/3.0 PHP/4.4.4 rus/PL30.22 mod_throttle/3.1.2
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Apache/2.2.3 (Debian) DAV/2 mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch13 </span>
+ <span style="color: blue;">Apache/1.3.37 (Unix) mod_layout/3.4 mod_tsunami/3.0 PHP/4.4.4 rus/PL30.22 mod_throttle/3.1.2 </span>
<br><span style="font-weight: bold;">SERVER_NAME </span>
array1: test.asymptomatic.net
array2: hosting.iptelecom.net.ua
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">test.asymptomatic.net </span>
+ <span style="color: blue;">hosting.iptelecom.net.ua </span>
<br><span style="font-weight: bold;">SERVER_ADDR </span>
array1: 208.78.101.141
array2: 212.9.240.241
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">208.78.101.141 </span>
+ <span style="color: blue;">212.9.240.241 </span>
<br><span style="font-weight: bold;">SERVER_PORT </span>
array1: 80
array2: 80
<br><span style="font-weight: bold;">REMOTE_ADDR </span>
array1: 174.92.34.239
array2: 174.92.34.239
<br><span style="font-weight: bold;">DOCUMENT_ROOT </span>
array1: /htdocs
array2: /usr/local/www/hosting/
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/htdocs </span>
+ <span style="color: blue;">/usr/local/www/hosting/ </span>
<br><span style="font-weight: bold;">SERVER_ADMIN </span>
array1: [email protected]
array2: [email protected]
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">[email protected] </span>
+ <span style="color: blue;">[email protected] </span>
<br><span style="font-weight: bold;">SCRIPT_FILENAME </span>
array1: /var/domains/test.asymptomatic.net/www/phpinfo.php
array2: /usr/local/www/hosting/phpinfo.php
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/var/domains/test.asymptomatic.net/www/phpinfo.php </span>
+ <span style="color: blue;">/usr/local/www/hosting/phpinfo.php </span>
<br><span style="font-weight: bold;">REMOTE_PORT </span>
array1: 58903
array2: 44661
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">58903 </span>
+ <span style="color: blue;">44661 </span>
<br><span style="font-weight: bold;">GATEWAY_INTERFACE </span>
array1: CGI/1.1
array2: CGI/1.1
<br><span style="font-weight: bold;">SERVER_PROTOCOL </span>
array1: HTTP/1.1
array2: HTTP/1.1
<br><span style="font-weight: bold;">REQUEST_METHOD </span>
array1: GET
array2: GET
<br><span style="font-weight: bold;">QUERY_STRING </span>
array1: <i>no value</i>
array2: <i>no value</i>
<br><span style="font-weight: bold;">REQUEST_URI </span>
array1: /phpinfo.php
array2: /phpinfo.php
<br><span style="font-weight: bold;">SCRIPT_NAME </span>
array1: /phpinfo.php
array2: /phpinfo.php
<br><span style="font-weight: bold;">HTTP Request </span>
array1: GET /phpinfo.php HTTP/1.1
array2: GET /phpinfo.php HTTP/1.1
<br><span style="font-weight: bold;">Host </span>
array1: test.asymptomatic.net
array2: hosting.iptcom.net
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">test.asymptomatic.net </span>
+ <span style="color: blue;">hosting.iptcom.net </span>
<br><span style="font-weight: bold;">Accept </span>
array1: */*
array2: */*
<br><span style="font-weight: bold;">X-Powered-By </span>
array1: PHP/5.2.0-8+etch13
array2: PHP/4.4.4
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">PHP/5.2.0-8+etch13 </span>
+ <span style="color: blue;">PHP/4.4.4 </span>
<br><span style="font-weight: bold;">Vary </span>
array1: Accept-Encoding
array2: accept-charset, user-agent
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Accept-Encoding </span>
+ <span style="color: blue;">accept-charset, user-agent </span>
<br><span style="font-weight: bold;">Transfer-Encoding </span>
array1: chunked
array2: chunked
<br><span style="font-weight: bold;">Content-Type </span>
array1: text/html; charset=UTF-8
array2: text/html; charset=windows-1251
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">text/html; charset=UTF-8 </span>
+ <span style="color: blue;">text/html; charset=windows-1251 </span>
<br><span style="font-weight: bold;">APC Support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">Version </span>
array1: $Id: php_reflection.c,v 1.164.2.33.2.31 2006/10/18 16:35:15 johannes Exp $
array2: 0.2a
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">$Id: php_reflection.c,v 1.164.2.33.2.31 2006/10/18 16:35:15 johannes Exp $ </span>
+ <span style="color: blue;">0.2a </span>
<br><span style="font-weight: bold;">MMAP Support </span>
array1: Enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Enabled </span>
<br><span style="font-weight: bold;">MMAP File Mask </span>
array1: <i>no value</i>
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;"><i>no value</i> </span>
<br><span style="font-weight: bold;">Locking type </span>
array1: pthread mutex Locks
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">pthread mutex Locks </span>
<br><span style="font-weight: bold;">Revision </span>
array1: $Revision: 1.20.2.3.2.1 $
array2: $Revision: 1.4.2.5.2.3 $
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">$Revision: 1.20.2.3.2.1 $ </span>
+ <span style="color: blue;">$Revision: 1.4.2.5.2.3 $ </span>
<br><span style="font-weight: bold;">apc.cache_by_default</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">apc.coredump_unmap</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">apc.enable_cli</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">apc.enabled</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">apc.file_update_protection</span>
array1: 2
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2</span>
<br><span style="font-weight: bold;">apc.gc_ttl</span>
array1: 3600
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">3600</span>
<br><span style="font-weight: bold;">apc.include_once_override</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">apc.localcache</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">apc.localcache.size</span>
array1: 512
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">512</span>
<br><span style="font-weight: bold;">apc.max_file_size</span>
array1: 1M
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">1M</span>
<br><span style="font-weight: bold;">apc.num_files_hint</span>
array1: 1000
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">1000</span>
<br><span style="font-weight: bold;">apc.report_autofilter</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">apc.rfc1867</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">apc.rfc1867_freq</span>
array1: 0
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">0</span>
<br><span style="font-weight: bold;">apc.rfc1867_name</span>
array1: APC_UPLOAD_PROGRESS
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">APC_UPLOAD_PROGRESS</span>
<br><span style="font-weight: bold;">apc.rfc1867_prefix</span>
array1: upload_
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">upload_</span>
<br><span style="font-weight: bold;">apc.shm_segments</span>
array1: 1
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">1</span>
<br><span style="font-weight: bold;">apc.shm_size</span>
array1: 30
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">30</span>
<br><span style="font-weight: bold;">apc.slam_defense</span>
array1: 0
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">0</span>
<br><span style="font-weight: bold;">apc.stat</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">apc.stat_ctime</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">apc.ttl</span>
array1: 0
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">0</span>
<br><span style="font-weight: bold;">apc.user_entries_hint</span>
array1: 4096
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">4096</span>
<br><span style="font-weight: bold;">apc.user_ttl</span>
array1: 0
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">0</span>
<br><span style="font-weight: bold;">apc.write_lock</span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On</span>
<br><span style="font-weight: bold;">BCMath support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">BZip2 Support </span>
array1: Enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Enabled </span>
<br><span style="font-weight: bold;">Stream Wrapper support </span>
array1: compress.zlib://
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">compress.zlib:// </span>
<br><span style="font-weight: bold;">Stream Filter support </span>
array1: zlib.inflate, zlib.deflate
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">zlib.inflate, zlib.deflate </span>
<br><span style="font-weight: bold;">BZip2 Version </span>
array1: 1.0.3, 15-Feb-2005
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">1.0.3, 15-Feb-2005 </span>
<br><span style="font-weight: bold;">Calendar support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">ctype functions </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">cURL support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">cURL Information </span>
array1: libcurl/7.15.5 OpenSSL/0.9.8c zlib/1.2.3 libidn/0.6.5
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">libcurl/7.15.5 OpenSSL/0.9.8c zlib/1.2.3 libidn/0.6.5 </span>
<br><span style="font-weight: bold;">date/time support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">Timezone Database Version </span>
array1: 2006.14
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2006.14 </span>
<br><span style="font-weight: bold;">Timezone Database </span>
array1: internal
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">internal </span>
<br><span style="font-weight: bold;">Default timezone </span>
array1: America/New_York
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">America/New_York </span>
<br><span style="font-weight: bold;">date.default_latitude</span>
array1: 31.7667
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">31.7667</span>
<br><span style="font-weight: bold;">date.default_longitude</span>
array1: 35.2333
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">35.2333</span>
<br><span style="font-weight: bold;">date.sunrise_zenith</span>
array1: 90.583333
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">90.583333</span>
<br><span style="font-weight: bold;">date.sunset_zenith</span>
array1: 90.583333
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">90.583333</span>
<br><span style="font-weight: bold;">DBA support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">Supported handlers </span>
array1: db4
array2: cdb cdb_make inifile flatfile
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">db4 </span>
+ <span style="color: blue;">cdb cdb_make inifile flatfile </span>
<br><span style="font-weight: bold;">DOM/XML </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">DOM/XML API Version </span>
array1: 20031129
array2: 20020815
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">20031129 </span>
+ <span style="color: blue;">20020815 </span>
<br><span style="font-weight: bold;">libxml Version </span>
array1: 2.6.27
array2: 20507
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2.6.27 </span>
+ <span style="color: blue;">20507 </span>
<br><span style="font-weight: bold;">HTML Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">XPath Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">XPointer Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">Schema Support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">RelaxNG Support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">EXIF Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">EXIF Version </span>
array1: 1.4 $Id: exif.c,v 1.173.2.5.2.4 2006/10/10 22:22:43 tony2001 Exp $
array2: 1.4 $Id: exif.c,v 1.118.2.37.2.4 2006/01/01 13:46:52 sniper Exp $
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">1.4 $Id: exif.c,v 1.173.2.5.2.4 2006/10/10 22:22:43 tony2001 Exp $ </span>
+ <span style="color: blue;">1.4 $Id: exif.c,v 1.118.2.37.2.4 2006/01/01 13:46:52 sniper Exp $ </span>
<br><span style="font-weight: bold;">Supported EXIF Version </span>
array1: 0220
array2: 0220
<br><span style="font-weight: bold;">Supported filetypes </span>
array1: JPEG,TIFF
array2: JPEG,TIFF
<br><span style="font-weight: bold;">filter.default</span>
array1: unsafe_raw
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">unsafe_raw</span>
<br><span style="font-weight: bold;">FTP support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">GD Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">GD Version </span>
array1: 2.0 or higher
array2: bundled (2.0.28 compatible)
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2.0 or higher </span>
+ <span style="color: blue;">bundled (2.0.28 compatible) </span>
<br><span style="font-weight: bold;">FreeType Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">FreeType Linkage </span>
array1: with freetype
array2: with freetype
<br><span style="font-weight: bold;">FreeType Version </span>
array1: 2.2.1
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2.2.1 </span>
<br><span style="font-weight: bold;">T1Lib Support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">GIF Read Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">GIF Create Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">JPG Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">PNG Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">WBMP Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">GetText Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">hash support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">Hashing Engines </span>
array1: md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 </span>
<br><span style="font-weight: bold;">iconv support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">iconv implementation </span>
array1: glibc
array2: unknown
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">glibc </span>
+ <span style="color: blue;">unknown </span>
<br><span style="font-weight: bold;">iconv library version </span>
array1: 2.3.6
array2: unknown
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2.3.6 </span>
+ <span style="color: blue;">unknown </span>
<br><span style="font-weight: bold;">iconv.input_encoding</span>
array1: ISO-8859-1
array2: ISO-8859-1
<br><span style="font-weight: bold;">iconv.internal_encoding</span>
array1: ISO-8859-1
array2: ISO-8859-1
<br><span style="font-weight: bold;">iconv.output_encoding</span>
array1: ISO-8859-1
array2: ISO-8859-1
<br><span style="font-weight: bold;">json support </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">json version </span>
array1: 1.2.1
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">1.2.1 </span>
<br><span style="font-weight: bold;">libXML support </span>
array1: active
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">active </span>
<br><span style="font-weight: bold;">libXML Version </span>
array1: 2.6.27
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">2.6.27 </span>
<br><span style="font-weight: bold;">libXML streams </span>
array1: enabled
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">enabled </span>
<br><span style="font-weight: bold;">Multibyte Support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">Multibyte string engine </span>
array1: libmbfl
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">libmbfl </span>
<br><span style="font-weight: bold;">Multibyte (japanese) regex support </span>
array1: enabled
array2: enabled
<br><span style="font-weight: bold;">Multibyte regex (oniguruma) version </span>
array1: 4.4.4
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">4.4.4 </span>
<br><span style="font-weight: bold;">Multibyte regex (oniguruma) backtrack check </span>
array1: On
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">On </span>
<br><span style="font-weight: bold;">mbstring.encoding_translation</span>
array1: Off
array2: Off
<br><span style="font-weight: bold;">mbstring.func_overload</span>
array1: 0
array2: 0
<br><span style="font-weight: bold;">mbstring.http_input</span>
array1: pass
array2: pass
<br><span style="font-weight: bold;">mbstring.http_output</span>
array1: pass
array2: pass
<br><span style="font-weight: bold;">mbstring.language</span>
array1: neutral
array2: neutral
<br><span style="font-weight: bold;">mbstring.strict_detection</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">Api No </span>
array1: 20021217
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">20021217 </span>
<br><span style="font-weight: bold;">Supported ciphers </span>
array1: cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
array2: cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
<br><span style="font-weight: bold;">Supported modes </span>
array1: cbc cfb ctr ecb ncfb nofb ofb stream
array2: cbc cfb ctr ecb ncfb nofb ofb stream
<br><span style="font-weight: bold;">Active persistent connections </span>
array1: 0
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">0 </span>
<br><span style="font-weight: bold;">mime_magic.debug</span>
array1: Off
array2:
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">Off</span>
<br><span style="font-weight: bold;">mime_magic.magicfile</span>
array1: /usr/share/file/magic.mime
array2: /usr/share/misc/magic.mime
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/usr/share/file/magic.mime</span>
+ <span style="color: blue;">/usr/share/misc/magic.mime</span>
<br><span style="font-weight: bold;">Active Persistent Links </span>
array1: 0
array2: 0
<br><span style="font-weight: bold;">Active Links </span>
array1: 0
array2: 0
<br><span style="font-weight: bold;">Client API version </span>
array1: 5.0.32
array2: 4.1.22
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">5.0.32 </span>
+ <span style="color: blue;">4.1.22 </span>
<br><span style="font-weight: bold;">MYSQL_MODULE_TYPE </span>
array1: external
array2: external
<br><span style="font-weight: bold;">MYSQL_SOCKET </span>
array1: /var/run/mysqld/mysqld.sock
array2: /tmp/mysql.sock
<span style="text-decoration: underline;">diff</span>
- <span style="color: red;">/var/run/mysqld/mysqld.sock </span>
+ <span style="color: blue;">/tmp/mysql.sock </span>
<br><span style="font-weight: bold;">MYSQL_INCLUDE </span>
array1: -I/usr/include/mysql