|
|
@@ -13,79 +13,75 @@ App::uses('Debugger', 'Utility');
|
|
|
?>
|
|
|
<h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2>
|
|
|
<p>
|
|
|
- <a href="http://cakephp.org/changelogs/<?php echo Configure::version(); ?>"><?php echo __d('cake_dev', 'Read the changelog'); ?> </a>
|
|
|
+ <?php echo $this->Html->link(__d('cake_dev', 'Read the changelog'), 'http://cakephp.org/changelogs/' . Configure::version()); ?>
|
|
|
</p>
|
|
|
<?php
|
|
|
if (Configure::read('debug') > 0):
|
|
|
Debugger::checkSecurityKeys();
|
|
|
endif;
|
|
|
?>
|
|
|
+<?php if (file_exists(WWW_ROOT . 'css' . DS . 'cake.generic.css')): ?>
|
|
|
+ <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.'); ?>
|
|
|
+ 1) <a target="_blank" href="http://book.cakephp.org/2.0/en/installation/url-rewriting.html" style="color:#fff;">Help me configure it</a>
|
|
|
+ 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>
|
|
|
+ </p>
|
|
|
+<?php endif; ?>
|
|
|
+<p>
|
|
|
<?php
|
|
|
-if (file_exists(WWW_ROOT . 'css' . DS . 'cake.generic.css')):
|
|
|
-?>
|
|
|
-<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.'); ?>
|
|
|
- 1) <a target="_blank" href="http://book.cakephp.org/2.0/en/installation/url-rewriting.html" style="color:#fff;">Help me configure it</a>
|
|
|
- 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>
|
|
|
-</p>
|
|
|
-<?php
|
|
|
+if (version_compare(PHP_VERSION, '5.2.8', '>=')):
|
|
|
+ echo '<span class="notice success">';
|
|
|
+ echo __d('cake_dev', 'Your version of PHP is 5.2.8 or higher.');
|
|
|
+ echo '</span>';
|
|
|
+else:
|
|
|
+ echo '<span class="notice">';
|
|
|
+ echo __d('cake_dev', 'Your version of PHP is too low. You need PHP 5.2.8 or higher to use CakePHP.');
|
|
|
+ echo '</span>';
|
|
|
endif;
|
|
|
?>
|
|
|
+</p>
|
|
|
<p>
|
|
|
-<?php
|
|
|
- if (version_compare(PHP_VERSION, '5.2.8', '>=')):
|
|
|
+ <?php
|
|
|
+ if (is_writable(TMP)):
|
|
|
echo '<span class="notice success">';
|
|
|
- echo __d('cake_dev', 'Your version of PHP is 5.2.8 or higher.');
|
|
|
+ echo __d('cake_dev', 'Your tmp directory is writable.');
|
|
|
echo '</span>';
|
|
|
else:
|
|
|
echo '<span class="notice">';
|
|
|
- echo __d('cake_dev', 'Your version of PHP is too low. You need PHP 5.2.8 or higher to use CakePHP.');
|
|
|
+ echo __d('cake_dev', 'Your tmp directory is NOT writable.');
|
|
|
echo '</span>';
|
|
|
endif;
|
|
|
-?>
|
|
|
-</p>
|
|
|
-<p>
|
|
|
- <?php
|
|
|
- if (is_writable(TMP)):
|
|
|
- echo '<span class="notice success">';
|
|
|
- echo __d('cake_dev', 'Your tmp directory is writable.');
|
|
|
- echo '</span>';
|
|
|
- else:
|
|
|
- echo '<span class="notice">';
|
|
|
- echo __d('cake_dev', 'Your tmp directory is NOT writable.');
|
|
|
- echo '</span>';
|
|
|
- endif;
|
|
|
?>
|
|
|
</p>
|
|
|
<p>
|
|
|
<?php
|
|
|
- $settings = Cache::settings();
|
|
|
- if (!empty($settings)):
|
|
|
- echo '<span class="notice success">';
|
|
|
- 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');
|
|
|
- echo '</span>';
|
|
|
- else:
|
|
|
- echo '<span class="notice">';
|
|
|
- echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in %s', 'APP/Config/core.php');
|
|
|
- echo '</span>';
|
|
|
- endif;
|
|
|
+ $settings = Cache::settings();
|
|
|
+ if (!empty($settings)):
|
|
|
+ echo '<span class="notice success">';
|
|
|
+ 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');
|
|
|
+ echo '</span>';
|
|
|
+ else:
|
|
|
+ echo '<span class="notice">';
|
|
|
+ echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in %s', 'APP/Config/core.php');
|
|
|
+ echo '</span>';
|
|
|
+ endif;
|
|
|
?>
|
|
|
</p>
|
|
|
<p>
|
|
|
<?php
|
|
|
- $filePresent = null;
|
|
|
- if (file_exists(APP . 'Config' . DS . 'database.php')):
|
|
|
- echo '<span class="notice success">';
|
|
|
- echo __d('cake_dev', 'Your database configuration file is present.');
|
|
|
- $filePresent = true;
|
|
|
- echo '</span>';
|
|
|
- else:
|
|
|
- echo '<span class="notice">';
|
|
|
- echo __d('cake_dev', 'Your database configuration file is NOT present.');
|
|
|
- echo '<br/>';
|
|
|
- echo __d('cake_dev', 'Rename %s to %s', 'APP/Config/database.php.default', 'APP/Config/database.php');
|
|
|
- echo '</span>';
|
|
|
- endif;
|
|
|
+ $filePresent = null;
|
|
|
+ if (file_exists(APP . 'Config' . DS . 'database.php')):
|
|
|
+ echo '<span class="notice success">';
|
|
|
+ echo __d('cake_dev', 'Your database configuration file is present.');
|
|
|
+ $filePresent = true;
|
|
|
+ echo '</span>';
|
|
|
+ else:
|
|
|
+ echo '<span class="notice">';
|
|
|
+ echo __d('cake_dev', 'Your database configuration file is NOT present.');
|
|
|
+ echo '<br/>';
|
|
|
+ echo __d('cake_dev', 'Rename %s to %s', 'APP/Config/database.php.default', 'APP/Config/database.php');
|
|
|
+ echo '</span>';
|
|
|
+ endif;
|
|
|
?>
|
|
|
</p>
|
|
|
<?php
|
|
|
@@ -103,47 +99,48 @@ if (isset($filePresent)):
|
|
|
endif;
|
|
|
endif;
|
|
|
}
|
|
|
-?>
|
|
|
-<p>
|
|
|
- <?php
|
|
|
- if ($connected && $connected->isConnected()):
|
|
|
- echo '<span class="notice success">';
|
|
|
- echo __d('cake_dev', 'CakePHP is able to connect to the database.');
|
|
|
- echo '</span>';
|
|
|
- else:
|
|
|
- echo '<span class="notice">';
|
|
|
- echo __d('cake_dev', 'CakePHP is NOT able to connect to the database.');
|
|
|
- echo '<br /><br />';
|
|
|
- echo $errorMsg;
|
|
|
- echo '</span>';
|
|
|
- endif;
|
|
|
?>
|
|
|
-</p>
|
|
|
-<?php endif; ?>
|
|
|
+ <p>
|
|
|
+ <?php
|
|
|
+ if ($connected && $connected->isConnected()):
|
|
|
+ echo '<span class="notice success">';
|
|
|
+ echo __d('cake_dev', 'CakePHP is able to connect to the database.');
|
|
|
+ echo '</span>';
|
|
|
+ else:
|
|
|
+ echo '<span class="notice">';
|
|
|
+ echo __d('cake_dev', 'CakePHP is NOT able to connect to the database.');
|
|
|
+ echo '<br /><br />';
|
|
|
+ echo $errorMsg;
|
|
|
+ echo '</span>';
|
|
|
+ endif;
|
|
|
+ ?>
|
|
|
+ </p>
|
|
|
<?php
|
|
|
- App::uses('Validation', 'Utility');
|
|
|
- if (!Validation::alphaNumeric('cakephp')):
|
|
|
- echo '<p><span class="notice">';
|
|
|
- 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');
|
|
|
- echo '</span></p>';
|
|
|
- endif;
|
|
|
+endif;
|
|
|
+
|
|
|
+App::uses('Validation', 'Utility');
|
|
|
+if (!Validation::alphaNumeric('cakephp')):
|
|
|
+ echo '<p><span class="notice">';
|
|
|
+ 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');
|
|
|
+ echo '</span></p>';
|
|
|
+endif;
|
|
|
?>
|
|
|
|
|
|
<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/>';
|
|
|
- echo __d('cake_dev', 'You can install it from %s', $this->Html->link('GitHub', 'https://github.com/cakephp/debug_kit'));
|
|
|
- echo '</span>';
|
|
|
- endif;
|
|
|
+ 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/>';
|
|
|
+ echo __d('cake_dev', 'You can install it from %s', $this->Html->link('GitHub', 'https://github.com/cakephp/debug_kit'));
|
|
|
+ echo '</span>';
|
|
|
+ endif;
|
|
|
?>
|
|
|
</p>
|
|
|
|
|
|
@@ -160,20 +157,20 @@ You can also add some CSS styles for your pages at: %s.',
|
|
|
<h3><?php echo __d('cake_dev', 'Getting Started'); ?></h3>
|
|
|
<p>
|
|
|
<?php
|
|
|
- echo $this->Html->link(
|
|
|
- sprintf('<strong>%s</strong> %s', __d('cake_dev', 'New'), __d('cake_dev', 'CakePHP 2.0 Docs')),
|
|
|
- 'http://book.cakephp.org/2.0/en/',
|
|
|
- array('target' => '_blank', 'escape' => false)
|
|
|
- );
|
|
|
+ echo $this->Html->link(
|
|
|
+ sprintf('<strong>%s</strong> %s', __d('cake_dev', 'New'), __d('cake_dev', 'CakePHP 2.0 Docs')),
|
|
|
+ 'http://book.cakephp.org/2.0/en/',
|
|
|
+ array('target' => '_blank', 'escape' => false)
|
|
|
+ );
|
|
|
?>
|
|
|
</p>
|
|
|
<p>
|
|
|
<?php
|
|
|
- echo $this->Html->link(
|
|
|
- __d('cake_dev', 'The 15 min Blog Tutorial'),
|
|
|
- 'http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html',
|
|
|
- array('target' => '_blank', 'escape' => false)
|
|
|
- );
|
|
|
+ echo $this->Html->link(
|
|
|
+ __d('cake_dev', 'The 15 min Blog Tutorial'),
|
|
|
+ 'http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html',
|
|
|
+ array('target' => '_blank', 'escape' => false)
|
|
|
+ );
|
|
|
?>
|
|
|
</p>
|
|
|
|