The only slight tweak I had to make was to enable zlib support in mod_php on Apache.
Very, very impressive.

Get it at, http://www.joomla.org
EXTENDED Indicates that commands should be examined using a
(Alpha/I64 syntax that allows ODS-5 file specifications.
only)
The main differences for DCL when EXTENDED parse rules are in
effect are:
o Arguments to foreign commands are case preserved. You can get
the command string by calling LIB$GET_FOREIGN.
C/C++ programs that use the argc/argv mechanism will have
unquoted arguments in lowercase unless the C Run-Time
Library logical DECC$ARGV_PARSE_STYLE is set to ENABLE. When
DECC$ARGV_PARSE_STYLE is enabled, case is preserved in command
line arguments when the process is set up for extended DCL
parsing using /PARSE_STYLE=EXTENDED.
o Some characters that were previously treated as token
delimiters are no longer delimiters. The pound sign (#),
circumflex (^), and question mark (?) fall into this category.
o A circumflex (^) is an escape character, which can be used to
indicate that the next character in the command string is to
be treated as if it were quoted, thereby losing its syntactic
significance.
EXTENDED parsing also modifies DCL's rules for parsing a
parameter or qualifier that is defined as a file specification
in a command's definition:
o File specifications will not be in uppercase.
o Any number of commas (,) may be placed between directory
delimiters ([] and <>).
o Directory file ID's (DIDs) can be included in the file
specification.
o Any number of periods (.) or semi-colons (;) may be included
in the file specification.
Refer to the HP OpenVMS System Manager's Manual, Volume 1:
Essentials for more information.
Code: Select all
$ cre/dir apache$common:[joomla]
$ set def apache$common:[joomla]
$ unzip "-V" PKG_DISK:[ECOS]JOOMLA_1_0_8-STABLE-FULL_PACKAGE.ZIP;1
$ edit apache$common:[conf]httpd.conf
Code: Select all
Alias /joomla/ "/apache$root/joomla/"
<Directory>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
$ @sys$startup:apache$startup restart
Code: Select all
localhost for Host Name
root as MySQL username
mysqlpwd as MySQL password
joomla as MySQL DB name
jos_ as MySQL table prefix
left "install sample data" checked
Code: Select all
$ edit MYSQL_ROOT:[VMS]my.cnf
Code: Select all
#Use old password encryption method (needed for 4.0 and older clients).
old_password=1
Code: Select all
$ mysqladmin --user=root --pass=mysqlpwd shutdown
$ mysqladmin --user=root --pass=mysqlpwd shutdown
$ mysqladmin --user=root --pass=mysqlpwd ping
Code: Select all
$ @MYSQL_ROOT:[VMS]mysql_startup.com
Code: Select all
$ mysql --user=root --pass=mysqlpwd
mysql> use mysql;
Database changed
mysql> update user set password = old_password('mysqlpwd') where user='root';
Query OK, 2 rows affected (0.11 sec)
Rows matched: 2 Changed: 2 Warnings: 0
mysql> commit;
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.32 sec)
mysql> exit;