author | Neal Gompa <neal@enanocms.org> |
Fri, 18 Dec 2009 19:16:05 -0600 | |
changeset 8 | af10a4dbafb4 |
parent 5 | 85800cb04cc5 |
child 10 | 014d58335b6d |
permissions | -rwxr-xr-x |
0 | 1 |
Page custom StackSelectCreate StackSelectLeave " - Select stack" |
2 |
||
3 |
Function StackSelectCreate |
|
4 |
; Only show this page if both WAMPStack and WAPPStack are installed. |
|
5 |
StrCmp $wampstack_installed 0 "" +3 |
|
6 |
Call StackSelectLeave |
|
7 |
Return |
|
8 |
StrCmp $wappstack_installed 0 "" +3 |
|
9 |
Call StackSelectLeave |
|
10 |
Return |
|
11 |
StrCmp $XPUI_ABORTED 1 "" +2 |
|
12 |
Abort |
|
13 |
||
14 |
!insertmacro XPUI_INSTALLOPTIONS_EXTRACT_AS "pages\StackSelect.ini" "StackSelect.ini" |
|
15 |
!insertmacro XPUI_HEADER_TEXT "Select server stack" "Choose which BitNami stack installation you want to use to run $(^Name)." |
|
16 |
!insertmacro XPUI_INSTALLOPTIONS_DISPLAY "StackSelect.ini" |
|
17 |
FunctionEnd |
|
18 |
||
19 |
Function StackSelectLeave |
|
5
85800cb04cc5
Moved around some ExperienceUI directives; fixed missing $XPUI_ABORTED check in StackSelectLeave
Dan
parents:
3
diff
changeset
|
20 |
StrCmp $XPUI_ABORTED 1 0 +2 |
85800cb04cc5
Moved around some ExperienceUI directives; fixed missing $XPUI_ABORTED check in StackSelectLeave
Dan
parents:
3
diff
changeset
|
21 |
Return |
85800cb04cc5
Moved around some ExperienceUI directives; fixed missing $XPUI_ABORTED check in StackSelectLeave
Dan
parents:
3
diff
changeset
|
22 |
|
0 | 23 |
; Here is where we make the final decision on which stack will be used. |
24 |
IfFileExists "$PLUGINSDIR\StackSelect.ini" "" OnlyOneStackInstalled |
|
25 |
||
26 |
!macro ConfigCheck |
|
27 |
IfFileExists "$stack_instdir\apps\${PRODUCT_SHORTNAME}\htdocs\config.php" 0 +3 |
|
3 | 28 |
MessageBox MB_YESNO|MB_ICONQUESTION|MB_DEFBUTTON2 "Setup has found that $(^Name) is already installed on this stack. If you continue and you do not want to delete your existing site, you must provide the database information of the current installation on the next page. Otherwise, the existing installation's configuration file will be deleted and your existing website will be replaced with a fresh one.$\n$\nIf you are upgrading $(^Name), you can safely click Yes below, and enter the database information found in $stack_instdir\apps\${PRODUCT_SHORTNAME}\config.php on the next page.$\n$\nDo you want to continue?" IDYES +2 |
0 | 29 |
Abort |
30 |
!macroend |
|
31 |
||
32 |
; Both stacks are installed; decide based on user selection |
|
33 |
ReadINIStr $0 "$PLUGINSDIR\StackSelect.ini" "Field 1" "State" |
|
34 |
StrCmp $0 1 "" UserSelectedWAPP |
|
35 |
; User selected WAMP |
|
36 |
Call BNSetVarsForWAMP |
|
37 |
!insertmacro ConfigCheck |
|
2
0c0d5dadfca3
Added LockWindow calls to all custom page exit paths to smooth transitions
Dan
parents:
0
diff
changeset
|
38 |
LockWindow on |
0 | 39 |
Return |
40 |
||
41 |
UserSelectedWAPP: |
|
42 |
; User selected WAPP |
|
43 |
Call BNSetVarsForWAPP |
|
44 |
!insertmacro ConfigCheck |
|
2
0c0d5dadfca3
Added LockWindow calls to all custom page exit paths to smooth transitions
Dan
parents:
0
diff
changeset
|
45 |
LockWindow on |
0 | 46 |
Return |
47 |
||
48 |
OnlyOneStackInstalled: |
|
49 |
StrCmp $wampstack_installed 0 +3 |
|
50 |
; MySQL |
|
51 |
Call BNSetVarsForWAMP |
|
52 |
!insertmacro ConfigCheck |
|
2
0c0d5dadfca3
Added LockWindow calls to all custom page exit paths to smooth transitions
Dan
parents:
0
diff
changeset
|
53 |
LockWindow on |
0 | 54 |
Return |
55 |
||
56 |
; PostgreSQL |
|
57 |
Call BNSetVarsForWAPP |
|
58 |
!insertmacro ConfigCheck |
|
2
0c0d5dadfca3
Added LockWindow calls to all custom page exit paths to smooth transitions
Dan
parents:
0
diff
changeset
|
59 |
LockWindow on |
0 | 60 |
Return |
61 |
FunctionEnd |
|
62 |
||
63 |
Function BNSetVarsForWAMP |
|
64 |
StrCpy $stack_type "WAMP" |
|
65 |
StrCpy $stack_instdir "$wampstack_installed" |
|
66 |
StrCpy $db_driver "mysql" |
|
67 |
StrCpy $db_dbmsname "MySQL" |
|
68 |
StrCpy $db_rootuser "root" |
|
69 |
ReadINIStr $db_port "$stack_instdir\properties.ini" "MySQL" "mysql_port" |
|
70 |
||
71 |
StrCpy $stack_portbit "" |
|
72 |
ReadINIStr $0 "$stack_instdir\properties.ini" "Apache" "apache_server_port" |
|
73 |
StrCmp $0 "80" +2 |
|
74 |
StrCpy $stack_portbit ":$0" |
|
75 |
FunctionEnd |
|
76 |
||
77 |
Function BNSetVarsForWAPP |
|
78 |
StrCpy $stack_type "WAPP" |
|
79 |
StrCpy $stack_instdir "$wappstack_installed" |
|
80 |
StrCpy $db_driver "postgresql" |
|
81 |
StrCpy $db_dbmsname "PostgreSQL" |
|
82 |
StrCpy $db_rootuser "postgres" |
|
83 |
; NOTE: WAPPStack doesn't record the port of PostgreSQL - we have to assume the default |
|
84 |
StrCpy $db_port 5432 |
|
85 |
||
86 |
StrCpy $stack_portbit "" |
|
87 |
ReadINIStr $0 "$stack_instdir\properties.ini" "Apache" "apache_server_port" |
|
88 |
StrCmp $0 "80" +2 |
|
89 |
StrCpy $stack_portbit ":$0" |
|
90 |
FunctionEnd |