diff options
| author | Beech Rintoul <beech@FreeBSD.org> | 2008-01-11 04:39:49 +0000 |
|---|---|---|
| committer | Beech Rintoul <beech@FreeBSD.org> | 2008-01-11 04:39:49 +0000 |
| commit | 831caccd0b72a78114ebcb9390a76e5fe5eb1603 (patch) | |
| tree | fa2676ea6b757c4af25e305473774460cf4bcc3e /www/codeigniter-devel/files | |
| parent | - Fix local patch that was producing a crash. (diff) | |
- New port codeigniter-1.5.4
- CodeIgniter is a powerful PHP framework with a very small
footprint, built for PHP coders who need a simple and elegant toolkit
to create full-featured web applications.
PR: ports/119347
Submitted by: Greg Larkin <glarkin@sourcehosting.net> (maintainer)
Approved by: linimon (mentor)
Diffstat (limited to 'www/codeigniter-devel/files')
5 files changed, 85 insertions, 0 deletions
diff --git a/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in new file mode 100644 index 000000000000..ec28ab4ab179 --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in @@ -0,0 +1,19 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +Action php-script %%PHPCGI%% +AddHandler php-script .php + +%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% +Alias /codeigniter %%WWWDIR%% + +%%HASHMARK%%<Directory %%DOCSDIR%%> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Directory> + +<Location /codeigniter> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/codeigniter-development.conf.in b/www/codeigniter-devel/files/codeigniter-development.conf.in new file mode 100644 index 000000000000..b339faae05b5 --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-development.conf.in @@ -0,0 +1,16 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% +Alias /codeigniter %%WWWDIR%% + +%%HASHMARK%%<Directory %%DOCSDIR%%> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Directory> + +<Location /codeigniter> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in new file mode 100644 index 000000000000..7cfee81db010 --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in @@ -0,0 +1,19 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +Action php-script %%PHPCGI%% +AddHandler php-script .php + +DocumentRoot %%WWWDIR%% +%%HASHMARK%%Alias /user_guide %%DOCSDIR%% + +%%HASHMARK%%<Location /user_guide> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Location> + +<Location /> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production.conf.in b/www/codeigniter-devel/files/codeigniter-production.conf.in new file mode 100644 index 000000000000..2b9b97863ccc --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-production.conf.in @@ -0,0 +1,16 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +DocumentRoot %%WWWDIR%% +%%HASHMARK%%Alias /user_guide %%DOCSDIR%% + +%%HASHMARK%%<Location /user_guide> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Location> + +<Location /> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/pkg-message.in b/www/codeigniter-devel/files/pkg-message.in new file mode 100644 index 000000000000..bb521059300d --- /dev/null +++ b/www/codeigniter-devel/files/pkg-message.in @@ -0,0 +1,15 @@ + +********************************************************************* +You have just installed the CodeIgniter web application framework. + +Note that you should restart your Apache web server to ensure that +the CodeIgniter configuration file is loaded. + +Optional post-installation instructions include: + +- Open the %%WWWDIR%%/system/application/config/config.php + file with a text editor and set your base URL. + +- If you intend to use a database, open the + %%WWWDIR%%/system/application/config/database.php + file with a text editor and set your database settings. |
