Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning
titlePCRE Bug May Cause Problems

There are known issues with earlier versions of the PCRE library that will cause COmanage Registry to be unable to set up its database tables. Version 6.6 and earlier are known to have problems, while versions 8.02 and later are known to work. You can check the version that PHP was built against by running this command:

php -r 'phpinfo();' | grep PCRE

If you are using an old version of PCRE, you'll first need to install a more recent version. Be sure to configure it with the --enable-utf8 --enable-unicode-properties flags. You'll then need to rebuild PHP against the newer version of the PCRE library.

Alternately, you may be able to rebuild PHP using its own internal copy of PCRE.

Web Server Setup

The web server should be configured to deliver content over HTTPS (via TLS/SSL). Make sure the server is capable of rendering PHP and that the mod_rewrite module is enabled.

Install Source

Download the COmanage Registry source files to your selected directory.

Code Block
$ svn co http://anonsvn.internet2.edu/svn/gears/tags/0.2a
$ ln -s 0.2a gears

Web Server Setup

...

Install the COmanage Registry directory wherever you like, and configure your web server to deliver it at a suitable URL (such as https://some-vo.org/registry or https://registry.some-vo.org). Specifically, set the web server to deliver gears/app/webroot as the document root.

...