From: alex <bin...@li...> - 2001-07-12 23:07:32
|
alex Thu Jul 12 16:07:22 2001 EDT Modified files: /r2 INSTALL.WIN32 Log: test Commit. Index: r2/INSTALL.WIN32 diff -u r2/INSTALL.WIN32:1.2 r2/INSTALL.WIN32:1.3 --- r2/INSTALL.WIN32:1.2 Wed Jul 11 12:11:05 2001 +++ r2/INSTALL.WIN32 Thu Jul 12 16:07:22 2001 @@ -1,3 +1,4 @@ +Test. By Ronald Tao - 2001/06/30 1. go to http://sources.redhat.com/cygwin/ install the latest cygwin |
From: alex <bin...@li...> - 2001-07-13 19:16:57
|
alex Fri Jul 13 12:16:51 2001 EDT Modified files: /r2 INSTALL.WIN32 Log: Ronald TAO's more detailed windows installation instructions. Index: r2/INSTALL.WIN32 diff -u r2/INSTALL.WIN32:1.3 r2/INSTALL.WIN32:1.4 --- r2/INSTALL.WIN32:1.3 Thu Jul 12 16:07:22 2001 +++ r2/INSTALL.WIN32 Fri Jul 13 12:16:51 2001 @@ -1,12 +1,50 @@ -Test. -By Ronald Tao - 2001/06/30 +binarycloud make/r2 Win32 quick tutorial +------------------------------------------------------------------------------- +1. go to http://sources.redhat.com/cygwin/ install the latest cygwin +package, + up till now, I still not sure which package is a must to install, so try + hard to install all packages, make sure you set the default TEXT FILE +TYPE + to UNIX from the installation tools, sorry :) -1. go to http://sources.redhat.com/cygwin/ install the latest cygwin -package. -2. download the win32 version of PHP for http://www.php.net/ -3. unpack the r2 package in the cygwin environment. -4. set the environment variable BCHOME=c:/path/to/binarycloud -5. edit BCHOME/base/utils/installcode.sh, add #!/bin/sh in the first line -6. edit BCHOME/base/utils/processprepend.php and xml2php.php, replace the -first line with #!c:/path/to/php/php.exe -q -7. then let's make, and it should be fine....... :) +2. get the latest win32 version of PHP for http://www.php.net/, don't ask me + how to install PHP, ok... + +3. get the latest binarycloud r2 package, there are two ways to do so, first + you can download the tarball here, http://www.binarycloud.com/download/, + and unpack it in the cygwin environment, DO NOT UNPACK IT IN NATIVE WIN32 + ENVIRONMENT, or checkout from the latest CVS sourse tree. (I forgot the +a/c + and password for anonymous access, you ask alex, ok...) + +4. set the environment variable BCHOME to c:/path/to/binaryclound (yes, is +the + Windows sytle path, not the UNIX one, check your own), try to type these +in + cygwin shell. + export BCHOME='c:/path/to/binarycloud' + Then try the following to see if it is ok or not. + echo $BCHOME + +You need a text editor you familiar with for the following steps, no metter +it +is vi in cygwin or UltraEdit in Windows, but make sure it can work with UNIX +type EOL, otherwise you will find all the files are very messy. + +5. use a editor to open $BCHOME/base/utils/installcode.sh, add the following + line to the very begining of the file (the first line, ok...). + #!/bin/sh (yes, is UNIX style path this time) + +6. use a editor to open $BCHOME/base/utils/processprepend.php and +xml2php.php + you can see these in the first line, #!/usr/local/php4/bin/php -q, of +both + files, simply replace it by the following line. + #!c:/path/to/php/php.exe -q (yes, is Windows sytle again) + +7. things done, go back to $BCHOME, and type make, everythins should be +fine. +------------------------------------------------------------------------------- +Please send your comment to ron...@ho.... +have fun :) + |
From: alex <bin...@li...> - 2001-08-07 18:10:29
|
alex Tue Aug 7 11:10:23 2001 EDT Modified files: /r2 INSTALL.WIN32 Log: Ronald TAO's Win32 Install instructions, synched from sourceforge. Index: r2/INSTALL.WIN32 diff -u r2/INSTALL.WIN32:1.4 r2/INSTALL.WIN32:1.5 --- r2/INSTALL.WIN32:1.4 Fri Jul 13 12:16:51 2001 +++ r2/INSTALL.WIN32 Tue Aug 7 11:10:23 2001 @@ -1,49 +1,47 @@ binarycloud make/r2 Win32 quick tutorial ------------------------------------------------------------------------------- -1. go to http://sources.redhat.com/cygwin/ install the latest cygwin -package, +1. go to http://sources.redhat.com/cygwin/ install the latest cygwin package, up till now, I still not sure which package is a must to install, so try - hard to install all packages, make sure you set the default TEXT FILE -TYPE + hard to install all packages, make sure you set the default TEXT FILE TYPE to UNIX from the installation tools, sorry :) -2. get the latest win32 version of PHP for http://www.php.net/, don't ask me +2. get the latest win32 version PHP from http://www.php.net/, don't ask me how to install PHP, ok... 3. get the latest binarycloud r2 package, there are two ways to do so, first you can download the tarball here, http://www.binarycloud.com/download/, and unpack it in the cygwin environment, DO NOT UNPACK IT IN NATIVE WIN32 - ENVIRONMENT, or checkout from the latest CVS sourse tree. (I forgot the -a/c - and password for anonymous access, you ask alex, ok...) - -4. set the environment variable BCHOME to c:/path/to/binaryclound (yes, is -the - Windows sytle path, not the UNIX one, check your own), try to type these -in - cygwin shell. + ENVIRONMENT, or checkout from the latest CVS sourse tree, in your cygwin + shell type the following commands, + cvs -d:pserver:ano...@cv...: + /cvsroot/binarycloud login (type it in the same line, use anonymous as + password) + cvs -z3 -d:pserver:ano...@cv...: + /cvsroot/binarycloud co r2 (type it in the same line) + +4. set the environment variable BCHOME to c:/path/to/binaryclound (yes, is the + Windows sytle path with driver letter, not the UNIX one, check your own), + try to type these in cygwin shell. export BCHOME='c:/path/to/binarycloud' Then try the following to see if it is ok or not. echo $BCHOME + it should print out the path you have just set, like + c:/path/to/binarycloud -You need a text editor you familiar with for the following steps, no metter -it +You need a text editor you familiar with for the following steps, no metter it is vi in cygwin or UltraEdit in Windows, but make sure it can work with UNIX type EOL, otherwise you will find all the files are very messy. -5. use a editor to open $BCHOME/base/utils/installcode.sh, add the following +5. use an editor to open $BCHOME/base/utils/installcode.sh, add the following line to the very begining of the file (the first line, ok...). #!/bin/sh (yes, is UNIX style path this time) -6. use a editor to open $BCHOME/base/utils/processprepend.php and -xml2php.php - you can see these in the first line, #!/usr/local/php4/bin/php -q, of -both +6. use an editor to open $BCHOME/base/utils/processprepend.php and xml2php.php + you can see these in the first line, #!/usr/local/php4/bin/php -q, of both files, simply replace it by the following line. #!c:/path/to/php/php.exe -q (yes, is Windows sytle again) -7. things done, go back to $BCHOME, and type make, everythins should be -fine. +7. things done, go back to $BCHOME, and type make, everythings should be fine. ------------------------------------------------------------------------------- Please send your comment to ron...@ho.... have fun :) |
From: alex <bin...@li...> - 2001-08-07 18:43:43
|
alex Tue Aug 7 11:43:38 2001 EDT Modified files: /r2 INSTALL.WIN32 Log: Added Package list. Index: r2/INSTALL.WIN32 diff -u r2/INSTALL.WIN32:1.5 r2/INSTALL.WIN32:1.6 --- r2/INSTALL.WIN32:1.5 Tue Aug 7 11:10:23 2001 +++ r2/INSTALL.WIN32 Tue Aug 7 11:43:38 2001 @@ -46,3 +46,38 @@ Please send your comment to ron...@ho.... have fun :) + + +Complete Cygwin package list: +------------------------------------------------------------------------------- +Autoconf +Automake +Bash +Binutils +Clear +Cygwin (both packages) +Diff +File +Fileutils +Findutils +Grep +gZip +Inetutils +Less +Lynx +Make +Perl +Readline +Reges +Rsync +Sed +Sh-Utils +Tar +Textutils +Time +Unzip +w32API +wGet +Which +--------- +Download is roughly 7.7MB. |
From: alex <bin...@li...> - 2001-08-12 01:29:17
|
alex Sat Aug 11 18:29:11 2001 EDT Modified files: /r2 INSTALL.WIN32 Log: Ronald's updated Win32 Installation instructions. Index: r2/INSTALL.WIN32 diff -u r2/INSTALL.WIN32:1.6 r2/INSTALL.WIN32:1.7 --- r2/INSTALL.WIN32:1.6 Tue Aug 7 11:43:38 2001 +++ r2/INSTALL.WIN32 Sat Aug 11 18:29:11 2001 @@ -42,42 +42,24 @@ #!c:/path/to/php/php.exe -q (yes, is Windows sytle again) 7. things done, go back to $BCHOME, and type make, everythings should be fine. + +Known problem: +1. If you face this problem after type make, + Builder da site + in user + in user/htdocs + in base + in core + in bldr + in init + Could not open file for writing : + in lib + in mgr + in ext + .... + Please turn on "register_argc_argv" in your php.ini + (thx Andris Spruds <li...@ap...> help to solve this problem) ------------------------------------------------------------------------------- Please send your comment to ron...@ho.... have fun :) - - -Complete Cygwin package list: -------------------------------------------------------------------------------- -Autoconf -Automake -Bash -Binutils -Clear -Cygwin (both packages) -Diff -File -Fileutils -Findutils -Grep -gZip -Inetutils -Less -Lynx -Make -Perl -Readline -Reges -Rsync -Sed -Sh-Utils -Tar -Textutils -Time -Unzip -w32API -wGet -Which ---------- -Download is roughly 7.7MB. |
From: alex <bin...@li...> - 2001-08-20 19:36:24
|
alex Mon Aug 20 12:36:19 2001 EDT Modified files: /r2 INSTALL.WIN32 Log: Added Charlie's suggestion re argv. Index: r2/INSTALL.WIN32 diff -u r2/INSTALL.WIN32:1.8 r2/INSTALL.WIN32:1.9 --- r2/INSTALL.WIN32:1.8 Thu Aug 16 10:08:02 2001 +++ r2/INSTALL.WIN32 Mon Aug 20 12:36:19 2001 @@ -32,9 +32,7 @@ it's vi in cygwin or UltraEdit in Windows, but make sure it can work with UNIX type EOL, otherwise you will find all the files are very messy. -5. use an editor to open $BCHOME/base/utils/installcode.sh, add the following - line to the very beginning of the file (the first line, ok...). - #!/bin/sh (yes, is UNIX style path this time) +5. Ensure that register_globals = On; (in php.ini) 6. use an editor to open $BCHOME/base/utils/processprepend.php and xml2php.php you can see these in the first line, #!/usr/local/php4/bin/php -q, of both |