-
Notifications
You must be signed in to change notification settings - Fork 4
/
_redirects
1679 lines (1679 loc) · 171 KB
/
_redirects
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
/category/* https://github.com/PufferPanel/PufferPanel/discussions
/topic/1/welcome-to-the-pufferpanel-community-forums https://github.com/PufferPanel/legacy-forum/discussions/33
/topic/1/welcome-to-the-pufferpanel-community-forums/* https://github.com/PufferPanel/legacy-forum/discussions/33
/topic/2/just-a-test-topic https://github.com/PufferPanel/legacy-forum/discussions/34
/topic/2/just-a-test-topic/* https://github.com/PufferPanel/legacy-forum/discussions/34
/topic/3/formatting-not-working-correctly https://github.com/PufferPanel/legacy-forum/discussions/35
/topic/3/formatting-not-working-correctly/* https://github.com/PufferPanel/legacy-forum/discussions/35
/topic/4/server-can-t-be-accessed-externally-when-through-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/36
/topic/4/server-can-t-be-accessed-externally-when-through-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/36
/topic/5/auto-deployment-support https://github.com/PufferPanel/legacy-forum/discussions/37
/topic/5/auto-deployment-support/* https://github.com/PufferPanel/legacy-forum/discussions/37
/topic/6/block-direct-connection-to-game-servers https://github.com/PufferPanel/legacy-forum/discussions/38
/topic/6/block-direct-connection-to-game-servers/* https://github.com/PufferPanel/legacy-forum/discussions/38
/topic/7/in-need-of-help-with-scales https://github.com/PufferPanel/legacy-forum/discussions/42
/topic/7/in-need-of-help-with-scales/* https://github.com/PufferPanel/legacy-forum/discussions/42
/topic/8/glad-it-s-back https://github.com/PufferPanel/legacy-forum/discussions/40
/topic/8/glad-it-s-back/* https://github.com/PufferPanel/legacy-forum/discussions/40
/topic/9/total-ram https://github.com/PufferPanel/legacy-forum/discussions/41
/topic/9/total-ram/* https://github.com/PufferPanel/legacy-forum/discussions/41
/topic/10/ports-required-by-the-control-panel https://github.com/PufferPanel/legacy-forum/discussions/43
/topic/10/ports-required-by-the-control-panel/* https://github.com/PufferPanel/legacy-forum/discussions/43
/topic/11/debian-8-docker-error-permission-denied https://github.com/PufferPanel/legacy-forum/discussions/44
/topic/11/debian-8-docker-error-permission-denied/* https://github.com/PufferPanel/legacy-forum/discussions/44
/topic/12/cant-acess-the-panel https://github.com/PufferPanel/legacy-forum/discussions/45
/topic/12/cant-acess-the-panel/* https://github.com/PufferPanel/legacy-forum/discussions/45
/topic/13/kernel https://github.com/PufferPanel/legacy-forum/discussions/46
/topic/13/kernel/* https://github.com/PufferPanel/legacy-forum/discussions/46
/topic/14/portmapping-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/47
/topic/14/portmapping-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/47
/topic/15/cant-find-scales https://github.com/PufferPanel/legacy-forum/discussions/48
/topic/15/cant-find-scales/* https://github.com/PufferPanel/legacy-forum/discussions/48
/topic/16/fail-to-rebuild-docker https://github.com/PufferPanel/legacy-forum/discussions/49
/topic/16/fail-to-rebuild-docker/* https://github.com/PufferPanel/legacy-forum/discussions/49
/topic/17/error-service-temporarily-unavaliable https://github.com/PufferPanel/legacy-forum/discussions/50
/topic/17/error-service-temporarily-unavaliable/* https://github.com/PufferPanel/legacy-forum/discussions/50
/topic/18/votifier-issues https://github.com/PufferPanel/legacy-forum/discussions/52
/topic/18/votifier-issues/* https://github.com/PufferPanel/legacy-forum/discussions/52
/topic/19/does-pufferpanel-have-these-features https://github.com/PufferPanel/legacy-forum/discussions/51
/topic/19/does-pufferpanel-have-these-features/* https://github.com/PufferPanel/legacy-forum/discussions/51
/topic/20/questions https://github.com/PufferPanel/legacy-forum/discussions/53
/topic/20/questions/* https://github.com/PufferPanel/legacy-forum/discussions/53
/topic/21/whmcs-support https://github.com/PufferPanel/legacy-forum/discussions/54
/topic/21/whmcs-support/* https://github.com/PufferPanel/legacy-forum/discussions/54
/topic/22/feature-request-override-server-properties-for-minecraft-servers https://github.com/PufferPanel/legacy-forum/discussions/55
/topic/22/feature-request-override-server-properties-for-minecraft-servers/* https://github.com/PufferPanel/legacy-forum/discussions/55
/topic/23/error-service-temporarily-unavaliable https://github.com/PufferPanel/legacy-forum/discussions/56
/topic/23/error-service-temporarily-unavaliable/* https://github.com/PufferPanel/legacy-forum/discussions/56
/topic/24/can-you-make-a-doc-for-lets-encrypt https://github.com/PufferPanel/legacy-forum/discussions/57
/topic/24/can-you-make-a-doc-for-lets-encrypt/* https://github.com/PufferPanel/legacy-forum/discussions/57
/topic/25/help-making-a-mc-server https://github.com/PufferPanel/legacy-forum/discussions/58
/topic/25/help-making-a-mc-server/* https://github.com/PufferPanel/legacy-forum/discussions/58
/topic/26/403-forbidden https://github.com/PufferPanel/legacy-forum/discussions/59
/topic/26/403-forbidden/* https://github.com/PufferPanel/legacy-forum/discussions/59
/topic/27/scales-and-pufferpanel-as-docker-images https://github.com/PufferPanel/legacy-forum/discussions/60
/topic/27/scales-and-pufferpanel-as-docker-images/* https://github.com/PufferPanel/legacy-forum/discussions/60
/topic/28/can-t-login-with-supplemental-user-account https://github.com/PufferPanel/legacy-forum/discussions/61
/topic/28/can-t-login-with-supplemental-user-account/* https://github.com/PufferPanel/legacy-forum/discussions/61
/topic/30/cannot-login-to-fresh-install https://github.com/PufferPanel/legacy-forum/discussions/62
/topic/30/cannot-login-to-fresh-install/* https://github.com/PufferPanel/legacy-forum/discussions/62
/topic/31/an-unofficial-faq-tutorial https://github.com/PufferPanel/legacy-forum/discussions/63
/topic/31/an-unofficial-faq-tutorial/* https://github.com/PufferPanel/legacy-forum/discussions/63
/topic/32/issue-with-srcds-and-assignment-of-ips https://github.com/PufferPanel/legacy-forum/discussions/64
/topic/32/issue-with-srcds-and-assignment-of-ips/* https://github.com/PufferPanel/legacy-forum/discussions/64
/topic/33/how-can-i-install-an-new-bungeecord-file https://github.com/PufferPanel/legacy-forum/discussions/65
/topic/33/how-can-i-install-an-new-bungeecord-file/* https://github.com/PufferPanel/legacy-forum/discussions/65
/topic/34/is-possible-to-disable-oom-killer-in-dockers https://github.com/PufferPanel/legacy-forum/discussions/66
/topic/34/is-possible-to-disable-oom-killer-in-dockers/* https://github.com/PufferPanel/legacy-forum/discussions/66
/topic/35/keep-getting-error-when-installing-a-server https://github.com/PufferPanel/legacy-forum/discussions/67
/topic/35/keep-getting-error-when-installing-a-server/* https://github.com/PufferPanel/legacy-forum/discussions/67
/topic/36/error-when-installing-a-new-server https://github.com/PufferPanel/legacy-forum/discussions/68
/topic/36/error-when-installing-a-new-server/* https://github.com/PufferPanel/legacy-forum/discussions/68
/topic/37/lost-graphic https://github.com/PufferPanel/legacy-forum/discussions/69
/topic/37/lost-graphic/* https://github.com/PufferPanel/legacy-forum/discussions/69
/topic/38/a-couple-of-questions https://github.com/PufferPanel/legacy-forum/discussions/70
/topic/38/a-couple-of-questions/* https://github.com/PufferPanel/legacy-forum/discussions/70
/topic/39/how-do-i-install-pufferpanel-in-suse-linux-server https://github.com/PufferPanel/legacy-forum/discussions/71
/topic/39/how-do-i-install-pufferpanel-in-suse-linux-server/* https://github.com/PufferPanel/legacy-forum/discussions/71
/topic/40/problem-with-jsonconfig-php https://github.com/PufferPanel/legacy-forum/discussions/72
/topic/40/problem-with-jsonconfig-php/* https://github.com/PufferPanel/legacy-forum/discussions/72
/topic/42/pufferpanel-playerserver-bungeeecord-plugin https://github.com/PufferPanel/legacy-forum/discussions/73
/topic/42/pufferpanel-playerserver-bungeeecord-plugin/* https://github.com/PufferPanel/legacy-forum/discussions/73
/topic/43/remote-node-is-scalse-running https://github.com/PufferPanel/legacy-forum/discussions/74
/topic/43/remote-node-is-scalse-running/* https://github.com/PufferPanel/legacy-forum/discussions/74
/topic/44/error-when-starting-a-server https://github.com/PufferPanel/legacy-forum/discussions/75
/topic/44/error-when-starting-a-server/* https://github.com/PufferPanel/legacy-forum/discussions/75
/topic/45/error-with-service-temporarily-unavaliable https://github.com/PufferPanel/legacy-forum/discussions/76
/topic/45/error-with-service-temporarily-unavaliable/* https://github.com/PufferPanel/legacy-forum/discussions/76
/topic/46/using-puffer-panel-for-a-hosting-company https://github.com/PufferPanel/legacy-forum/discussions/77
/topic/46/using-puffer-panel-for-a-hosting-company/* https://github.com/PufferPanel/legacy-forum/discussions/77
/topic/47/pufferpanel-ui-displaying-in-html-after-altering-url-settings https://github.com/PufferPanel/legacy-forum/discussions/78
/topic/47/pufferpanel-ui-displaying-in-html-after-altering-url-settings/* https://github.com/PufferPanel/legacy-forum/discussions/78
/topic/48/java-is-installed-but https://github.com/PufferPanel/legacy-forum/discussions/79
/topic/48/java-is-installed-but/* https://github.com/PufferPanel/legacy-forum/discussions/79
/topic/49/server-erro-500 https://github.com/PufferPanel/legacy-forum/discussions/80
/topic/49/server-erro-500/* https://github.com/PufferPanel/legacy-forum/discussions/80
/topic/51/new-versions-of-pufferpanel-and-scales-are-almost-ready https://github.com/PufferPanel/legacy-forum/discussions/81
/topic/51/new-versions-of-pufferpanel-and-scales-are-almost-ready/* https://github.com/PufferPanel/legacy-forum/discussions/81
/topic/52/reconfigure-node-ip https://github.com/PufferPanel/legacy-forum/discussions/82
/topic/52/reconfigure-node-ip/* https://github.com/PufferPanel/legacy-forum/discussions/82
/topic/54/servers-not-running-installing https://github.com/PufferPanel/legacy-forum/discussions/83
/topic/54/servers-not-running-installing/* https://github.com/PufferPanel/legacy-forum/discussions/83
/topic/55/sftp-issues-and-file-manager-create-folder-problems https://github.com/PufferPanel/legacy-forum/discussions/84
/topic/55/sftp-issues-and-file-manager-create-folder-problems/* https://github.com/PufferPanel/legacy-forum/discussions/84
/topic/56/v0-8-5-release-candidate https://github.com/PufferPanel/legacy-forum/discussions/85
/topic/56/v0-8-5-release-candidate/* https://github.com/PufferPanel/legacy-forum/discussions/85
/topic/57/how-to-setup-spigot-server https://github.com/PufferPanel/legacy-forum/discussions/86
/topic/57/how-to-setup-spigot-server/* https://github.com/PufferPanel/legacy-forum/discussions/86
/topic/58/pufferpanel-0-8-5-sftp-issue https://github.com/PufferPanel/legacy-forum/discussions/87
/topic/58/pufferpanel-0-8-5-sftp-issue/* https://github.com/PufferPanel/legacy-forum/discussions/87
/topic/59/change-diskspace-of-server-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/88
/topic/59/change-diskspace-of-server-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/88
/topic/60/add-a-plugin-for-installation https://github.com/PufferPanel/legacy-forum/discussions/105
/topic/60/add-a-plugin-for-installation/* https://github.com/PufferPanel/legacy-forum/discussions/105
/topic/61/autoupdating-source-dedicated-servers-issue-with-garrysmod https://github.com/PufferPanel/legacy-forum/discussions/106
/topic/61/autoupdating-source-dedicated-servers-issue-with-garrysmod/* https://github.com/PufferPanel/legacy-forum/discussions/106
/topic/62/unable-to-power-on-server-due-to-a-daemon-error https://github.com/PufferPanel/legacy-forum/discussions/107
/topic/62/unable-to-power-on-server-due-to-a-daemon-error/* https://github.com/PufferPanel/legacy-forum/discussions/107
/topic/63/failed-to-bind-to-port-on-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/108
/topic/63/failed-to-bind-to-port-on-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/108
/topic/64/scales-doesn-t-seem-to-work https://github.com/PufferPanel/legacy-forum/discussions/109
/topic/64/scales-doesn-t-seem-to-work/* https://github.com/PufferPanel/legacy-forum/discussions/109
/topic/65/pufferpanel-v0-8-5-and-scales-v0-2-4-have-been-released https://github.com/PufferPanel/legacy-forum/discussions/110
/topic/65/pufferpanel-v0-8-5-and-scales-v0-2-4-have-been-released/* https://github.com/PufferPanel/legacy-forum/discussions/110
/topic/66/web-panel-not-starting-in-pufferpanel-0-8-5 https://github.com/PufferPanel/legacy-forum/discussions/111
/topic/66/web-panel-not-starting-in-pufferpanel-0-8-5/* https://github.com/PufferPanel/legacy-forum/discussions/111
/topic/67/can-t-create-server https://github.com/PufferPanel/legacy-forum/discussions/112
/topic/67/can-t-create-server/* https://github.com/PufferPanel/legacy-forum/discussions/112
/topic/68/servers-refuse-to-install-properly https://github.com/PufferPanel/legacy-forum/discussions/113
/topic/68/servers-refuse-to-install-properly/* https://github.com/PufferPanel/legacy-forum/discussions/113
/topic/69/installation https://github.com/PufferPanel/legacy-forum/discussions/114
/topic/69/installation/* https://github.com/PufferPanel/legacy-forum/discussions/114
/topic/70/error-on-mysql-when-use-docker-mode https://github.com/PufferPanel/legacy-forum/discussions/115
/topic/70/error-on-mysql-when-use-docker-mode/* https://github.com/PufferPanel/legacy-forum/discussions/115
/topic/71/hi-i-have-an-issue-with-ports-on-one-node https://github.com/PufferPanel/legacy-forum/discussions/116
/topic/71/hi-i-have-an-issue-with-ports-on-one-node/* https://github.com/PufferPanel/legacy-forum/discussions/116
/topic/72/minecraft-server-dont-have-permissions-to-write-and-read https://github.com/PufferPanel/legacy-forum/discussions/117
/topic/72/minecraft-server-dont-have-permissions-to-write-and-read/* https://github.com/PufferPanel/legacy-forum/discussions/117
/topic/73/using-lets-encrypt-but-still-get-this https://github.com/PufferPanel/legacy-forum/discussions/118
/topic/73/using-lets-encrypt-but-still-get-this/* https://github.com/PufferPanel/legacy-forum/discussions/118
/topic/74/my-server-completely-crashed-after-trying-to-fix-another-problem https://github.com/PufferPanel/legacy-forum/discussions/119
/topic/74/my-server-completely-crashed-after-trying-to-fix-another-problem/* https://github.com/PufferPanel/legacy-forum/discussions/119
/topic/75/permissions-sftp-not-working-on-0-8-5 https://github.com/PufferPanel/legacy-forum/discussions/120
/topic/75/permissions-sftp-not-working-on-0-8-5/* https://github.com/PufferPanel/legacy-forum/discussions/120
/topic/76/installation-on-raspberry-pi-2-problems https://github.com/PufferPanel/legacy-forum/discussions/121
/topic/76/installation-on-raspberry-pi-2-problems/* https://github.com/PufferPanel/legacy-forum/discussions/121
/topic/77/new-format-for-support-forum https://github.com/PufferPanel/legacy-forum/discussions/122
/topic/77/new-format-for-support-forum/* https://github.com/PufferPanel/legacy-forum/discussions/122
/topic/78/work-on-pufferpanel-v1-0-0-has-begun https://github.com/PufferPanel/legacy-forum/discussions/123
/topic/78/work-on-pufferpanel-v1-0-0-has-begun/* https://github.com/PufferPanel/legacy-forum/discussions/123
/topic/79/restart-all-servers-at-once https://github.com/PufferPanel/legacy-forum/discussions/124
/topic/79/restart-all-servers-at-once/* https://github.com/PufferPanel/legacy-forum/discussions/124
/topic/80/installing-pufferpanel-with-vestacp https://github.com/PufferPanel/legacy-forum/discussions/145
/topic/80/installing-pufferpanel-with-vestacp/* https://github.com/PufferPanel/legacy-forum/discussions/145
/topic/81/pufferpanel-on-apache https://github.com/PufferPanel/legacy-forum/discussions/146
/topic/81/pufferpanel-on-apache/* https://github.com/PufferPanel/legacy-forum/discussions/146
/topic/82/cannot-add-server-a-required-plugin-variable-was-left-blank-when-completing-this-server-setup https://github.com/PufferPanel/legacy-forum/discussions/147
/topic/82/cannot-add-server-a-required-plugin-variable-was-left-blank-when-completing-this-server-setup/* https://github.com/PufferPanel/legacy-forum/discussions/147
/topic/84/error-when-installing-scales-on-ubuntu-15-10 https://github.com/PufferPanel/legacy-forum/discussions/148
/topic/84/error-when-installing-scales-on-ubuntu-15-10/* https://github.com/PufferPanel/legacy-forum/discussions/148
/topic/86/scrds-server-not-fully-loading https://github.com/PufferPanel/legacy-forum/discussions/149
/topic/86/scrds-server-not-fully-loading/* https://github.com/PufferPanel/legacy-forum/discussions/149
/topic/87/how-to-use-on-an-existing-web-server https://github.com/PufferPanel/legacy-forum/discussions/150
/topic/87/how-to-use-on-an-existing-web-server/* https://github.com/PufferPanel/legacy-forum/discussions/150
/topic/88/dev-fd-63-line-1-syntax-error-near https://github.com/PufferPanel/legacy-forum/discussions/151
/topic/88/dev-fd-63-line-1-syntax-error-near/* https://github.com/PufferPanel/legacy-forum/discussions/151
/topic/91/can-t-install-a-new-server-ssl-problem https://github.com/PufferPanel/legacy-forum/discussions/152
/topic/91/can-t-install-a-new-server-ssl-problem/* https://github.com/PufferPanel/legacy-forum/discussions/152
/topic/92/trouble-upgrading-pufferpanel-to-0-8-5 https://github.com/PufferPanel/legacy-forum/discussions/153
/topic/92/trouble-upgrading-pufferpanel-to-0-8-5/* https://github.com/PufferPanel/legacy-forum/discussions/153
/topic/93/random-stop-without-crash-reports https://github.com/PufferPanel/legacy-forum/discussions/154
/topic/93/random-stop-without-crash-reports/* https://github.com/PufferPanel/legacy-forum/discussions/154
/topic/94/i-get-this-when-trying-to-get-to-scales https://github.com/PufferPanel/legacy-forum/discussions/155
/topic/94/i-get-this-when-trying-to-get-to-scales/* https://github.com/PufferPanel/legacy-forum/discussions/155
/topic/96/file-location https://github.com/PufferPanel/legacy-forum/discussions/156
/topic/96/file-location/* https://github.com/PufferPanel/legacy-forum/discussions/156
/topic/98/scrds-server-is-not-starting-after-install https://github.com/PufferPanel/legacy-forum/discussions/157
/topic/98/scrds-server-is-not-starting-after-install/* https://github.com/PufferPanel/legacy-forum/discussions/157
/topic/100/pufferpanel-phpmyadmin-can-t-figure-out-how-to-run-both-on-nginx-centos-7 https://github.com/PufferPanel/legacy-forum/discussions/158
/topic/100/pufferpanel-phpmyadmin-can-t-figure-out-how-to-run-both-on-nginx-centos-7/* https://github.com/PufferPanel/legacy-forum/discussions/158
/topic/101/error-404 https://github.com/PufferPanel/legacy-forum/discussions/159
/topic/101/error-404/* https://github.com/PufferPanel/legacy-forum/discussions/159
/topic/102/500-server-error https://github.com/PufferPanel/legacy-forum/discussions/160
/topic/102/500-server-error/* https://github.com/PufferPanel/legacy-forum/discussions/160
/topic/103/scrds-again https://github.com/PufferPanel/legacy-forum/discussions/161
/topic/103/scrds-again/* https://github.com/PufferPanel/legacy-forum/discussions/161
/topic/104/what-ip-to-put-in-the-panel-adress https://github.com/PufferPanel/legacy-forum/discussions/162
/topic/104/what-ip-to-put-in-the-panel-adress/* https://github.com/PufferPanel/legacy-forum/discussions/162
/topic/105/scales-list-all-servers https://github.com/PufferPanel/legacy-forum/discussions/163
/topic/105/scales-list-all-servers/* https://github.com/PufferPanel/legacy-forum/discussions/163
/topic/106/enable-captcha-login https://github.com/PufferPanel/legacy-forum/discussions/164
/topic/106/enable-captcha-login/* https://github.com/PufferPanel/legacy-forum/discussions/164
/topic/107/minecraft-plugins-don-t-create-configs https://github.com/PufferPanel/legacy-forum/discussions/165
/topic/107/minecraft-plugins-don-t-create-configs/* https://github.com/PufferPanel/legacy-forum/discussions/165
/topic/108/password-reset-script-location https://github.com/PufferPanel/legacy-forum/discussions/166
/topic/108/password-reset-script-location/* https://github.com/PufferPanel/legacy-forum/discussions/166
/topic/109/certified-curl https://github.com/PufferPanel/legacy-forum/discussions/167
/topic/109/certified-curl/* https://github.com/PufferPanel/legacy-forum/discussions/167
/topic/110/send-console-commands-using-curl https://github.com/PufferPanel/legacy-forum/discussions/168
/topic/110/send-console-commands-using-curl/* https://github.com/PufferPanel/legacy-forum/discussions/168
/topic/111/ports https://github.com/PufferPanel/legacy-forum/discussions/169
/topic/111/ports/* https://github.com/PufferPanel/legacy-forum/discussions/169
/topic/112/things-that-should-be-added-in-0-9-x-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/170
/topic/112/things-that-should-be-added-in-0-9-x-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/170
/topic/113/port-mapping-not-working https://github.com/PufferPanel/legacy-forum/discussions/171
/topic/113/port-mapping-not-working/* https://github.com/PufferPanel/legacy-forum/discussions/171
/topic/114/sponge-compatibility https://github.com/PufferPanel/legacy-forum/discussions/172
/topic/114/sponge-compatibility/* https://github.com/PufferPanel/legacy-forum/discussions/172
/topic/116/pufferpanel-v0-8-6-and-scales-v0-2-8-have-been-released https://github.com/PufferPanel/legacy-forum/discussions/173
/topic/116/pufferpanel-v0-8-6-and-scales-v0-2-8-have-been-released/* https://github.com/PufferPanel/legacy-forum/discussions/173
/topic/118/pufferpanel-upgrade-from-0-8-5-to-0-8-6 https://github.com/PufferPanel/legacy-forum/discussions/174
/topic/118/pufferpanel-upgrade-from-0-8-5-to-0-8-6/* https://github.com/PufferPanel/legacy-forum/discussions/174
/topic/119/adding-existing-servers https://github.com/PufferPanel/legacy-forum/discussions/175
/topic/119/adding-existing-servers/* https://github.com/PufferPanel/legacy-forum/discussions/175
/topic/120/docker https://github.com/PufferPanel/legacy-forum/discussions/176
/topic/120/docker/* https://github.com/PufferPanel/legacy-forum/discussions/176
/topic/121/adding-spigot-bukkitcraft https://github.com/PufferPanel/legacy-forum/discussions/177
/topic/121/adding-spigot-bukkitcraft/* https://github.com/PufferPanel/legacy-forum/discussions/177
/topic/122/docker-template-needed https://github.com/PufferPanel/legacy-forum/discussions/178
/topic/122/docker-template-needed/* https://github.com/PufferPanel/legacy-forum/discussions/178
/topic/123/crashes-when-trying-to-change-map https://github.com/PufferPanel/legacy-forum/discussions/179
/topic/123/crashes-when-trying-to-change-map/* https://github.com/PufferPanel/legacy-forum/discussions/179
/topic/124/what-is-the-backup-folder-for https://github.com/PufferPanel/legacy-forum/discussions/180
/topic/124/what-is-the-backup-folder-for/* https://github.com/PufferPanel/legacy-forum/discussions/180
/topic/125/unable-to-connect-to-daemon-to-process-this-request-file-manager https://github.com/PufferPanel/legacy-forum/discussions/181
/topic/125/unable-to-connect-to-daemon-to-process-this-request-file-manager/* https://github.com/PufferPanel/legacy-forum/discussions/181
/topic/126/addition-of-game-specific-plugins https://github.com/PufferPanel/legacy-forum/discussions/182
/topic/126/addition-of-game-specific-plugins/* https://github.com/PufferPanel/legacy-forum/discussions/182
/topic/127/server-autorestart https://github.com/PufferPanel/legacy-forum/discussions/183
/topic/127/server-autorestart/* https://github.com/PufferPanel/legacy-forum/discussions/183
/topic/128/pufferpanel-api https://github.com/PufferPanel/legacy-forum/discussions/184
/topic/128/pufferpanel-api/* https://github.com/PufferPanel/legacy-forum/discussions/184
/topic/130/custom-startup https://github.com/PufferPanel/legacy-forum/discussions/185
/topic/130/custom-startup/* https://github.com/PufferPanel/legacy-forum/discussions/185
/topic/131/web-panel https://github.com/PufferPanel/legacy-forum/discussions/186
/topic/131/web-panel/* https://github.com/PufferPanel/legacy-forum/discussions/186
/topic/132/more-features-bugs-that-should-be-added-fixed https://github.com/PufferPanel/legacy-forum/discussions/187
/topic/132/more-features-bugs-that-should-be-added-fixed/* https://github.com/PufferPanel/legacy-forum/discussions/187
/topic/133/what-pufferpanel-looks-like-trough-cloudflare https://github.com/PufferPanel/legacy-forum/discussions/188
/topic/133/what-pufferpanel-looks-like-trough-cloudflare/* https://github.com/PufferPanel/legacy-forum/discussions/188
/topic/134/disable-two-factor-authentication-w-o-logging-in https://github.com/PufferPanel/legacy-forum/discussions/189
/topic/134/disable-two-factor-authentication-w-o-logging-in/* https://github.com/PufferPanel/legacy-forum/discussions/189
/topic/135/ssl-problem https://github.com/PufferPanel/legacy-forum/discussions/190
/topic/135/ssl-problem/* https://github.com/PufferPanel/legacy-forum/discussions/190
/topic/136/how-do-i-effectively-remove-pufferpanel-completely https://github.com/PufferPanel/legacy-forum/discussions/191
/topic/136/how-do-i-effectively-remove-pufferpanel-completely/* https://github.com/PufferPanel/legacy-forum/discussions/191
/topic/137/how-to-help https://github.com/PufferPanel/legacy-forum/discussions/192
/topic/137/how-to-help/* https://github.com/PufferPanel/legacy-forum/discussions/192
/topic/138/changing-fqdn-or-changing-scales-port https://github.com/PufferPanel/legacy-forum/discussions/193
/topic/138/changing-fqdn-or-changing-scales-port/* https://github.com/PufferPanel/legacy-forum/discussions/193
/topic/139/request-game-mta-samp-and-modules-billing-system https://github.com/PufferPanel/legacy-forum/discussions/194
/topic/139/request-game-mta-samp-and-modules-billing-system/* https://github.com/PufferPanel/legacy-forum/discussions/194
/topic/140/socket-io-error https://github.com/PufferPanel/legacy-forum/discussions/195
/topic/140/socket-io-error/* https://github.com/PufferPanel/legacy-forum/discussions/195
/topic/141/an-error-occured-while-trying-to-connect-to-the-remote-node-please-check-that-scales-is-running-and-try-again https://github.com/PufferPanel/legacy-forum/discussions/196
/topic/141/an-error-occured-while-trying-to-connect-to-the-remote-node-please-check-that-scales-is-running-and-try-again/* https://github.com/PufferPanel/legacy-forum/discussions/196
/topic/142/autoupdate-csgo-srcds https://github.com/PufferPanel/legacy-forum/discussions/197
/topic/142/autoupdate-csgo-srcds/* https://github.com/PufferPanel/legacy-forum/discussions/197
/topic/143/trying-to-install-on-debian-8 https://github.com/PufferPanel/legacy-forum/discussions/198
/topic/143/trying-to-install-on-debian-8/* https://github.com/PufferPanel/legacy-forum/discussions/198
/topic/144/unable-to-change-hosts-url-in-sftp-mangement https://github.com/PufferPanel/legacy-forum/discussions/199
/topic/144/unable-to-change-hosts-url-in-sftp-mangement/* https://github.com/PufferPanel/legacy-forum/discussions/199
/topic/145/why-not-to-add-smtp https://github.com/PufferPanel/legacy-forum/discussions/200
/topic/145/why-not-to-add-smtp/* https://github.com/PufferPanel/legacy-forum/discussions/200
/topic/146/socket-io-ssl-problem https://github.com/PufferPanel/legacy-forum/discussions/201
/topic/146/socket-io-ssl-problem/* https://github.com/PufferPanel/legacy-forum/discussions/201
/topic/147/russian-language-transifex https://github.com/PufferPanel/legacy-forum/discussions/202
/topic/147/russian-language-transifex/* https://github.com/PufferPanel/legacy-forum/discussions/202
/topic/148/change-panel-port https://github.com/PufferPanel/legacy-forum/discussions/203
/topic/148/change-panel-port/* https://github.com/PufferPanel/legacy-forum/discussions/203
/topic/149/installing-scales-an-error-occured-while-installing-halting https://github.com/PufferPanel/legacy-forum/discussions/205
/topic/149/installing-scales-an-error-occured-while-installing-halting/* https://github.com/PufferPanel/legacy-forum/discussions/205
/topic/150/debian-was-stopped https://github.com/PufferPanel/legacy-forum/discussions/206
/topic/150/debian-was-stopped/* https://github.com/PufferPanel/legacy-forum/discussions/206
/topic/151/email-not-sending https://github.com/PufferPanel/legacy-forum/discussions/207
/topic/151/email-not-sending/* https://github.com/PufferPanel/legacy-forum/discussions/207
/topic/152/scales-srcds-refusing-to-bind-to-ip https://github.com/PufferPanel/legacy-forum/discussions/208
/topic/152/scales-srcds-refusing-to-bind-to-ip/* https://github.com/PufferPanel/legacy-forum/discussions/208
/topic/153/some-strange-issues-with-pufferpanel-and-scales https://github.com/PufferPanel/legacy-forum/discussions/209
/topic/153/some-strange-issues-with-pufferpanel-and-scales/* https://github.com/PufferPanel/legacy-forum/discussions/209
/topic/154/is-there-a-way-to-transfer-settings-across-a-reinstall https://github.com/PufferPanel/legacy-forum/discussions/210
/topic/154/is-there-a-way-to-transfer-settings-across-a-reinstall/* https://github.com/PufferPanel/legacy-forum/discussions/210
/topic/155/scales-v0-2-8-garry-s-mod-plugin https://github.com/PufferPanel/legacy-forum/discussions/211
/topic/155/scales-v0-2-8-garry-s-mod-plugin/* https://github.com/PufferPanel/legacy-forum/discussions/211
/topic/156/scales-better-daemon-with-pm2 https://github.com/PufferPanel/legacy-forum/discussions/212
/topic/156/scales-better-daemon-with-pm2/* https://github.com/PufferPanel/legacy-forum/discussions/212
/topic/157/stop-all-servers-in-puffelpanel https://github.com/PufferPanel/legacy-forum/discussions/213
/topic/157/stop-all-servers-in-puffelpanel/* https://github.com/PufferPanel/legacy-forum/discussions/213
/topic/158/daemon-error-occurred https://github.com/PufferPanel/legacy-forum/discussions/214
/topic/158/daemon-error-occurred/* https://github.com/PufferPanel/legacy-forum/discussions/214
/topic/159/installation-bug https://github.com/PufferPanel/legacy-forum/discussions/215
/topic/159/installation-bug/* https://github.com/PufferPanel/legacy-forum/discussions/215
/topic/161/scales-will-not-start-due-to-incorrect-npm-module-version https://github.com/PufferPanel/legacy-forum/discussions/216
/topic/161/scales-will-not-start-due-to-incorrect-npm-module-version/* https://github.com/PufferPanel/legacy-forum/discussions/216
/topic/162/incorrect-version-on-footer https://github.com/PufferPanel/legacy-forum/discussions/217
/topic/162/incorrect-version-on-footer/* https://github.com/PufferPanel/legacy-forum/discussions/217
/topic/163/minecraft-more-then-1-core https://github.com/PufferPanel/legacy-forum/discussions/218
/topic/163/minecraft-more-then-1-core/* https://github.com/PufferPanel/legacy-forum/discussions/218
/topic/165/how-to-acces-panel-after-intallation https://github.com/PufferPanel/legacy-forum/discussions/219
/topic/165/how-to-acces-panel-after-intallation/* https://github.com/PufferPanel/legacy-forum/discussions/219
/topic/166/scales-error-cannot-do-anything-with-server https://github.com/PufferPanel/legacy-forum/discussions/220
/topic/166/scales-error-cannot-do-anything-with-server/* https://github.com/PufferPanel/legacy-forum/discussions/220
/topic/167/an-error-occured-while-installing-halting https://github.com/PufferPanel/legacy-forum/discussions/221
/topic/167/an-error-occured-while-installing-halting/* https://github.com/PufferPanel/legacy-forum/discussions/221
/topic/168/stop-server-doesn-t-work https://github.com/PufferPanel/legacy-forum/discussions/222
/topic/168/stop-server-doesn-t-work/* https://github.com/PufferPanel/legacy-forum/discussions/222
/topic/169/backup-scripts-for-pufferpanel-1-0-and-mysql https://github.com/PufferPanel/legacy-forum/discussions/223
/topic/169/backup-scripts-for-pufferpanel-1-0-and-mysql/* https://github.com/PufferPanel/legacy-forum/discussions/223
/topic/170/question-about-new-features https://github.com/PufferPanel/legacy-forum/discussions/224
/topic/170/question-about-new-features/* https://github.com/PufferPanel/legacy-forum/discussions/224
/topic/172/server-not-starting https://github.com/PufferPanel/legacy-forum/discussions/225
/topic/172/server-not-starting/* https://github.com/PufferPanel/legacy-forum/discussions/225
/topic/173/is-there-any-way-to-add-a-favicon-to-the-panel https://github.com/PufferPanel/legacy-forum/discussions/226
/topic/173/is-there-any-way-to-add-a-favicon-to-the-panel/* https://github.com/PufferPanel/legacy-forum/discussions/226
/topic/174/file-permissions-don-t-work-anymore https://github.com/PufferPanel/legacy-forum/discussions/227
/topic/174/file-permissions-don-t-work-anymore/* https://github.com/PufferPanel/legacy-forum/discussions/227
/topic/175/black-esc-in-notepad https://github.com/PufferPanel/legacy-forum/discussions/228
/topic/175/black-esc-in-notepad/* https://github.com/PufferPanel/legacy-forum/discussions/228
/topic/178/php-is-not-found-within-your-path-cannot-proceed https://github.com/PufferPanel/legacy-forum/discussions/229
/topic/178/php-is-not-found-within-your-path-cannot-proceed/* https://github.com/PufferPanel/legacy-forum/discussions/229
/topic/179/server-creation-question https://github.com/PufferPanel/legacy-forum/discussions/230
/topic/179/server-creation-question/* https://github.com/PufferPanel/legacy-forum/discussions/230
/topic/180/server-listing-feature https://github.com/PufferPanel/legacy-forum/discussions/231
/topic/180/server-listing-feature/* https://github.com/PufferPanel/legacy-forum/discussions/231
/topic/181/node-install-failure https://github.com/PufferPanel/legacy-forum/discussions/232
/topic/181/node-install-failure/* https://github.com/PufferPanel/legacy-forum/discussions/232
/topic/182/panel-access https://github.com/PufferPanel/legacy-forum/discussions/233
/topic/182/panel-access/* https://github.com/PufferPanel/legacy-forum/discussions/233
/topic/183/pufferpanel-server-that-are-not-filled-the-ram-usage-it-use-also-swap-space https://github.com/PufferPanel/legacy-forum/discussions/234
/topic/183/pufferpanel-server-that-are-not-filled-the-ram-usage-it-use-also-swap-space/* https://github.com/PufferPanel/legacy-forum/discussions/234
/topic/184/scales https://github.com/PufferPanel/legacy-forum/discussions/235
/topic/184/scales/* https://github.com/PufferPanel/legacy-forum/discussions/235
/topic/185/cannot-start-servers https://github.com/PufferPanel/legacy-forum/discussions/236
/topic/185/cannot-start-servers/* https://github.com/PufferPanel/legacy-forum/discussions/236
/topic/186/server-rules https://github.com/PufferPanel/legacy-forum/discussions/237
/topic/186/server-rules/* https://github.com/PufferPanel/legacy-forum/discussions/237
/topic/187/how-to-access-the-panel-after-installation https://github.com/PufferPanel/legacy-forum/discussions/238
/topic/187/how-to-access-the-panel-after-installation/* https://github.com/PufferPanel/legacy-forum/discussions/238
/topic/188/is-ubuntu-16-04-supported https://github.com/PufferPanel/legacy-forum/discussions/239
/topic/188/is-ubuntu-16-04-supported/* https://github.com/PufferPanel/legacy-forum/discussions/239
/topic/190/nginx-configuration https://github.com/PufferPanel/legacy-forum/discussions/240
/topic/190/nginx-configuration/* https://github.com/PufferPanel/legacy-forum/discussions/240
/topic/192/trouble-installing-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/241
/topic/192/trouble-installing-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/241
/topic/193/noob-question-where-is-the-server-directory https://github.com/PufferPanel/legacy-forum/discussions/242
/topic/193/noob-question-where-is-the-server-directory/* https://github.com/PufferPanel/legacy-forum/discussions/242
/topic/194/trying-to-follow-the-digital-ocean-doc-provided-for-nginx-config https://github.com/PufferPanel/legacy-forum/discussions/243
/topic/194/trying-to-follow-the-digital-ocean-doc-provided-for-nginx-config/* https://github.com/PufferPanel/legacy-forum/discussions/243
/topic/196/pufferpanel-files-location-front-end https://github.com/PufferPanel/legacy-forum/discussions/244
/topic/196/pufferpanel-files-location-front-end/* https://github.com/PufferPanel/legacy-forum/discussions/244
/topic/197/404-not-found https://github.com/PufferPanel/legacy-forum/discussions/245
/topic/197/404-not-found/* https://github.com/PufferPanel/legacy-forum/discussions/245
/topic/198/simple-mysql-frontend https://github.com/PufferPanel/legacy-forum/discussions/246
/topic/198/simple-mysql-frontend/* https://github.com/PufferPanel/legacy-forum/discussions/246
/topic/199/where-are-the-daemon-jar-files-located https://github.com/PufferPanel/legacy-forum/discussions/247
/topic/199/where-are-the-daemon-jar-files-located/* https://github.com/PufferPanel/legacy-forum/discussions/247
/topic/200/forum-error https://github.com/PufferPanel/legacy-forum/discussions/248
/topic/200/forum-error/* https://github.com/PufferPanel/legacy-forum/discussions/248
/topic/201/pufferpanel-different-directory https://github.com/PufferPanel/legacy-forum/discussions/249
/topic/201/pufferpanel-different-directory/* https://github.com/PufferPanel/legacy-forum/discussions/249
/topic/202/assign-2-ports-to-the-one-server https://github.com/PufferPanel/legacy-forum/discussions/250
/topic/202/assign-2-ports-to-the-one-server/* https://github.com/PufferPanel/legacy-forum/discussions/250
/topic/203/show-online-players https://github.com/PufferPanel/legacy-forum/discussions/251
/topic/203/show-online-players/* https://github.com/PufferPanel/legacy-forum/discussions/251
/topic/204/scales-autostart https://github.com/PufferPanel/legacy-forum/discussions/252
/topic/204/scales-autostart/* https://github.com/PufferPanel/legacy-forum/discussions/252
/topic/205/install-panel-with-external-server-mysql https://github.com/PufferPanel/legacy-forum/discussions/253
/topic/205/install-panel-with-external-server-mysql/* https://github.com/PufferPanel/legacy-forum/discussions/253
/topic/206/server-token-and-access-token https://github.com/PufferPanel/legacy-forum/discussions/254
/topic/206/server-token-and-access-token/* https://github.com/PufferPanel/legacy-forum/discussions/254
/topic/207/csgo-installation-issue https://github.com/PufferPanel/legacy-forum/discussions/255
/topic/207/csgo-installation-issue/* https://github.com/PufferPanel/legacy-forum/discussions/255
/topic/208/server-won-t-start-not-much-in-the-log https://github.com/PufferPanel/legacy-forum/discussions/256
/topic/208/server-won-t-start-not-much-in-the-log/* https://github.com/PufferPanel/legacy-forum/discussions/256
/topic/210/use-of-cert-pem-in-scales-config-json https://github.com/PufferPanel/legacy-forum/discussions/257
/topic/210/use-of-cert-pem-in-scales-config-json/* https://github.com/PufferPanel/legacy-forum/discussions/257
/topic/211/x-access-server-token-problem https://github.com/PufferPanel/legacy-forum/discussions/259
/topic/211/x-access-server-token-problem/* https://github.com/PufferPanel/legacy-forum/discussions/259
/topic/212/scales-not-working https://github.com/PufferPanel/legacy-forum/discussions/260
/topic/212/scales-not-working/* https://github.com/PufferPanel/legacy-forum/discussions/260
/topic/213/docker-errror https://github.com/PufferPanel/legacy-forum/discussions/261
/topic/213/docker-errror/* https://github.com/PufferPanel/legacy-forum/discussions/261
/topic/214/request-fiture-backup https://github.com/PufferPanel/legacy-forum/discussions/262
/topic/214/request-fiture-backup/* https://github.com/PufferPanel/legacy-forum/discussions/262
/topic/215/java-x11-errors-in-16-04 https://github.com/PufferPanel/legacy-forum/discussions/263
/topic/215/java-x11-errors-in-16-04/* https://github.com/PufferPanel/legacy-forum/discussions/263
/topic/216/25565-port-already-bound https://github.com/PufferPanel/legacy-forum/discussions/264
/topic/216/25565-port-already-bound/* https://github.com/PufferPanel/legacy-forum/discussions/264
/topic/217/scales-are-not-auto https://github.com/PufferPanel/legacy-forum/discussions/265
/topic/217/scales-are-not-auto/* https://github.com/PufferPanel/legacy-forum/discussions/265
/topic/218/curl-error-transfer-closed https://github.com/PufferPanel/legacy-forum/discussions/266
/topic/218/curl-error-transfer-closed/* https://github.com/PufferPanel/legacy-forum/discussions/266
/topic/219/502-bad-gateway https://github.com/PufferPanel/legacy-forum/discussions/267
/topic/219/502-bad-gateway/* https://github.com/PufferPanel/legacy-forum/discussions/267
/topic/220/cannot-add-node https://github.com/PufferPanel/legacy-forum/discussions/268
/topic/220/cannot-add-node/* https://github.com/PufferPanel/legacy-forum/discussions/268
/topic/221/installing-v0-8-6 https://github.com/PufferPanel/legacy-forum/discussions/269
/topic/221/installing-v0-8-6/* https://github.com/PufferPanel/legacy-forum/discussions/269
/topic/222/pufferpanel-srv-record https://github.com/PufferPanel/legacy-forum/discussions/270
/topic/222/pufferpanel-srv-record/* https://github.com/PufferPanel/legacy-forum/discussions/270
/topic/223/request-fiture-module-whmcs https://github.com/PufferPanel/legacy-forum/discussions/271
/topic/223/request-fiture-module-whmcs/* https://github.com/PufferPanel/legacy-forum/discussions/271
/topic/225/unable-to-add-server https://github.com/PufferPanel/legacy-forum/discussions/272
/topic/225/unable-to-add-server/* https://github.com/PufferPanel/legacy-forum/discussions/272
/topic/226/error-code-405-when-using-server-directory https://github.com/PufferPanel/legacy-forum/discussions/273
/topic/226/error-code-405-when-using-server-directory/* https://github.com/PufferPanel/legacy-forum/discussions/273
/topic/227/upload-files https://github.com/PufferPanel/legacy-forum/discussions/274
/topic/227/upload-files/* https://github.com/PufferPanel/legacy-forum/discussions/274
/topic/229/help-404-after-install https://github.com/PufferPanel/legacy-forum/discussions/275
/topic/229/help-404-after-install/* https://github.com/PufferPanel/legacy-forum/discussions/275
/topic/230/resource-usage https://github.com/PufferPanel/legacy-forum/discussions/276
/topic/230/resource-usage/* https://github.com/PufferPanel/legacy-forum/discussions/276
/topic/231/cant-connect-to-sftp https://github.com/PufferPanel/legacy-forum/discussions/277
/topic/231/cant-connect-to-sftp/* https://github.com/PufferPanel/legacy-forum/discussions/277
/topic/232/irc-suggestion-question https://github.com/PufferPanel/legacy-forum/discussions/278
/topic/232/irc-suggestion-question/* https://github.com/PufferPanel/legacy-forum/discussions/278
/topic/233/please-help-with-instalation https://github.com/PufferPanel/legacy-forum/discussions/279
/topic/233/please-help-with-instalation/* https://github.com/PufferPanel/legacy-forum/discussions/279
/topic/234/pocketmine-server https://github.com/PufferPanel/legacy-forum/discussions/280
/topic/234/pocketmine-server/* https://github.com/PufferPanel/legacy-forum/discussions/280
/topic/235/server-reinstallation https://github.com/PufferPanel/legacy-forum/discussions/281
/topic/235/server-reinstallation/* https://github.com/PufferPanel/legacy-forum/discussions/281
/topic/236/better-german-translation https://github.com/PufferPanel/legacy-forum/discussions/282
/topic/236/better-german-translation/* https://github.com/PufferPanel/legacy-forum/discussions/282
/topic/237/no-error-on-creation https://github.com/PufferPanel/legacy-forum/discussions/283
/topic/237/no-error-on-creation/* https://github.com/PufferPanel/legacy-forum/discussions/283
/topic/238/plugin-request-imagicalmine-installer https://github.com/PufferPanel/legacy-forum/discussions/284
/topic/238/plugin-request-imagicalmine-installer/* https://github.com/PufferPanel/legacy-forum/discussions/284
/topic/239/how-to-make-a-1-8-spigot-server https://github.com/PufferPanel/legacy-forum/discussions/285
/topic/239/how-to-make-a-1-8-spigot-server/* https://github.com/PufferPanel/legacy-forum/discussions/285
/topic/240/443-connection-refused-error-when-running-auto-deploy-for-scales https://github.com/PufferPanel/legacy-forum/discussions/286
/topic/240/443-connection-refused-error-when-running-auto-deploy-for-scales/* https://github.com/PufferPanel/legacy-forum/discussions/286
/topic/241/ubuntu-16-04 https://github.com/PufferPanel/legacy-forum/discussions/287
/topic/241/ubuntu-16-04/* https://github.com/PufferPanel/legacy-forum/discussions/287
/topic/242/change-session-timeout https://github.com/PufferPanel/legacy-forum/discussions/288
/topic/242/change-session-timeout/* https://github.com/PufferPanel/legacy-forum/discussions/288
/topic/243/give-users-control-without-deletion https://github.com/PufferPanel/legacy-forum/discussions/289
/topic/243/give-users-control-without-deletion/* https://github.com/PufferPanel/legacy-forum/discussions/289
/topic/244/use-console-command-send-api https://github.com/PufferPanel/legacy-forum/discussions/290
/topic/244/use-console-command-send-api/* https://github.com/PufferPanel/legacy-forum/discussions/290
/topic/245/unable-to-make-server https://github.com/PufferPanel/legacy-forum/discussions/291
/topic/245/unable-to-make-server/* https://github.com/PufferPanel/legacy-forum/discussions/291
/topic/246/any-way-to-disable-two-factor-authentication-without-logging-in https://github.com/PufferPanel/legacy-forum/discussions/293
/topic/246/any-way-to-disable-two-factor-authentication-without-logging-in/* https://github.com/PufferPanel/legacy-forum/discussions/293
/topic/247/two-factor-authentication-backup-codes https://github.com/PufferPanel/legacy-forum/discussions/292
/topic/247/two-factor-authentication-backup-codes/* https://github.com/PufferPanel/legacy-forum/discussions/292
/topic/248/status-update-6-21-2016 https://github.com/PufferPanel/legacy-forum/discussions/294
/topic/248/status-update-6-21-2016/* https://github.com/PufferPanel/legacy-forum/discussions/294
/topic/249/server-forcefully-stopping-without-log-info https://github.com/PufferPanel/legacy-forum/discussions/295
/topic/249/server-forcefully-stopping-without-log-info/* https://github.com/PufferPanel/legacy-forum/discussions/295
/topic/250/labeling-for-server-stats https://github.com/PufferPanel/legacy-forum/discussions/296
/topic/250/labeling-for-server-stats/* https://github.com/PufferPanel/legacy-forum/discussions/296
/topic/251/upload-plugins-into-the-server https://github.com/PufferPanel/legacy-forum/discussions/297
/topic/251/upload-plugins-into-the-server/* https://github.com/PufferPanel/legacy-forum/discussions/297
/topic/252/my-bungeecord-crashes https://github.com/PufferPanel/legacy-forum/discussions/298
/topic/252/my-bungeecord-crashes/* https://github.com/PufferPanel/legacy-forum/discussions/298
/topic/253/rust-srcds-258550 https://github.com/PufferPanel/legacy-forum/discussions/299
/topic/253/rust-srcds-258550/* https://github.com/PufferPanel/legacy-forum/discussions/299
/topic/254/moving-to-a-java-8-version https://github.com/PufferPanel/legacy-forum/discussions/300
/topic/254/moving-to-a-java-8-version/* https://github.com/PufferPanel/legacy-forum/discussions/300
/topic/255/what-is-the-auto-scroll-function-for-the-logs https://github.com/PufferPanel/legacy-forum/discussions/301
/topic/255/what-is-the-auto-scroll-function-for-the-logs/* https://github.com/PufferPanel/legacy-forum/discussions/301
/topic/256/how-can-i-acces-the-panel-after-installation https://github.com/PufferPanel/legacy-forum/discussions/302
/topic/256/how-can-i-acces-the-panel-after-installation/* https://github.com/PufferPanel/legacy-forum/discussions/302
/topic/257/error-500-on-installation https://github.com/PufferPanel/legacy-forum/discussions/303
/topic/257/error-500-on-installation/* https://github.com/PufferPanel/legacy-forum/discussions/303
/topic/258/autocreate-server https://github.com/PufferPanel/legacy-forum/discussions/304
/topic/258/autocreate-server/* https://github.com/PufferPanel/legacy-forum/discussions/304
/topic/259/panel-doesn-t-seem-to-install-correctly https://github.com/PufferPanel/legacy-forum/discussions/305
/topic/259/panel-doesn-t-seem-to-install-correctly/* https://github.com/PufferPanel/legacy-forum/discussions/305
/topic/260/wordpress-and-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/306
/topic/260/wordpress-and-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/306
/topic/261/sftp-problem https://github.com/PufferPanel/legacy-forum/discussions/307
/topic/261/sftp-problem/* https://github.com/PufferPanel/legacy-forum/discussions/307
/topic/262/pufferpanel-on-plesk https://github.com/PufferPanel/legacy-forum/discussions/308
/topic/262/pufferpanel-on-plesk/* https://github.com/PufferPanel/legacy-forum/discussions/308
/topic/263/i-need-to-know-how-to-but-the-documentation-is-too-lacking https://github.com/PufferPanel/legacy-forum/discussions/309
/topic/263/i-need-to-know-how-to-but-the-documentation-is-too-lacking/* https://github.com/PufferPanel/legacy-forum/discussions/309
/topic/264/having-problems-installing-with-sentora https://github.com/PufferPanel/legacy-forum/discussions/310
/topic/264/having-problems-installing-with-sentora/* https://github.com/PufferPanel/legacy-forum/discussions/310
/topic/265/running-a-different-java https://github.com/PufferPanel/legacy-forum/discussions/311
/topic/265/running-a-different-java/* https://github.com/PufferPanel/legacy-forum/discussions/311
/topic/266/scales-script-issues https://github.com/PufferPanel/legacy-forum/discussions/312
/topic/266/scales-script-issues/* https://github.com/PufferPanel/legacy-forum/discussions/312
/topic/267/no-crash-reports https://github.com/PufferPanel/legacy-forum/discussions/313
/topic/267/no-crash-reports/* https://github.com/PufferPanel/legacy-forum/discussions/313
/topic/268/users-cannot-start-their-servers https://github.com/PufferPanel/legacy-forum/discussions/314
/topic/268/users-cannot-start-their-servers/* https://github.com/PufferPanel/legacy-forum/discussions/314
/topic/269/release-date-of-pufferpanel-1-0-0 https://github.com/PufferPanel/legacy-forum/discussions/315
/topic/269/release-date-of-pufferpanel-1-0-0/* https://github.com/PufferPanel/legacy-forum/discussions/315
/topic/270/scales-problems https://github.com/PufferPanel/legacy-forum/discussions/316
/topic/270/scales-problems/* https://github.com/PufferPanel/legacy-forum/discussions/316
/topic/271/i-get-a-500-when-accessing-pufferpanel-install-install-php https://github.com/PufferPanel/legacy-forum/discussions/317
/topic/271/i-get-a-500-when-accessing-pufferpanel-install-install-php/* https://github.com/PufferPanel/legacy-forum/discussions/317
/topic/273/the-adress-i-connect-to-display-welcome-to-nginx-not-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/318
/topic/273/the-adress-i-connect-to-display-welcome-to-nginx-not-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/318
/topic/274/how-do-you-change-the-ip-adress-of-the-pufferpanel-domain https://github.com/PufferPanel/legacy-forum/discussions/319
/topic/274/how-do-you-change-the-ip-adress-of-the-pufferpanel-domain/* https://github.com/PufferPanel/legacy-forum/discussions/319
/topic/275/status-update-7-25-2016 https://github.com/PufferPanel/legacy-forum/discussions/320
/topic/275/status-update-7-25-2016/* https://github.com/PufferPanel/legacy-forum/discussions/320
/topic/276/unable-to-create-server https://github.com/PufferPanel/legacy-forum/discussions/321
/topic/276/unable-to-create-server/* https://github.com/PufferPanel/legacy-forum/discussions/321
/topic/278/how-do-i-create-a-spigot-plugin https://github.com/PufferPanel/legacy-forum/discussions/322
/topic/278/how-do-i-create-a-spigot-plugin/* https://github.com/PufferPanel/legacy-forum/discussions/322
/topic/279/how-do-i-add-more-to-my-website-error-404 https://github.com/PufferPanel/legacy-forum/discussions/323
/topic/279/how-do-i-add-more-to-my-website-error-404/* https://github.com/PufferPanel/legacy-forum/discussions/323
/topic/281/noob-question-where-do-i-find-sftp-details https://github.com/PufferPanel/legacy-forum/discussions/324
/topic/281/noob-question-where-do-i-find-sftp-details/* https://github.com/PufferPanel/legacy-forum/discussions/324
/topic/282/two-factor-authentication-failure-cannot-log-in-urgent https://github.com/PufferPanel/legacy-forum/discussions/325
/topic/282/two-factor-authentication-failure-cannot-log-in-urgent/* https://github.com/PufferPanel/legacy-forum/discussions/325
/topic/283/change-server-owner https://github.com/PufferPanel/legacy-forum/discussions/326
/topic/283/change-server-owner/* https://github.com/PufferPanel/legacy-forum/discussions/326
/topic/284/ipv6-support https://github.com/PufferPanel/legacy-forum/discussions/327
/topic/284/ipv6-support/* https://github.com/PufferPanel/legacy-forum/discussions/327
/topic/285/pufferpanel-auto-installer-for-ubuntu-16-04lts-pastee-link https://github.com/PufferPanel/legacy-forum/discussions/328
/topic/285/pufferpanel-auto-installer-for-ubuntu-16-04lts-pastee-link/* https://github.com/PufferPanel/legacy-forum/discussions/328
/topic/287/panel-url-does-not-work https://github.com/PufferPanel/legacy-forum/discussions/329
/topic/287/panel-url-does-not-work/* https://github.com/PufferPanel/legacy-forum/discussions/329
/topic/288/nginx-config https://github.com/PufferPanel/legacy-forum/discussions/330
/topic/288/nginx-config/* https://github.com/PufferPanel/legacy-forum/discussions/330
/topic/290/can-somebony-make-an-hlds-half-life-dedicated-server-plugin https://github.com/PufferPanel/legacy-forum/discussions/331
/topic/290/can-somebony-make-an-hlds-half-life-dedicated-server-plugin/* https://github.com/PufferPanel/legacy-forum/discussions/331
/topic/291/an-error-occured-using-the-scales-daemon https://github.com/PufferPanel/legacy-forum/discussions/332
/topic/291/an-error-occured-using-the-scales-daemon/* https://github.com/PufferPanel/legacy-forum/discussions/332
/topic/292/how-to-disable-https-for-scales-socket-io https://github.com/PufferPanel/legacy-forum/discussions/333
/topic/292/how-to-disable-https-for-scales-socket-io/* https://github.com/PufferPanel/legacy-forum/discussions/333
/topic/293/getting-error https://github.com/PufferPanel/legacy-forum/discussions/334
/topic/293/getting-error/* https://github.com/PufferPanel/legacy-forum/discussions/334
/topic/294/connectivity-problems https://github.com/PufferPanel/legacy-forum/discussions/335
/topic/294/connectivity-problems/* https://github.com/PufferPanel/legacy-forum/discussions/335
/topic/295/scales-down https://github.com/PufferPanel/legacy-forum/discussions/336
/topic/295/scales-down/* https://github.com/PufferPanel/legacy-forum/discussions/336
/topic/296/sftp-unable-to-login https://github.com/PufferPanel/legacy-forum/discussions/337
/topic/296/sftp-unable-to-login/* https://github.com/PufferPanel/legacy-forum/discussions/337
/topic/297/docker-prevents-setting-ip-and-port-for-scrds-and-minecraft https://github.com/PufferPanel/legacy-forum/discussions/338
/topic/297/docker-prevents-setting-ip-and-port-for-scrds-and-minecraft/* https://github.com/PufferPanel/legacy-forum/discussions/338
/topic/298/rest-api https://github.com/PufferPanel/legacy-forum/discussions/354
/topic/298/rest-api/* https://github.com/PufferPanel/legacy-forum/discussions/354
/topic/300/problems-with-instalation-ubuntu-15-10-64-bits https://github.com/PufferPanel/legacy-forum/discussions/355
/topic/300/problems-with-instalation-ubuntu-15-10-64-bits/* https://github.com/PufferPanel/legacy-forum/discussions/355
/topic/301/company-name-in-the-panel https://github.com/PufferPanel/legacy-forum/discussions/356
/topic/301/company-name-in-the-panel/* https://github.com/PufferPanel/legacy-forum/discussions/356
/topic/303/discussion-issues-in-the-script https://github.com/PufferPanel/legacy-forum/discussions/357
/topic/303/discussion-issues-in-the-script/* https://github.com/PufferPanel/legacy-forum/discussions/357
/topic/304/feature-request-download-a-master-server-and-link-the-server-to-the-master https://github.com/PufferPanel/legacy-forum/discussions/358
/topic/304/feature-request-download-a-master-server-and-link-the-server-to-the-master/* https://github.com/PufferPanel/legacy-forum/discussions/358
/topic/305/isue-in-the-instalation https://github.com/PufferPanel/legacy-forum/discussions/359
/topic/305/isue-in-the-instalation/* https://github.com/PufferPanel/legacy-forum/discussions/359
/topic/307/work-permission-can-i-change-the-template-and-submit-a-pull-request https://github.com/PufferPanel/legacy-forum/discussions/360
/topic/307/work-permission-can-i-change-the-template-and-submit-a-pull-request/* https://github.com/PufferPanel/legacy-forum/discussions/360
/topic/308/node-not-online https://github.com/PufferPanel/legacy-forum/discussions/361
/topic/308/node-not-online/* https://github.com/PufferPanel/legacy-forum/discussions/361
/topic/309/status-update-9-2-2016 https://github.com/PufferPanel/legacy-forum/discussions/362
/topic/309/status-update-9-2-2016/* https://github.com/PufferPanel/legacy-forum/discussions/362
/topic/310/running-nodejs-w-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/363
/topic/310/running-nodejs-w-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/363
/topic/312/help-with-install https://github.com/PufferPanel/legacy-forum/discussions/364
/topic/312/help-with-install/* https://github.com/PufferPanel/legacy-forum/discussions/364
/topic/313/help-with-csgo-server-setup https://github.com/PufferPanel/legacy-forum/discussions/365
/topic/313/help-with-csgo-server-setup/* https://github.com/PufferPanel/legacy-forum/discussions/365
/topic/314/installing-pufferpanel-with-php7-0 https://github.com/PufferPanel/legacy-forum/discussions/366
/topic/314/installing-pufferpanel-with-php7-0/* https://github.com/PufferPanel/legacy-forum/discussions/366
/topic/316/feature-request-automatic-updates https://github.com/PufferPanel/legacy-forum/discussions/367
/topic/316/feature-request-automatic-updates/* https://github.com/PufferPanel/legacy-forum/discussions/367
/topic/317/state-of-the-panel https://github.com/PufferPanel/legacy-forum/discussions/368
/topic/317/state-of-the-panel/* https://github.com/PufferPanel/legacy-forum/discussions/368
/topic/318/github-sign-in https://github.com/PufferPanel/legacy-forum/discussions/369
/topic/318/github-sign-in/* https://github.com/PufferPanel/legacy-forum/discussions/369
/topic/319/state-of-billing-support https://github.com/PufferPanel/legacy-forum/discussions/370
/topic/319/state-of-billing-support/* https://github.com/PufferPanel/legacy-forum/discussions/370
/topic/320/file-download-hash https://github.com/PufferPanel/legacy-forum/discussions/371
/topic/320/file-download-hash/* https://github.com/PufferPanel/legacy-forum/discussions/371
/topic/322/installation-problems-centos-7 https://github.com/PufferPanel/legacy-forum/discussions/372
/topic/322/installation-problems-centos-7/* https://github.com/PufferPanel/legacy-forum/discussions/372
/topic/323/error-when-trying-to-start-my-spigot-server https://github.com/PufferPanel/legacy-forum/discussions/373
/topic/323/error-when-trying-to-start-my-spigot-server/* https://github.com/PufferPanel/legacy-forum/discussions/373
/topic/324/installation-issues-welcome-to-ngix https://github.com/PufferPanel/legacy-forum/discussions/374
/topic/324/installation-issues-welcome-to-ngix/* https://github.com/PufferPanel/legacy-forum/discussions/374
/topic/327/many-minor-problems-after-installing-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/375
/topic/327/many-minor-problems-after-installing-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/375
/topic/328/perms-for-default-users https://github.com/PufferPanel/legacy-forum/discussions/376
/topic/328/perms-for-default-users/* https://github.com/PufferPanel/legacy-forum/discussions/376
/topic/329/scales-wont-connect-to-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/377
/topic/329/scales-wont-connect-to-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/377
/topic/330/debian-8-5-scales-installation https://github.com/PufferPanel/legacy-forum/discussions/378
/topic/330/debian-8-5-scales-installation/* https://github.com/PufferPanel/legacy-forum/discussions/378
/topic/331/scales-down-help-please https://github.com/PufferPanel/legacy-forum/discussions/379
/topic/331/scales-down-help-please/* https://github.com/PufferPanel/legacy-forum/discussions/379
/topic/332/issue-while-trying-to-build-spigot https://github.com/PufferPanel/legacy-forum/discussions/380
/topic/332/issue-while-trying-to-build-spigot/* https://github.com/PufferPanel/legacy-forum/discussions/380
/topic/333/feature-request-server-move-between-nodes https://github.com/PufferPanel/legacy-forum/discussions/381
/topic/333/feature-request-server-move-between-nodes/* https://github.com/PufferPanel/legacy-forum/discussions/381
/topic/334/unable-to-power-on-server-due-to-a-daemon-error https://github.com/PufferPanel/legacy-forum/discussions/382
/topic/334/unable-to-power-on-server-due-to-a-daemon-error/* https://github.com/PufferPanel/legacy-forum/discussions/382
/topic/335/phpmyadmin-and-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/384
/topic/335/phpmyadmin-and-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/384
/topic/336/an-error-was-encountered-when-trying-to-retrieve-this-file-for-editing-http-1-1-500 https://github.com/PufferPanel/legacy-forum/discussions/385
/topic/336/an-error-was-encountered-when-trying-to-retrieve-this-file-for-editing-http-1-1-500/* https://github.com/PufferPanel/legacy-forum/discussions/385
/topic/338/status-update-10-1-2016 https://github.com/PufferPanel/legacy-forum/discussions/386
/topic/338/status-update-10-1-2016/* https://github.com/PufferPanel/legacy-forum/discussions/386
/topic/339/suggestion-pufferd-add-requisites-for-games https://github.com/PufferPanel/legacy-forum/discussions/387
/topic/339/suggestion-pufferd-add-requisites-for-games/* https://github.com/PufferPanel/legacy-forum/discussions/387
/topic/340/scales-error-on-start-with-debug-and-error-on-server-creation https://github.com/PufferPanel/legacy-forum/discussions/388
/topic/340/scales-error-on-start-with-debug-and-error-on-server-creation/* https://github.com/PufferPanel/legacy-forum/discussions/388
/topic/341/phpmyadmin-with-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/389
/topic/341/phpmyadmin-with-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/389
/topic/342/problem-with-installing https://github.com/PufferPanel/legacy-forum/discussions/390
/topic/342/problem-with-installing/* https://github.com/PufferPanel/legacy-forum/discussions/390
/topic/343/can-t-access-subusers https://github.com/PufferPanel/legacy-forum/discussions/391
/topic/343/can-t-access-subusers/* https://github.com/PufferPanel/legacy-forum/discussions/391
/topic/344/scales-doesn-t-start-up-after-vps-restart https://github.com/PufferPanel/legacy-forum/discussions/392
/topic/344/scales-doesn-t-start-up-after-vps-restart/* https://github.com/PufferPanel/legacy-forum/discussions/392
/topic/345/error-when-creating-the-first-server https://github.com/PufferPanel/legacy-forum/discussions/393
/topic/345/error-when-creating-the-first-server/* https://github.com/PufferPanel/legacy-forum/discussions/393
/topic/347/different-url https://github.com/PufferPanel/legacy-forum/discussions/394
/topic/347/different-url/* https://github.com/PufferPanel/legacy-forum/discussions/394
/topic/348/404-error https://github.com/PufferPanel/legacy-forum/discussions/395
/topic/348/404-error/* https://github.com/PufferPanel/legacy-forum/discussions/395
/topic/349/mysql https://github.com/PufferPanel/legacy-forum/discussions/396
/topic/349/mysql/* https://github.com/PufferPanel/legacy-forum/discussions/396
/topic/350/pufferpanel-question https://github.com/PufferPanel/legacy-forum/discussions/397
/topic/350/pufferpanel-question/* https://github.com/PufferPanel/legacy-forum/discussions/397
/topic/351/creating-terraria-server-possible-if-so-how https://github.com/PufferPanel/legacy-forum/discussions/398
/topic/351/creating-terraria-server-possible-if-so-how/* https://github.com/PufferPanel/legacy-forum/discussions/398
/topic/352/forum-software https://github.com/PufferPanel/legacy-forum/discussions/399
/topic/352/forum-software/* https://github.com/PufferPanel/legacy-forum/discussions/399
/topic/353/scales-error https://github.com/PufferPanel/legacy-forum/discussions/400
/topic/353/scales-error/* https://github.com/PufferPanel/legacy-forum/discussions/400
/topic/354/already-made-serverfiles https://github.com/PufferPanel/legacy-forum/discussions/401
/topic/354/already-made-serverfiles/* https://github.com/PufferPanel/legacy-forum/discussions/401
/topic/356/pufferpanel-with-apache2 https://github.com/PufferPanel/legacy-forum/discussions/402
/topic/356/pufferpanel-with-apache2/* https://github.com/PufferPanel/legacy-forum/discussions/402
/topic/357/subdomain-installation https://github.com/PufferPanel/legacy-forum/discussions/403
/topic/357/subdomain-installation/* https://github.com/PufferPanel/legacy-forum/discussions/403
/topic/358/scales-node-help https://github.com/PufferPanel/legacy-forum/discussions/404
/topic/358/scales-node-help/* https://github.com/PufferPanel/legacy-forum/discussions/404
/topic/359/issue-in-install-tutorial https://github.com/PufferPanel/legacy-forum/discussions/405
/topic/359/issue-in-install-tutorial/* https://github.com/PufferPanel/legacy-forum/discussions/405
/topic/360/error-starting-scales https://github.com/PufferPanel/legacy-forum/discussions/406
/topic/360/error-starting-scales/* https://github.com/PufferPanel/legacy-forum/discussions/406
/topic/361/error-logging-into-sftp https://github.com/PufferPanel/legacy-forum/discussions/407
/topic/361/error-logging-into-sftp/* https://github.com/PufferPanel/legacy-forum/discussions/407
/topic/362/can-t-create-a-node-centos-7-1 https://github.com/PufferPanel/legacy-forum/discussions/408
/topic/362/can-t-create-a-node-centos-7-1/* https://github.com/PufferPanel/legacy-forum/discussions/408
/topic/363/main-socket-io-error https://github.com/PufferPanel/legacy-forum/discussions/409
/topic/363/main-socket-io-error/* https://github.com/PufferPanel/legacy-forum/discussions/409
/topic/364/just-some-general-blabber-and-checking-in-on-what-s-new https://github.com/PufferPanel/legacy-forum/discussions/410
/topic/364/just-some-general-blabber-and-checking-in-on-what-s-new/* https://github.com/PufferPanel/legacy-forum/discussions/410
/topic/365/bungeeperms https://github.com/PufferPanel/legacy-forum/discussions/411
/topic/365/bungeeperms/* https://github.com/PufferPanel/legacy-forum/discussions/411
/topic/366/a-few-questions https://github.com/PufferPanel/legacy-forum/discussions/412
/topic/366/a-few-questions/* https://github.com/PufferPanel/legacy-forum/discussions/412
/topic/367/why-is-this-happening https://github.com/PufferPanel/legacy-forum/discussions/413
/topic/367/why-is-this-happening/* https://github.com/PufferPanel/legacy-forum/discussions/413
/topic/368/where-is-the-server-stored https://github.com/PufferPanel/legacy-forum/discussions/414
/topic/368/where-is-the-server-stored/* https://github.com/PufferPanel/legacy-forum/discussions/414
/topic/369/remote-request-not-returning-command-output https://github.com/PufferPanel/legacy-forum/discussions/415
/topic/369/remote-request-not-returning-command-output/* https://github.com/PufferPanel/legacy-forum/discussions/415
/topic/370/timing-out-when-trying-to-connect-to-mc-server https://github.com/PufferPanel/legacy-forum/discussions/416
/topic/370/timing-out-when-trying-to-connect-to-mc-server/* https://github.com/PufferPanel/legacy-forum/discussions/416
/topic/371/sftp-issue-server-unexpectedly-closed-network-connection https://github.com/PufferPanel/legacy-forum/discussions/417
/topic/371/sftp-issue-server-unexpectedly-closed-network-connection/* https://github.com/PufferPanel/legacy-forum/discussions/417
/topic/372/making-a-different-node-outside-of-servers-routor https://github.com/PufferPanel/legacy-forum/discussions/418
/topic/372/making-a-different-node-outside-of-servers-routor/* https://github.com/PufferPanel/legacy-forum/discussions/418
/topic/373/my-reoccurring-nightmare https://github.com/PufferPanel/legacy-forum/discussions/419
/topic/373/my-reoccurring-nightmare/* https://github.com/PufferPanel/legacy-forum/discussions/419
/topic/374/add-non-admin-user-to-existing-server https://github.com/PufferPanel/legacy-forum/discussions/420
/topic/374/add-non-admin-user-to-existing-server/* https://github.com/PufferPanel/legacy-forum/discussions/420
/topic/375/feature-suggestion-command-history https://github.com/PufferPanel/legacy-forum/discussions/421
/topic/375/feature-suggestion-command-history/* https://github.com/PufferPanel/legacy-forum/discussions/421
/topic/377/php-binary-7-not-working https://github.com/PufferPanel/legacy-forum/discussions/422
/topic/377/php-binary-7-not-working/* https://github.com/PufferPanel/legacy-forum/discussions/422
/topic/378/error-when-i-will-create-a-new-server https://github.com/PufferPanel/legacy-forum/discussions/423
/topic/378/error-when-i-will-create-a-new-server/* https://github.com/PufferPanel/legacy-forum/discussions/423
/topic/379/error-when-starting-server https://github.com/PufferPanel/legacy-forum/discussions/424
/topic/379/error-when-starting-server/* https://github.com/PufferPanel/legacy-forum/discussions/424
/topic/381/status-update-11-15-2016 https://github.com/PufferPanel/legacy-forum/discussions/425
/topic/381/status-update-11-15-2016/* https://github.com/PufferPanel/legacy-forum/discussions/425
/topic/382/minecraft-server-java-1-8-issue-ubuntu https://github.com/PufferPanel/legacy-forum/discussions/426
/topic/382/minecraft-server-java-1-8-issue-ubuntu/* https://github.com/PufferPanel/legacy-forum/discussions/426
/topic/383/could-not-bind-to-host https://github.com/PufferPanel/legacy-forum/discussions/427
/topic/383/could-not-bind-to-host/* https://github.com/PufferPanel/legacy-forum/discussions/427
/topic/384/server-properties https://github.com/PufferPanel/legacy-forum/discussions/428
/topic/384/server-properties/* https://github.com/PufferPanel/legacy-forum/discussions/428
/topic/385/change-main-port https://github.com/PufferPanel/legacy-forum/discussions/429
/topic/385/change-main-port/* https://github.com/PufferPanel/legacy-forum/discussions/429
/topic/386/sftp-very-slow https://github.com/PufferPanel/legacy-forum/discussions/430
/topic/386/sftp-very-slow/* https://github.com/PufferPanel/legacy-forum/discussions/430
/topic/387/pufferpanel-on-azure https://github.com/PufferPanel/legacy-forum/discussions/431
/topic/387/pufferpanel-on-azure/* https://github.com/PufferPanel/legacy-forum/discussions/431
/topic/388/404-page https://github.com/PufferPanel/legacy-forum/discussions/432
/topic/388/404-page/* https://github.com/PufferPanel/legacy-forum/discussions/432
/topic/389/is-it-possible-to-remove-scales https://github.com/PufferPanel/legacy-forum/discussions/433
/topic/389/is-it-possible-to-remove-scales/* https://github.com/PufferPanel/legacy-forum/discussions/433
/topic/390/whmcs-support https://github.com/PufferPanel/legacy-forum/discussions/434
/topic/390/whmcs-support/* https://github.com/PufferPanel/legacy-forum/discussions/434
/topic/391/installation-issue https://github.com/PufferPanel/legacy-forum/discussions/435
/topic/391/installation-issue/* https://github.com/PufferPanel/legacy-forum/discussions/435
/topic/392/pufferpanel-tutorial-not-working https://github.com/PufferPanel/legacy-forum/discussions/436
/topic/392/pufferpanel-tutorial-not-working/* https://github.com/PufferPanel/legacy-forum/discussions/436
/topic/393/error-starting https://github.com/PufferPanel/legacy-forum/discussions/437
/topic/393/error-starting/* https://github.com/PufferPanel/legacy-forum/discussions/437
/topic/394/cannot-turn-on-server-after-installing-minecraft-plugin https://github.com/PufferPanel/legacy-forum/discussions/438
/topic/394/cannot-turn-on-server-after-installing-minecraft-plugin/* https://github.com/PufferPanel/legacy-forum/discussions/438
/topic/395/pufferpanel-on-apache2 https://github.com/PufferPanel/legacy-forum/discussions/439
/topic/395/pufferpanel-on-apache2/* https://github.com/PufferPanel/legacy-forum/discussions/439
/topic/396/bungee-proxy-can-t-connect-to-lobby-anymore https://github.com/PufferPanel/legacy-forum/discussions/440
/topic/396/bungee-proxy-can-t-connect-to-lobby-anymore/* https://github.com/PufferPanel/legacy-forum/discussions/440
/topic/397/error-when-starting-up-scales https://github.com/PufferPanel/legacy-forum/discussions/441
/topic/397/error-when-starting-up-scales/* https://github.com/PufferPanel/legacy-forum/discussions/441
/topic/398/scales-error https://github.com/PufferPanel/legacy-forum/discussions/442
/topic/398/scales-error/* https://github.com/PufferPanel/legacy-forum/discussions/442
/topic/399/installer-not-showing-as-complete https://github.com/PufferPanel/legacy-forum/discussions/443
/topic/399/installer-not-showing-as-complete/* https://github.com/PufferPanel/legacy-forum/discussions/443
/topic/400/bad-link-to-ssl https://github.com/PufferPanel/legacy-forum/discussions/444
/topic/400/bad-link-to-ssl/* https://github.com/PufferPanel/legacy-forum/discussions/444
/topic/401/cannot-access-pufferpanel-website-internally https://github.com/PufferPanel/legacy-forum/discussions/445
/topic/401/cannot-access-pufferpanel-website-internally/* https://github.com/PufferPanel/legacy-forum/discussions/445
/topic/402/how-to-properly-configure-pufferpanel-from-a-best-practices-standpoint https://github.com/PufferPanel/legacy-forum/discussions/446
/topic/402/how-to-properly-configure-pufferpanel-from-a-best-practices-standpoint/* https://github.com/PufferPanel/legacy-forum/discussions/446
/topic/403/how-do-i-configure-another-game-not-listed-in-the-server-plugin-section https://github.com/PufferPanel/legacy-forum/discussions/447
/topic/403/how-do-i-configure-another-game-not-listed-in-the-server-plugin-section/* https://github.com/PufferPanel/legacy-forum/discussions/447
/topic/404/how-does-pufferpanel-limits-cpu-usage https://github.com/PufferPanel/legacy-forum/discussions/448
/topic/404/how-does-pufferpanel-limits-cpu-usage/* https://github.com/PufferPanel/legacy-forum/discussions/448
/topic/405/subdomain-installation-fake-hsts-301-302-redirects-highly-experimental https://github.com/PufferPanel/legacy-forum/discussions/449
/topic/405/subdomain-installation-fake-hsts-301-302-redirects-highly-experimental/* https://github.com/PufferPanel/legacy-forum/discussions/449
/topic/406/help-with-ip-redirection https://github.com/PufferPanel/legacy-forum/discussions/450
/topic/406/help-with-ip-redirection/* https://github.com/PufferPanel/legacy-forum/discussions/450
/topic/407/suggestions https://github.com/PufferPanel/legacy-forum/discussions/451
/topic/407/suggestions/* https://github.com/PufferPanel/legacy-forum/discussions/451
/topic/408/pufferpanel-won-t-load-from-link https://github.com/PufferPanel/legacy-forum/discussions/452
/topic/408/pufferpanel-won-t-load-from-link/* https://github.com/PufferPanel/legacy-forum/discussions/452
/topic/409/scales-auto-deploy-command-outputting-weird-error https://github.com/PufferPanel/legacy-forum/discussions/453
/topic/409/scales-auto-deploy-command-outputting-weird-error/* https://github.com/PufferPanel/legacy-forum/discussions/453
/topic/410/regarding-the-scales-better-daemon-post https://github.com/PufferPanel/legacy-forum/discussions/454
/topic/410/regarding-the-scales-better-daemon-post/* https://github.com/PufferPanel/legacy-forum/discussions/454
/topic/411/changing-up-the-automatic-emails https://github.com/PufferPanel/legacy-forum/discussions/456
/topic/411/changing-up-the-automatic-emails/* https://github.com/PufferPanel/legacy-forum/discussions/456
/topic/412/bind-port-25565-error-problem-networking https://github.com/PufferPanel/legacy-forum/discussions/457
/topic/412/bind-port-25565-error-problem-networking/* https://github.com/PufferPanel/legacy-forum/discussions/457
/topic/413/ubuntu-16-04-bad-gateway https://github.com/PufferPanel/legacy-forum/discussions/458
/topic/413/ubuntu-16-04-bad-gateway/* https://github.com/PufferPanel/legacy-forum/discussions/458
/topic/414/apache2-location-index-is-not-being-found https://github.com/PufferPanel/legacy-forum/discussions/459
/topic/414/apache2-location-index-is-not-being-found/* https://github.com/PufferPanel/legacy-forum/discussions/459
/topic/415/how-to-add-sa-mp-and-ts3-servers https://github.com/PufferPanel/legacy-forum/discussions/460
/topic/415/how-to-add-sa-mp-and-ts3-servers/* https://github.com/PufferPanel/legacy-forum/discussions/460
/topic/416/socket-io https://github.com/PufferPanel/legacy-forum/discussions/461
/topic/416/socket-io/* https://github.com/PufferPanel/legacy-forum/discussions/461
/topic/417/forums https://github.com/PufferPanel/legacy-forum/discussions/462
/topic/417/forums/* https://github.com/PufferPanel/legacy-forum/discussions/462
/topic/418/server-crash-after-move-to-new-server https://github.com/PufferPanel/legacy-forum/discussions/463
/topic/418/server-crash-after-move-to-new-server/* https://github.com/PufferPanel/legacy-forum/discussions/463
/topic/419/sftp-connection-drops-after-entering-password https://github.com/PufferPanel/legacy-forum/discussions/464
/topic/419/sftp-connection-drops-after-entering-password/* https://github.com/PufferPanel/legacy-forum/discussions/464
/topic/420/how-register-new-account-in-panel https://github.com/PufferPanel/legacy-forum/discussions/465
/topic/420/how-register-new-account-in-panel/* https://github.com/PufferPanel/legacy-forum/discussions/465
/topic/421/i-get-server-error-500-when-cliking-any-of-the-node-links https://github.com/PufferPanel/legacy-forum/discussions/466
/topic/421/i-get-server-error-500-when-cliking-any-of-the-node-links/* https://github.com/PufferPanel/legacy-forum/discussions/466
/topic/422/autostart https://github.com/PufferPanel/legacy-forum/discussions/468
/topic/422/autostart/* https://github.com/PufferPanel/legacy-forum/discussions/468
/topic/423/how-to-install-arma-3 https://github.com/PufferPanel/legacy-forum/discussions/469
/topic/423/how-to-install-arma-3/* https://github.com/PufferPanel/legacy-forum/discussions/469
/topic/424/how-to-add-another-steamcmd-account-pls https://github.com/PufferPanel/legacy-forum/discussions/470
/topic/424/how-to-add-another-steamcmd-account-pls/* https://github.com/PufferPanel/legacy-forum/discussions/470
/topic/425/installation-script-does-not-work https://github.com/PufferPanel/legacy-forum/discussions/471
/topic/425/installation-script-does-not-work/* https://github.com/PufferPanel/legacy-forum/discussions/471
/topic/426/request-all-server-restart-script https://github.com/PufferPanel/legacy-forum/discussions/472
/topic/426/request-all-server-restart-script/* https://github.com/PufferPanel/legacy-forum/discussions/472
/topic/427/can-t-include-port-in-panel-master-url https://github.com/PufferPanel/legacy-forum/discussions/473
/topic/427/can-t-include-port-in-panel-master-url/* https://github.com/PufferPanel/legacy-forum/discussions/473
/topic/428/can-t-add-node https://github.com/PufferPanel/legacy-forum/discussions/474
/topic/428/can-t-add-node/* https://github.com/PufferPanel/legacy-forum/discussions/474
/topic/429/can-somewon-help-me-please https://github.com/PufferPanel/legacy-forum/discussions/475
/topic/429/can-somewon-help-me-please/* https://github.com/PufferPanel/legacy-forum/discussions/475
/topic/430/i-ve-always-had-trouble-trying-to-install-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/476
/topic/430/i-ve-always-had-trouble-trying-to-install-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/476
/topic/431/update-issue https://github.com/PufferPanel/legacy-forum/discussions/477
/topic/431/update-issue/* https://github.com/PufferPanel/legacy-forum/discussions/477
/topic/432/limiting-disk-space-for-users https://github.com/PufferPanel/legacy-forum/discussions/478
/topic/432/limiting-disk-space-for-users/* https://github.com/PufferPanel/legacy-forum/discussions/478
/topic/433/cannot-find-module https://github.com/PufferPanel/legacy-forum/discussions/479
/topic/433/cannot-find-module/* https://github.com/PufferPanel/legacy-forum/discussions/479
/topic/434/changing-query-port-or-disabling-query https://github.com/PufferPanel/legacy-forum/discussions/480
/topic/434/changing-query-port-or-disabling-query/* https://github.com/PufferPanel/legacy-forum/discussions/480
/topic/436/something-approaches-from-the-mist https://github.com/PufferPanel/legacy-forum/discussions/481
/topic/436/something-approaches-from-the-mist/* https://github.com/PufferPanel/legacy-forum/discussions/481
/topic/439/connecting-externally https://github.com/PufferPanel/legacy-forum/discussions/497
/topic/439/connecting-externally/* https://github.com/PufferPanel/legacy-forum/discussions/497
/topic/441/installing-on-subdomain https://github.com/PufferPanel/legacy-forum/discussions/498
/topic/441/installing-on-subdomain/* https://github.com/PufferPanel/legacy-forum/discussions/498
/topic/443/pufferpanel-1-0-with-ubuntu-15-10 https://github.com/PufferPanel/legacy-forum/discussions/499
/topic/443/pufferpanel-1-0-with-ubuntu-15-10/* https://github.com/PufferPanel/legacy-forum/discussions/499
/topic/444/importing-server-to-panel https://github.com/PufferPanel/legacy-forum/discussions/500
/topic/444/importing-server-to-panel/* https://github.com/PufferPanel/legacy-forum/discussions/500
/topic/445/panel-not-working https://github.com/PufferPanel/legacy-forum/discussions/501
/topic/445/panel-not-working/* https://github.com/PufferPanel/legacy-forum/discussions/501
/topic/446/pufferpanel-and-pufferd-v1-0-0-has-arrived https://github.com/PufferPanel/legacy-forum/discussions/502
/topic/446/pufferpanel-and-pufferd-v1-0-0-has-arrived/* https://github.com/PufferPanel/legacy-forum/discussions/502
/topic/447/how-to-backup-and-install-pufferpanel-1-0-0 https://github.com/PufferPanel/legacy-forum/discussions/503
/topic/447/how-to-backup-and-install-pufferpanel-1-0-0/* https://github.com/PufferPanel/legacy-forum/discussions/503
/topic/448/some-issues-arising-with-v1-clean-startup https://github.com/PufferPanel/legacy-forum/discussions/504
/topic/448/some-issues-arising-with-v1-clean-startup/* https://github.com/PufferPanel/legacy-forum/discussions/504
/topic/449/issues-with-v1 https://github.com/PufferPanel/legacy-forum/discussions/505
/topic/449/issues-with-v1/* https://github.com/PufferPanel/legacy-forum/discussions/505
/topic/450/i-can-not-add-servers-node-not-working-pufferd https://github.com/PufferPanel/legacy-forum/discussions/506
/topic/450/i-can-not-add-servers-node-not-working-pufferd/* https://github.com/PufferPanel/legacy-forum/discussions/506
/topic/451/browser-crash https://github.com/PufferPanel/legacy-forum/discussions/507
/topic/451/browser-crash/* https://github.com/PufferPanel/legacy-forum/discussions/507
/topic/452/some-issues-after-migrating-from-pufferpanel-0-8-6-ubuntu-server-14-04-to-1-0-ubuntu-server-16-04 https://github.com/PufferPanel/legacy-forum/discussions/508
/topic/452/some-issues-after-migrating-from-pufferpanel-0-8-6-ubuntu-server-14-04-to-1-0-ubuntu-server-16-04/* https://github.com/PufferPanel/legacy-forum/discussions/508
/topic/453/won-t-let-me-upload-a-file https://github.com/PufferPanel/legacy-forum/discussions/509
/topic/453/won-t-let-me-upload-a-file/* https://github.com/PufferPanel/legacy-forum/discussions/509
/topic/454/cannot-execute-binary-file-exec-format-error https://github.com/PufferPanel/legacy-forum/discussions/510
/topic/454/cannot-execute-binary-file-exec-format-error/* https://github.com/PufferPanel/legacy-forum/discussions/510
/topic/455/error-loading-config-open-etc-pufferd-config-json https://github.com/PufferPanel/legacy-forum/discussions/511
/topic/455/error-loading-config-open-etc-pufferd-config-json/* https://github.com/PufferPanel/legacy-forum/discussions/511
/topic/456/no-config-file https://github.com/PufferPanel/legacy-forum/discussions/512
/topic/456/no-config-file/* https://github.com/PufferPanel/legacy-forum/discussions/512
/topic/458/pufferd-daemon-1-0-5-error https://github.com/PufferPanel/legacy-forum/discussions/513
/topic/458/pufferd-daemon-1-0-5-error/* https://github.com/PufferPanel/legacy-forum/discussions/513
/topic/459/unsupported-protocol-scheme https://github.com/PufferPanel/legacy-forum/discussions/514
/topic/459/unsupported-protocol-scheme/* https://github.com/PufferPanel/legacy-forum/discussions/514
/topic/460/pocketmine-mp-server https://github.com/PufferPanel/legacy-forum/discussions/515
/topic/460/pocketmine-mp-server/* https://github.com/PufferPanel/legacy-forum/discussions/515
/topic/461/scales-error https://github.com/PufferPanel/legacy-forum/discussions/517
/topic/461/scales-error/* https://github.com/PufferPanel/legacy-forum/discussions/517
/topic/462/error-1060-trying-to-upgrade-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/518
/topic/462/error-1060-trying-to-upgrade-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/518
/topic/463/an-error-occurred-while-trying-to-connect-to-the-remote-node https://github.com/PufferPanel/legacy-forum/discussions/519
/topic/463/an-error-occurred-while-trying-to-connect-to-the-remote-node/* https://github.com/PufferPanel/legacy-forum/discussions/519
/topic/464/changelog https://github.com/PufferPanel/legacy-forum/discussions/520
/topic/464/changelog/* https://github.com/PufferPanel/legacy-forum/discussions/520
/topic/465/can-t-create-a-new-server https://github.com/PufferPanel/legacy-forum/discussions/521
/topic/465/can-t-create-a-new-server/* https://github.com/PufferPanel/legacy-forum/discussions/521
/topic/466/cannot-select-plugin-to-create-a-server https://github.com/PufferPanel/legacy-forum/discussions/522
/topic/466/cannot-select-plugin-to-create-a-server/* https://github.com/PufferPanel/legacy-forum/discussions/522
/topic/467/server https://github.com/PufferPanel/legacy-forum/discussions/523
/topic/467/server/* https://github.com/PufferPanel/legacy-forum/discussions/523
/topic/468/pufferpannel-and-pufferd-inside-a-docker-container https://github.com/PufferPanel/legacy-forum/discussions/524
/topic/468/pufferpannel-and-pufferd-inside-a-docker-container/* https://github.com/PufferPanel/legacy-forum/discussions/524
/topic/469/scrds-commandline https://github.com/PufferPanel/legacy-forum/discussions/525
/topic/469/scrds-commandline/* https://github.com/PufferPanel/legacy-forum/discussions/525
/topic/472/other-admins-can-t-access-my-servers https://github.com/PufferPanel/legacy-forum/discussions/526
/topic/472/other-admins-can-t-access-my-servers/* https://github.com/PufferPanel/legacy-forum/discussions/526
/topic/473/error-unable-to-access-jarfile-server-jar https://github.com/PufferPanel/legacy-forum/discussions/527
/topic/473/error-unable-to-access-jarfile-server-jar/* https://github.com/PufferPanel/legacy-forum/discussions/527
/topic/474/no-server-plugins https://github.com/PufferPanel/legacy-forum/discussions/528
/topic/474/no-server-plugins/* https://github.com/PufferPanel/legacy-forum/discussions/528
/topic/475/can-t-upload-files-to-ftp https://github.com/PufferPanel/legacy-forum/discussions/529
/topic/475/can-t-upload-files-to-ftp/* https://github.com/PufferPanel/legacy-forum/discussions/529
/topic/476/phpmyadmin-on-server https://github.com/PufferPanel/legacy-forum/discussions/530
/topic/476/phpmyadmin-on-server/* https://github.com/PufferPanel/legacy-forum/discussions/530
/topic/477/pufferpanel-and-ubuntu-14-04-64-bits https://github.com/PufferPanel/legacy-forum/discussions/531
/topic/477/pufferpanel-and-ubuntu-14-04-64-bits/* https://github.com/PufferPanel/legacy-forum/discussions/531
/topic/478/daemon-offline https://github.com/PufferPanel/legacy-forum/discussions/
/topic/478/daemon-offline/* https://github.com/PufferPanel/legacy-forum/discussions/
/topic/479/cant-log-in-default-nginx-page-seen https://github.com/PufferPanel/legacy-forum/discussions/532
/topic/479/cant-log-in-default-nginx-page-seen/* https://github.com/PufferPanel/legacy-forum/discussions/532
/topic/480/file-manager https://github.com/PufferPanel/legacy-forum/discussions/533
/topic/480/file-manager/* https://github.com/PufferPanel/legacy-forum/discussions/533
/topic/481/pufferd-server-creation-error https://github.com/PufferPanel/legacy-forum/discussions/534
/topic/481/pufferd-server-creation-error/* https://github.com/PufferPanel/legacy-forum/discussions/534
/topic/482/403-forbidden https://github.com/PufferPanel/legacy-forum/discussions/536
/topic/482/403-forbidden/* https://github.com/PufferPanel/legacy-forum/discussions/536
/topic/483/cant-create-new-server https://github.com/PufferPanel/legacy-forum/discussions/537
/topic/483/cant-create-new-server/* https://github.com/PufferPanel/legacy-forum/discussions/537
/topic/487/keeps-telling-me-to-log-in https://github.com/PufferPanel/legacy-forum/discussions/538
/topic/487/keeps-telling-me-to-log-in/* https://github.com/PufferPanel/legacy-forum/discussions/538
/topic/488/error-enabling-pufferd-service https://github.com/PufferPanel/legacy-forum/discussions/539
/topic/488/error-enabling-pufferd-service/* https://github.com/PufferPanel/legacy-forum/discussions/539
/topic/490/how-to-i-uninstall-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/540
/topic/490/how-to-i-uninstall-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/540
/topic/491/failed-to-bind-to-port-daemon-not-reporting-it-is-online-cannot-sftp-in-filezilla https://github.com/PufferPanel/legacy-forum/discussions/541
/topic/491/failed-to-bind-to-port-daemon-not-reporting-it-is-online-cannot-sftp-in-filezilla/* https://github.com/PufferPanel/legacy-forum/discussions/541
/topic/492/some-help-please https://github.com/PufferPanel/legacy-forum/discussions/542
/topic/492/some-help-please/* https://github.com/PufferPanel/legacy-forum/discussions/542
/topic/493/create-a-gmod-server-srcds https://github.com/PufferPanel/legacy-forum/discussions/543
/topic/493/create-a-gmod-server-srcds/* https://github.com/PufferPanel/legacy-forum/discussions/543
/topic/494/my-s-ftp-won-t-generate https://github.com/PufferPanel/legacy-forum/discussions/544
/topic/494/my-s-ftp-won-t-generate/* https://github.com/PufferPanel/legacy-forum/discussions/544
/topic/495/pufferpanel-running-server-with-acess-ftp https://github.com/PufferPanel/legacy-forum/discussions/545
/topic/495/pufferpanel-running-server-with-acess-ftp/* https://github.com/PufferPanel/legacy-forum/discussions/545
/topic/498/pufferpanel-v1-0-3-subuser-and-admin-successfully https://github.com/PufferPanel/legacy-forum/discussions/546
/topic/498/pufferpanel-v1-0-3-subuser-and-admin-successfully/* https://github.com/PufferPanel/legacy-forum/discussions/546
/topic/499/discord https://github.com/PufferPanel/legacy-forum/discussions/547
/topic/499/discord/* https://github.com/PufferPanel/legacy-forum/discussions/547
/topic/500/discord https://github.com/PufferPanel/legacy-forum/discussions/548
/topic/500/discord/* https://github.com/PufferPanel/legacy-forum/discussions/548
/topic/501/remote-error-tls-unknown-certificate-authority https://github.com/PufferPanel/legacy-forum/discussions/549
/topic/501/remote-error-tls-unknown-certificate-authority/* https://github.com/PufferPanel/legacy-forum/discussions/549
/topic/502/folders-not-generated-all-files-are-0-bytes https://github.com/PufferPanel/legacy-forum/discussions/550
/topic/502/folders-not-generated-all-files-are-0-bytes/* https://github.com/PufferPanel/legacy-forum/discussions/550
/topic/503/subuser-leads-to-an-internal-server-error https://github.com/PufferPanel/legacy-forum/discussions/551
/topic/503/subuser-leads-to-an-internal-server-error/* https://github.com/PufferPanel/legacy-forum/discussions/551
/topic/504/request-lib32-libraries https://github.com/PufferPanel/legacy-forum/discussions/552
/topic/504/request-lib32-libraries/* https://github.com/PufferPanel/legacy-forum/discussions/552
/topic/505/pufferpanel-taking-over-website https://github.com/PufferPanel/legacy-forum/discussions/553
/topic/505/pufferpanel-taking-over-website/* https://github.com/PufferPanel/legacy-forum/discussions/553
/topic/506/file-editing-via-winscp-failing-to-save-properly https://github.com/PufferPanel/legacy-forum/discussions/554
/topic/506/file-editing-via-winscp-failing-to-save-properly/* https://github.com/PufferPanel/legacy-forum/discussions/554
/topic/507/is-there-a-restful-api-available https://github.com/PufferPanel/legacy-forum/discussions/555
/topic/507/is-there-a-restful-api-available/* https://github.com/PufferPanel/legacy-forum/discussions/555
/topic/508/error-401-on-pufferd https://github.com/PufferPanel/legacy-forum/discussions/557
/topic/508/error-401-on-pufferd/* https://github.com/PufferPanel/legacy-forum/discussions/557
/topic/509/token-question https://github.com/PufferPanel/legacy-forum/discussions/558
/topic/509/token-question/* https://github.com/PufferPanel/legacy-forum/discussions/558
/topic/510/issues-getting-started-with-pufferpanel https://github.com/PufferPanel/legacy-forum/discussions/559
/topic/510/issues-getting-started-with-pufferpanel/* https://github.com/PufferPanel/legacy-forum/discussions/559
/topic/512/feature-discussion-using-symlinks https://github.com/PufferPanel/legacy-forum/discussions/560
/topic/512/feature-discussion-using-symlinks/* https://github.com/PufferPanel/legacy-forum/discussions/560
/topic/513/feature-discussion-reset-server https://github.com/PufferPanel/legacy-forum/discussions/561
/topic/513/feature-discussion-reset-server/* https://github.com/PufferPanel/legacy-forum/discussions/561
/topic/514/possible-error-email-changed-message https://github.com/PufferPanel/legacy-forum/discussions/562
/topic/514/possible-error-email-changed-message/* https://github.com/PufferPanel/legacy-forum/discussions/562
/topic/516/cannot-get-my-custom-sftp-for-my-created-server-to-work https://github.com/PufferPanel/legacy-forum/discussions/563
/topic/516/cannot-get-my-custom-sftp-for-my-created-server-to-work/* https://github.com/PufferPanel/legacy-forum/discussions/563
/topic/517/issue-pufferpanel-master-url-gets-deleted-from-database-when-you-click-update-in-url-settings-on-website https://github.com/PufferPanel/legacy-forum/discussions/564
/topic/517/issue-pufferpanel-master-url-gets-deleted-from-database-when-you-click-update-in-url-settings-on-website/* https://github.com/PufferPanel/legacy-forum/discussions/564
/topic/518/error-500-on-installation https://github.com/PufferPanel/legacy-forum/discussions/565
/topic/518/error-500-on-installation/* https://github.com/PufferPanel/legacy-forum/discussions/565
/topic/519/root-priveleges-on-database https://github.com/PufferPanel/legacy-forum/discussions/566
/topic/519/root-priveleges-on-database/* https://github.com/PufferPanel/legacy-forum/discussions/566
/topic/520/error-deleting-user-from-database-using-website https://github.com/PufferPanel/legacy-forum/discussions/567
/topic/520/error-deleting-user-from-database-using-website/* https://github.com/PufferPanel/legacy-forum/discussions/567
/topic/521/login-issues https://github.com/PufferPanel/legacy-forum/discussions/568
/topic/521/login-issues/* https://github.com/PufferPanel/legacy-forum/discussions/568
/topic/522/trouble-creating-a-new-server-in-1-0-3 https://github.com/PufferPanel/legacy-forum/discussions/569
/topic/522/trouble-creating-a-new-server-in-1-0-3/* https://github.com/PufferPanel/legacy-forum/discussions/569
/topic/523/documentation-for-pufferd-templates https://github.com/PufferPanel/legacy-forum/discussions/570
/topic/523/documentation-for-pufferd-templates/* https://github.com/PufferPanel/legacy-forum/discussions/570
/topic/524/query-wondering-if-anyone-knows-how-oauth2-resolves-domain-names https://github.com/PufferPanel/legacy-forum/discussions/571
/topic/524/query-wondering-if-anyone-knows-how-oauth2-resolves-domain-names/* https://github.com/PufferPanel/legacy-forum/discussions/571
/topic/525/error-occurred-during-server-creation-401 https://github.com/PufferPanel/legacy-forum/discussions/572
/topic/525/error-occurred-during-server-creation-401/* https://github.com/PufferPanel/legacy-forum/discussions/572
/topic/527/creating-a-forge-server-gives-an-error https://github.com/PufferPanel/legacy-forum/discussions/573
/topic/527/creating-a-forge-server-gives-an-error/* https://github.com/PufferPanel/legacy-forum/discussions/573
/topic/528/can-t-make-a-server-pls-help https://github.com/PufferPanel/legacy-forum/discussions/574
/topic/528/can-t-make-a-server-pls-help/* https://github.com/PufferPanel/legacy-forum/discussions/574
/topic/529/where-are-the-files-kept https://github.com/PufferPanel/legacy-forum/discussions/575
/topic/529/where-are-the-files-kept/* https://github.com/PufferPanel/legacy-forum/discussions/575
/topic/530/plugins-folder-is-a-file https://github.com/PufferPanel/legacy-forum/discussions/576
/topic/530/plugins-folder-is-a-file/* https://github.com/PufferPanel/legacy-forum/discussions/576
/topic/531/error-when-deploying-a-node-on-same-vps https://github.com/PufferPanel/legacy-forum/discussions/577
/topic/531/error-when-deploying-a-node-on-same-vps/* https://github.com/PufferPanel/legacy-forum/discussions/577
/topic/532/fresh-installed-can-t-open-panel https://github.com/PufferPanel/legacy-forum/discussions/578
/topic/532/fresh-installed-can-t-open-panel/* https://github.com/PufferPanel/legacy-forum/discussions/578
/topic/533/error-auto-deploy https://github.com/PufferPanel/legacy-forum/discussions/579
/topic/533/error-auto-deploy/* https://github.com/PufferPanel/legacy-forum/discussions/579
/topic/535/where-can-i-find-all-my-server-files https://github.com/PufferPanel/legacy-forum/discussions/580
/topic/535/where-can-i-find-all-my-server-files/* https://github.com/PufferPanel/legacy-forum/discussions/580
/topic/536/pufferpanel-v1-1-0-file-manager https://github.com/PufferPanel/legacy-forum/discussions/581
/topic/536/pufferpanel-v1-1-0-file-manager/* https://github.com/PufferPanel/legacy-forum/discussions/581
/topic/537/error-500 https://github.com/PufferPanel/legacy-forum/discussions/582
/topic/537/error-500/* https://github.com/PufferPanel/legacy-forum/discussions/582
/topic/538/googleapis-slows-down-speed-in-china https://github.com/PufferPanel/legacy-forum/discussions/583
/topic/538/googleapis-slows-down-speed-in-china/* https://github.com/PufferPanel/legacy-forum/discussions/583
/topic/540/error-when-install-on-debian-8-7-mysql-5-7 https://github.com/PufferPanel/legacy-forum/discussions/584
/topic/540/error-when-install-on-debian-8-7-mysql-5-7/* https://github.com/PufferPanel/legacy-forum/discussions/584
/topic/541/error-c https://github.com/PufferPanel/legacy-forum/discussions/585
/topic/541/error-c/* https://github.com/PufferPanel/legacy-forum/discussions/585
/topic/542/how-to-increase-console-buffer https://github.com/PufferPanel/legacy-forum/discussions/586
/topic/542/how-to-increase-console-buffer/* https://github.com/PufferPanel/legacy-forum/discussions/586
/topic/543/spigotmc https://github.com/PufferPanel/legacy-forum/discussions/587
/topic/543/spigotmc/* https://github.com/PufferPanel/legacy-forum/discussions/587
/topic/544/proposal-add-a-section-about-how-to-debug-pufferpanel-and-pufferd-using-error-logs-to-the-documentation https://github.com/PufferPanel/legacy-forum/discussions/588
/topic/544/proposal-add-a-section-about-how-to-debug-pufferpanel-and-pufferd-using-error-logs-to-the-documentation/* https://github.com/PufferPanel/legacy-forum/discussions/588
/topic/545/deleting-users-does-not-appear-to-be-fixed-in-v1-1 https://github.com/PufferPanel/legacy-forum/discussions/589
/topic/545/deleting-users-does-not-appear-to-be-fixed-in-v1-1/* https://github.com/PufferPanel/legacy-forum/discussions/589
/topic/546/feature-discussion-log-in-failed-notification https://github.com/PufferPanel/legacy-forum/discussions/590
/topic/546/feature-discussion-log-in-failed-notification/* https://github.com/PufferPanel/legacy-forum/discussions/590
/topic/548/console-error https://github.com/PufferPanel/legacy-forum/discussions/591
/topic/548/console-error/* https://github.com/PufferPanel/legacy-forum/discussions/591
/topic/549/see-the-serveur-console-in-ssh-root https://github.com/PufferPanel/legacy-forum/discussions/592
/topic/549/see-the-serveur-console-in-ssh-root/* https://github.com/PufferPanel/legacy-forum/discussions/592
/topic/550/how-to-add-my-own-jar https://github.com/PufferPanel/legacy-forum/discussions/593
/topic/550/how-to-add-my-own-jar/* https://github.com/PufferPanel/legacy-forum/discussions/593
/topic/552/installing-pufferpanel-on-ubuntu https://github.com/PufferPanel/legacy-forum/discussions/594
/topic/552/installing-pufferpanel-on-ubuntu/* https://github.com/PufferPanel/legacy-forum/discussions/594
/topic/553/file-manager-1-1-issues-on-remote-servers https://github.com/PufferPanel/legacy-forum/discussions/595
/topic/553/file-manager-1-1-issues-on-remote-servers/* https://github.com/PufferPanel/legacy-forum/discussions/595
/topic/554/bugs-in-1-1 https://github.com/PufferPanel/legacy-forum/discussions/596
/topic/554/bugs-in-1-1/* https://github.com/PufferPanel/legacy-forum/discussions/596
/topic/556/forum-migrated-and-updated https://github.com/PufferPanel/legacy-forum/discussions/597
/topic/556/forum-migrated-and-updated/* https://github.com/PufferPanel/legacy-forum/discussions/597
/topic/557/sponge-server-issues https://github.com/PufferPanel/legacy-forum/discussions/598
/topic/557/sponge-server-issues/* https://github.com/PufferPanel/legacy-forum/discussions/598
/topic/560/post-your-templates https://github.com/PufferPanel/legacy-forum/discussions/599
/topic/560/post-your-templates/* https://github.com/PufferPanel/legacy-forum/discussions/599
/topic/562/a-problem-when-accessing-the-web-page https://github.com/PufferPanel/legacy-forum/discussions/600
/topic/562/a-problem-when-accessing-the-web-page/* https://github.com/PufferPanel/legacy-forum/discussions/600
/topic/563/pufferpanel-v1-1-1-general-bug-fixes https://github.com/PufferPanel/legacy-forum/discussions/601
/topic/563/pufferpanel-v1-1-1-general-bug-fixes/* https://github.com/PufferPanel/legacy-forum/discussions/601
/topic/564/template-creation-guide https://github.com/PufferPanel/legacy-forum/discussions/602
/topic/564/template-creation-guide/* https://github.com/PufferPanel/legacy-forum/discussions/602
/topic/565/the-daemon-does-not-report-it-is-online-functionality-is-reduced-until-it-is-restarted https://github.com/PufferPanel/legacy-forum/discussions/603
/topic/565/the-daemon-does-not-report-it-is-online-functionality-is-reduced-until-it-is-restarted/* https://github.com/PufferPanel/legacy-forum/discussions/603
/topic/566/all-interaction-with-server-is-impossible-after-using-sftp https://github.com/PufferPanel/legacy-forum/discussions/604
/topic/566/all-interaction-with-server-is-impossible-after-using-sftp/* https://github.com/PufferPanel/legacy-forum/discussions/604
/topic/568/pufferpanel-v1-1-2-more-bug-fixes https://github.com/PufferPanel/legacy-forum/discussions/605
/topic/568/pufferpanel-v1-1-2-more-bug-fixes/* https://github.com/PufferPanel/legacy-forum/discussions/605
/topic/569/only-errors-updating-to-1-1-2 https://github.com/PufferPanel/legacy-forum/discussions/606