-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config_php.vb
47 lines (35 loc) · 1.68 KB
/
Config_php.vb
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
Public Class Config_php
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Process.Start("apache\conf\httpd.conf")
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Process.Start("apache\conf\extra\httpd-ssl.conf")
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
Process.Start("apache\conf\extra\httpd-server.conf")
End Sub
Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
Process.Start("php\php.ini")
End Sub
Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
Process.Start("phpMyAdmin\config.inc.php")
End Sub
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
Process.Start("Explorer", "apache\")
End Sub
Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
Process.Start("Explorer", "php\")
End Sub
Private Sub Button8_Click(sender As Object, e As EventArgs) Handles Button8.Click
Process.Start("Explorer", "phpMyAdmin\")
End Sub
Private Sub Button9_Click(sender As Object, e As EventArgs) Handles Button9.Click
Process.Start("apache\logs\access.log")
End Sub
Private Sub Button10_Click(sender As Object, e As EventArgs) Handles Button10.Click
Process.Start("apache\logs\error.log")
End Sub
Private Sub Button11_Click(sender As Object, e As EventArgs) Handles Button11.Click
MsgBox("Ove um erro ná nossa plataforma, Infrome-nos o erro.", MsgBoxStyle.Critical, "Erro 404")
End Sub
End Class