2008-05-30 11:40:08 +00:00
<?php
/**
*
*
2009-11-06 06:00:11 +00:00
* @link http://cakephp.org CakePHP(tm) Project
2013-02-08 13:41:57 +00:00
* @package app.View.Pages
2008-10-30 17:30:26 +00:00
* @since CakePHP(tm) v 0.10.0.1076
2008-05-30 11:40:08 +00:00
*/
2013-05-30 22:11:14 +00:00
2012-11-03 06:31:31 +00:00
if (!Configure::read('debug')):
2010-12-04 21:34:20 +00:00
throw new NotFoundException();
2009-02-25 19:50:30 +00:00
endif;
2013-09-30 18:45:26 +00:00
2011-03-16 03:48:51 +00:00
App::uses('Debugger', 'Utility');
2008-05-30 11:40:08 +00:00
?>
2011-03-20 15:35:43 +00:00
<h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2>
2013-02-01 20:48:11 +00:00
<p>
<a href="http://cakephp.org/changelogs/<?php echo Configure::version(); ?>"><?php echo __d('cake_dev', 'Read the changelog'); ?> </a>
</p>
2008-05-30 11:40:08 +00:00
<?php
2010-12-08 01:12:50 +00:00
if (Configure::read('debug') > 0):
2011-03-10 04:03:03 +00:00
Debugger::checkSecurityKeys();
2008-05-30 11:40:08 +00:00
endif;
?>
2013-09-30 18:45:26 +00:00
<?php
if (file_exists(WWW_ROOT . 'css' . DS . 'cake.generic.css')):
?>
2011-06-04 22:04:28 +00:00
<p id="url-rewriting-warning" style="background-color:#e32; color:#fff;">
<?php echo __d('cake_dev', 'URL rewriting is not properly configured on your server.'); ?>
2013-02-06 02:14:33 +00:00
1) <a target="_blank" href="http://book.cakephp.org/2.0/en/installation/url-rewriting.html" style="color:#fff;">Help me configure it</a>
2011-10-15 17:06:19 +00:00
2) <a target="_blank" href="http://book.cakephp.org/2.0/en/development/configuration.html#cakephp-core-configuration" style="color:#fff;">I don't / can't use URL rewriting</a>
2011-06-04 22:04:28 +00:00
</p>
2013-09-30 18:45:26 +00:00
<?php
endif;
?>
2011-09-24 14:41:22 +00:00
<p>
2011-10-28 05:01:17 +00:00
<?php
2012-01-26 12:26:42 +00:00
if (version_compare(PHP_VERSION, '5.2.8', '>=')):
2011-09-24 14:41:22 +00:00
echo '<span class="notice success">';
2012-01-26 12:26:42 +00:00
echo __d('cake_dev', 'Your version of PHP is 5.2.8 or higher.');
2011-09-24 14:41:22 +00:00
echo '</span>';
else:
echo '<span class="notice">';
2012-01-26 12:26:42 +00:00
echo __d('cake_dev', 'Your version of PHP is too low. You need PHP 5.2.8 or higher to use CakePHP.');
2011-09-24 14:41:22 +00:00
echo '</span>';
endif;
?>
</p>
2008-05-30 11:40:08 +00:00
<p>
<?php
if (is_writable(TMP)):
echo '<span class="notice success">';
2011-03-20 15:35:43 +00:00
echo __d('cake_dev', 'Your tmp directory is writable.');
2008-05-30 11:40:08 +00:00
echo '</span>';
else:
echo '<span class="notice">';
2011-03-20 15:35:43 +00:00
echo __d('cake_dev', 'Your tmp directory is NOT writable.');
2008-05-30 11:40:08 +00:00
echo '</span>';
endif;
?>
</p>
<p>
<?php
$settings = Cache::settings();
if (!empty($settings)):
echo '<span class="notice success">';
2013-09-30 18:45:26 +00:00
echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit %s', '<em>'. $settings['engine'] . 'Engine</em>', 'APP/Config/core.php');
2008-05-30 11:40:08 +00:00
echo '</span>';
else:
echo '<span class="notice">';
2013-09-30 18:45:26 +00:00
echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in %s', 'APP/Config/core.php');
2008-05-30 11:40:08 +00:00
echo '</span>';
endif;
?>
</p>
<p>
<?php
$filePresent = null;
2011-05-16 06:41:25 +00:00
if (file_exists(APP . 'Config' . DS . 'database.php')):
2008-05-30 11:40:08 +00:00
echo '<span class="notice success">';
2011-03-20 15:35:43 +00:00
echo __d('cake_dev', 'Your database configuration file is present.');
2008-05-30 11:40:08 +00:00
$filePresent = true;
echo '</span>';
else:
echo '<span class="notice">';
2011-03-20 15:35:43 +00:00
echo __d('cake_dev', 'Your database configuration file is NOT present.');
2008-05-30 11:40:08 +00:00
echo '<br/>';
2013-09-30 18:45:26 +00:00
echo __d('cake_dev', 'Rename %s to %s', 'APP/Config/database.php.default', 'APP/Config/database.php');
2008-05-30 11:40:08 +00:00
echo '</span>';
endif;
?>
</p>
<?php
if (isset($filePresent)):
2010-12-08 00:29:07 +00:00
App::uses('ConnectionManager', 'Model');
2011-01-13 01:08:34 +00:00
try {
2011-01-22 05:30:15 +00:00
$connected = ConnectionManager::getDataSource('default');
2011-11-12 04:04:54 +00:00
} catch (Exception $connectionError) {
2011-01-13 01:08:34 +00:00
$connected = false;
2013-01-11 13:11:29 +00:00
$errorMsg = $connectionError->getMessage();
2013-08-10 22:36:00 +00:00
if (method_exists($connectionError, 'getAttributes')):
2013-01-11 13:11:29 +00:00
$attributes = $connectionError->getAttributes();
2013-08-10 22:36:00 +00:00
if (isset($errorMsg['message'])):
2013-01-11 13:11:29 +00:00
$errorMsg .= '<br />' . $attributes['message'];
2013-08-10 22:36:00 +00:00
endif;
endif;
2011-01-13 01:08:34 +00:00
}
2008-05-30 11:40:08 +00:00
?>
<p>
<?php
2010-12-08 00:29:07 +00:00
if ($connected && $connected->isConnected()):
2008-05-30 11:40:08 +00:00
echo '<span class="notice success">';
2013-10-09 23:38:16 +00:00
echo __d('cake_dev', 'CakePHP is able to connect to the database.');
2008-05-30 11:40:08 +00:00
echo '</span>';
else:
echo '<span class="notice">';
2013-10-09 23:38:16 +00:00
echo __d('cake_dev', 'CakePHP is NOT able to connect to the database.');
2011-11-12 04:04:54 +00:00
echo '<br /><br />';
2013-01-11 13:11:29 +00:00
echo $errorMsg;
2008-05-30 11:40:08 +00:00
echo '</span>';
endif;
?>
</p>
2012-11-03 06:31:31 +00:00
<?php endif; ?>
2011-03-16 03:48:51 +00:00
<?php
App::uses('Validation', 'Utility');
2013-08-10 22:36:00 +00:00
if (!Validation::alphaNumeric('cakephp')):
2011-03-16 03:48:51 +00:00
echo '<p><span class="notice">';
2012-02-11 08:23:46 +00:00
echo __d('cake_dev', 'PCRE has not been compiled with Unicode support.');
echo '<br/>';
echo __d('cake_dev', 'Recompile PCRE with Unicode support by adding <code>--enable-unicode-properties</code> when configuring');
2011-03-16 03:48:51 +00:00
echo '</span></p>';
2013-08-10 22:36:00 +00:00
endif;
2011-03-16 03:48:51 +00:00
?>
2012-11-03 06:31:31 +00:00
<p>
<?php
if (CakePlugin::loaded('DebugKit')):
echo '<span class="notice success">';
echo __d('cake_dev', 'DebugKit plugin is present');
echo '</span>';
else:
echo '<span class="notice">';
echo __d('cake_dev', 'DebugKit is not installed. It will help you inspect and debug different aspects of your application.');
echo '<br/>';
2013-10-24 10:59:52 +00:00
echo __d('cake_dev', 'You can install it from %s', $this->Html->link('GitHub', 'https://github.com/cakephp/debug_kit'));
2012-11-03 06:31:31 +00:00
echo '</span>';
endif;
?>
</p>
2011-03-20 15:35:43 +00:00
<h3><?php echo __d('cake_dev', 'Editing this Page'); ?></h3>
2008-05-30 11:40:08 +00:00
<p>
<?php
2013-09-30 18:45:26 +00:00
echo __d('cake_dev', 'To change the content of this page, edit: %s.<br />
To change its layout, edit: %s.<br />
You can also add some CSS styles for your pages at: %s.',
'APP/View/Pages/home.ctp', 'APP/View/Layouts/default.ctp', 'APP/webroot/css');
2008-05-30 11:40:08 +00:00
?>
</p>
2009-11-04 03:40:36 +00:00
2011-03-20 15:35:43 +00:00
<h3><?php echo __d('cake_dev', 'Getting Started'); ?></h3>
2008-05-30 11:40:08 +00:00
<p>
2009-11-04 03:40:36 +00:00
<?php
echo $this->Html->link(
2011-10-25 16:36:13 +00:00
sprintf('<strong>%s</strong> %s', __d('cake_dev', 'New'), __d('cake_dev', 'CakePHP 2.0 Docs')),
2011-10-15 17:06:19 +00:00
'http://book.cakephp.org/2.0/en/',
2009-11-04 03:40:36 +00:00
array('target' => '_blank', 'escape' => false)
);
?>
2008-12-25 18:02:06 +00:00
</p>
<p>
2009-11-04 03:40:36 +00:00
<?php
echo $this->Html->link(
2011-03-20 15:35:43 +00:00
__d('cake_dev', 'The 15 min Blog Tutorial'),
2011-10-15 17:06:19 +00:00
'http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html',
2009-11-04 03:40:36 +00:00
array('target' => '_blank', 'escape' => false)
);
?>
2008-05-30 11:40:08 +00:00
</p>
2009-11-04 03:40:36 +00:00
2012-11-03 06:31:31 +00:00
<h3><?php echo __d('cake_dev', 'Official Plugins'); ?></h3>
<p>
<ul>
<li>
<?php echo $this->Html->link('DebugKit', 'https://github.com/cakephp/debug_kit') ?>:
<?php echo __d('cake_dev', 'provides a debugging toolbar and enhanced debugging tools for CakePHP applications.'); ?>
</li>
<li>
<?php echo $this->Html->link('Localized', 'https://github.com/cakephp/localized') ?>:
<?php echo __d('cake_dev', 'contains various localized validation classes and translations for specific countries'); ?>
</li>
</ul>
</p>
2013-10-29 02:14:50 +00:00
<h3><?php echo __d('cake_dev', 'More about CakePHP'); ?></h3>
2008-05-30 11:40:08 +00:00
<p>
2011-03-20 15:35:43 +00:00
<?php echo __d('cake_dev', 'CakePHP is a rapid development framework for PHP which uses commonly known design patterns like Active Record, Association Data Mapping, Front Controller and MVC.'); ?>
2008-05-30 11:40:08 +00:00
</p>
<p>
2011-03-20 15:35:43 +00:00
<?php echo __d('cake_dev', 'Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility.'); ?>
2008-05-30 11:40:08 +00:00
</p>
2009-11-04 03:40:36 +00:00
2008-05-30 11:40:08 +00:00
<ul>
2013-10-24 10:59:52 +00:00
<li><a href="http://cakephp.org">CakePHP</a>
2011-03-20 15:35:43 +00:00
<ul><li><?php echo __d('cake_dev', 'The Rapid Development Framework'); ?></li></ul></li>
<li><a href="http://book.cakephp.org"><?php echo __d('cake_dev', 'CakePHP Documentation'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'Your Rapid Development Cookbook'); ?></li></ul></li>
2013-09-30 18:45:26 +00:00
<li><a href="http://api.cakephp.org"><?php echo __d('cake_dev', 'CakePHP API'); ?> </a>
2013-10-24 10:59:52 +00:00
<ul><li><?php echo __d('cake_dev', 'Quick API Reference'); ?></li></ul></li>
2011-03-20 15:35:43 +00:00
<li><a href="http://bakery.cakephp.org"><?php echo __d('cake_dev', 'The Bakery'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'Everything CakePHP'); ?></li></ul></li>
2013-10-24 10:59:52 +00:00
<li><a href="http://plugins.cakephp.org"><?php echo __d('cake_dev', 'CakePHP Plugins'); ?> </a>
2012-11-03 06:31:31 +00:00
<ul><li><?php echo __d('cake_dev', 'A comprehensive list of all CakePHP plugins created by the community'); ?></li></ul></li>
2013-10-24 10:59:52 +00:00
<li><a href="http://community.cakephp.org"><?php echo __d('cake_dev', 'CakePHP Community Center'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'Everything related to the CakePHP community in one place'); ?></li></ul></li>
2013-06-25 20:58:30 +00:00
<li><a href="https://groups.google.com/group/cake-php"><?php echo __d('cake_dev', 'CakePHP Google Group'); ?> </a>
2011-03-20 15:35:43 +00:00
<ul><li><?php echo __d('cake_dev', 'Community mailing list'); ?></li></ul></li>
2008-05-30 11:40:08 +00:00
<li><a href="irc://irc.freenode.net/cakephp">irc.freenode.net #cakephp</a>
2011-03-20 15:35:43 +00:00
<ul><li><?php echo __d('cake_dev', 'Live chat about CakePHP'); ?></li></ul></li>
2013-06-25 20:58:30 +00:00
<li><a href="https://github.com/cakephp/"><?php echo __d('cake_dev', 'CakePHP Code'); ?> </a>
2013-10-24 13:51:59 +00:00
<ul><li><?php echo __d('cake_dev', 'Find the CakePHP code on GitHub and contribute to the framework'); ?></li></ul></li>
2013-10-24 10:59:52 +00:00
<li><a href="https://github.com/cakephp/cakephp/issues"><?php echo __d('cake_dev', 'CakePHP Issues'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'CakePHP Issues'); ?></li></ul></li>
<li><a href="https://github.com/cakephp/cakephp/wiki#roadmaps"><?php echo __d('cake_dev', 'CakePHP Roadmaps'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'CakePHP Roadmaps'); ?></li></ul></li>
<li><a href="http://training.cakephp.org"><?php echo __d('cake_dev', 'Training'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'Join a live session and get skilled with the framework'); ?></li></ul></li>
<li><a href="http://cakefest.org"><?php echo __d('cake_dev', 'CakeFest'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'Don\'t miss our annual CakePHP conference'); ?></li></ul></li>
<li><a href="http://cakefoundation.org"><?php echo __d('cake_dev', 'Cake Software Foundation'); ?> </a>
<ul><li><?php echo __d('cake_dev', 'Promoting development related to CakePHP'); ?></li></ul></li>
2013-02-06 02:14:33 +00:00
</ul>