summaryrefslogtreecommitdiff
path: root/www/cakephp13/files
diff options
context:
space:
mode:
Diffstat (limited to 'www/cakephp13/files')
-rw-r--r--www/cakephp13/files/cakephp-development-cgi.conf.in14
-rw-r--r--www/cakephp13/files/cakephp-development.conf.in11
-rw-r--r--www/cakephp13/files/cakephp-production-cgi.conf.in14
-rw-r--r--www/cakephp13/files/cakephp-production.conf.in11
-rw-r--r--www/cakephp13/files/extra-patch-app__config__core.php11
-rw-r--r--www/cakephp13/files/patch-cake__console__cake21
-rw-r--r--www/cakephp13/files/pkg-message.in10
7 files changed, 0 insertions, 92 deletions
diff --git a/www/cakephp13/files/cakephp-development-cgi.conf.in b/www/cakephp13/files/cakephp-development-cgi.conf.in
deleted file mode 100644
index c1937a147d5a..000000000000
--- a/www/cakephp13/files/cakephp-development-cgi.conf.in
+++ /dev/null
@@ -1,14 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-Action php-script %%PHPCGI%%
-AddHandler php-script .php
-
-Alias /cakephp %%WWWDIR%%
-
-<Location /cakephp>
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
- AllowOverride all
-</Location>
diff --git a/www/cakephp13/files/cakephp-development.conf.in b/www/cakephp13/files/cakephp-development.conf.in
deleted file mode 100644
index 702a8c56fa7f..000000000000
--- a/www/cakephp13/files/cakephp-development.conf.in
+++ /dev/null
@@ -1,11 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-Alias /cakephp %%WWWDIR%%
-
-<Location /cakephp>
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
- AllowOverride all
-</Location>
diff --git a/www/cakephp13/files/cakephp-production-cgi.conf.in b/www/cakephp13/files/cakephp-production-cgi.conf.in
deleted file mode 100644
index 36bc2c4109c1..000000000000
--- a/www/cakephp13/files/cakephp-production-cgi.conf.in
+++ /dev/null
@@ -1,14 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-Action php-script %%PHPCGI%%
-AddHandler php-script .php
-
-DocumentRoot %%WWWDIR%%/app/webroot
-
-<Location />
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
- AllowOverride All
-</Location>
diff --git a/www/cakephp13/files/cakephp-production.conf.in b/www/cakephp13/files/cakephp-production.conf.in
deleted file mode 100644
index c2330ddcef48..000000000000
--- a/www/cakephp13/files/cakephp-production.conf.in
+++ /dev/null
@@ -1,11 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-DocumentRoot %%WWWDIR%%/app/webroot
-
-<Location />
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
- AllowOverride all
-</Location>
diff --git a/www/cakephp13/files/extra-patch-app__config__core.php b/www/cakephp13/files/extra-patch-app__config__core.php
deleted file mode 100644
index e5f26ff9da25..000000000000
--- a/www/cakephp13/files/extra-patch-app__config__core.php
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./app/config/core.php.orig 2008-10-02 00:56:53.000000000 -0400
-+++ ./app/config/core.php 2008-10-08 08:42:15.000000000 -0400
-@@ -56,7 +56,7 @@
- *
- * And uncomment the App.baseUrl below:
- */
-- //Configure::write('App.baseUrl', env('SCRIPT_NAME'));
-+ Configure::write('App.baseUrl', env('SCRIPT_NAME'));
- /**
- * Uncomment the define below to use CakePHP admin routes.
- *
diff --git a/www/cakephp13/files/patch-cake__console__cake b/www/cakephp13/files/patch-cake__console__cake
deleted file mode 100644
index ca268e41f821..000000000000
--- a/www/cakephp13/files/patch-cake__console__cake
+++ /dev/null
@@ -1,21 +0,0 @@
---- ./cake/console/cake.orig 2009-04-21 16:16:45.000000000 -0400
-+++ ./cake/console/cake 2009-04-21 16:16:54.000000000 -0400
-@@ -1,4 +1,4 @@
--#!/bin/bash
-+#!/bin/sh
- ################################################################################
- #
- # Bake is a shell script for running CakePHP bake script
-@@ -24,9 +24,9 @@
- ################################################################################
- clear
-
--LIB=${0/%cake/}
-+LIB=${0%cake}
- APP=`pwd`
-
- exec php -q ${LIB}cake.php -working "${APP}" "$@"
-
--exit;
-\ No newline at end of file
-+exit;
diff --git a/www/cakephp13/files/pkg-message.in b/www/cakephp13/files/pkg-message.in
deleted file mode 100644
index 3fe1c140599c..000000000000
--- a/www/cakephp13/files/pkg-message.in
+++ /dev/null
@@ -1,10 +0,0 @@
-*********************************************************************
-You have just installed the CakePHP web application framework. Please
-consider supporting the project by visiting http://www.cakephp.org/
-and making a donation to the development effort.
-
-Note that you should restart your Apache web server to ensure that
-the CakePHP configuration file is loaded.
-
-Be sure to check the files in %%WWWDIR%%/app/config for
-additional framework configuration options.