my site folders
web root at c:\inetpub\websites\mysite
all cake in c:\inetpub\websites\mysite\cake as default structure
--------------------------------
index.php
if (!defined('ROOT')) {
define('ROOT', dirname(__FILE__).'\cake');
}
/**
* The actual directory name for the "app".
*
*/
if (!defined('APP_DIR')) {
define('APP_DIR', basename('app'));
}
/**
* The absolute path to the "cake" directory, WITHOUT a trailing DS.
*
*/
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
define('CAKE_CORE_INCLUDE_PATH', ROOT);
}
--------------------------
check by go to http://localhost/mysite
it's work!
Your tmp directory is writable.
The FileEngine is being used for caching. To change the config edit
APP/config/core.php
Your database configuration file is present.
Cake is able to connect to the database.
but on top of page show this-> Notice (8): Array to string conversion
[CORE\cake\dispatcher.php, line 521]
and detail is
$var = "argv"
$uri = array()
$base = ""
strpos - [internal], line ??
Dispatcher::uri() - CORE\cake\dispatcher.php, line 521
Dispatcher::getUrl() - CORE\cake\dispatcher.php, line 540
Dispatcher::dispatch() - CORE\cake\dispatcher.php, line 117
[main] - C:\Inetpub\websites\mysite\index.php, line 88
how to fix this?
it's just first install.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---