Update:Remora Server Requirements: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
= Server Software = | |||
* [http://manual.cakephp.org/chapter/installing Cake requirements] | |||
** Apache 2.0 w/ mod_rewrite | |||
** PHP4 or PHP5 | |||
** RDBMS (MySQL, PostgreSL) | |||
* Remora-specific requirements (for l10n, mostly) | |||
** [http://pear.php.net/package/Translation2/ Translation2] - it's a beta, so you'd have to force-install | |||
** [http://php.osuosl.org/manual/en/ref.gettext.php gettext] | |||
= Installation = | = Installation = | ||
== Permissions == | == Permissions == | ||
* app/webroot/files needs to be writable by apache | * app/webroot/files needs to be writable by apache |
Revision as of 22:14, 12 September 2006
Server Software
- Cake requirements
- Apache 2.0 w/ mod_rewrite
- PHP4 or PHP5
- RDBMS (MySQL, PostgreSL)
- Remora-specific requirements (for l10n, mostly)
- Translation2 - it's a beta, so you'd have to force-install
- gettext
Installation
Permissions
- app/webroot/files needs to be writable by apache
- app/webroot/files/temp needs to be writable by apache
- app/webroot/files/approval needs to be writable by apache
Configuration
Copy app/config/database.php.default to app/config/database.php and modify the default and test databases to be your database, but for the test database use a user with read-only privileges. To create a user with read-only privileges, execute this SQL command after replacing {variables}:
- GRANT SELECT ON {database} TO '{username}'@'localhost' IDENTIFIED BY '{password}';