[limb-svn] r6901 - in 3.x/examples: crud crud/www shop

svn at limb-project.com svn at limb-project.com
Tue Apr 8 10:42:53 MSD 2008


Author: pachanga
Date: 2008-04-08 10:42:51 +0400 (Tue, 08 Apr 2008)
New Revision: 6901
URL: http://fisheye.limb-project.com/changelog/limb/?cs=6901

Modified:
   3.x/examples/crud/INSTALL
   3.x/examples/crud/www/index.php
   3.x/examples/shop/INSTALL
Log:
-- fixing access permissions in INSTALL

Modified: 3.x/examples/crud/INSTALL
===================================================================
--- 3.x/examples/crud/INSTALL	2008-04-08 04:15:50 UTC (rev 6900)
+++ 3.x/examples/crud/INSTALL	2008-04-08 06:42:51 UTC (rev 6901)
@@ -14,7 +14,7 @@
   CRUD application uses SQLite database by default. Make sure: 
   a) You have enabled SQLite support in php.ini.
   b) Database itself and database directory are writable for web server:
-  $ chmod 666 -R /var/www/crud/db
+  $ chmod 777 -R /var/www/crud/db
 
   Using MySQL database
   ------------------------------

Modified: 3.x/examples/crud/www/index.php
===================================================================
--- 3.x/examples/crud/www/index.php	2008-04-08 04:15:50 UTC (rev 6900)
+++ 3.x/examples/crud/www/index.php	2008-04-08 06:42:51 UTC (rev 6901)
@@ -1,19 +1,7 @@
-<?php
-/**
- * Limb Web Application Framework
- *
- * @link http://limb-project.com
- *
- * @copyright  Copyright &copy; 2004-2007 BIT
- * @license    LGPL http://www.gnu.org/copyleft/lesser.html
- * @version    $Id: index.php 5012 2007-02-08 15:38:06Z pachanga $
- * @package    web_app
- */
-
-require_once(dirname(__FILE__) . '/../setup.php');
-require_once('limb/web_app/src/lmbWebApplication.class.php');
-
-$application = new lmbWebApplication();
-$application->process();
-
-?>
+<?php
+
+require_once(dirname(__FILE__) . '/../setup.php');
+require_once('limb/web_app/src/lmbWebApplication.class.php');
+
+$application = new lmbWebApplication();
+$application->process();

Modified: 3.x/examples/shop/INSTALL
===================================================================
--- 3.x/examples/shop/INSTALL	2008-04-08 04:15:50 UTC (rev 6900)
+++ 3.x/examples/shop/INSTALL	2008-04-08 06:42:51 UTC (rev 6901)
@@ -22,7 +22,7 @@
   shop application uses SQLite database by default. Make sure:
   a) You have enabled SQLite support in php.ini.
   b) Database itself and database directory are writable for web server:
-  $ chmod 666 -R /var/www/shop/db
+  $ chmod 777 -R /var/www/shop/db
 
   Using MySQL database
   ------------------------------



More information about the limb-svn mailing list