mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 11:58:25 +00:00
96 lines
No EOL
2.7 KiB
PHP
96 lines
No EOL
2.7 KiB
PHP
<?php
|
|
$output = "<h2>Sweet, \"" . Inflector::humanize($app) . "\" got Baked by CakePHP!</h2>\n";
|
|
$output .="
|
|
<?php
|
|
App::uses('Debugger', 'Utility');
|
|
if (Configure::read() > 0):
|
|
Debugger::checkSecurityKeys();
|
|
endif;
|
|
?>
|
|
<p>
|
|
<?php
|
|
if (is_writable(TMP)):
|
|
echo '<span class=\"notice success\">';
|
|
echo __('Your tmp directory is writable.');
|
|
echo '</span>';
|
|
else:
|
|
echo '<span class=\"notice\">';
|
|
echo __('Your tmp directory is NOT writable.');
|
|
echo '</span>';
|
|
endif;
|
|
?>
|
|
</p>
|
|
<p>
|
|
<?php
|
|
\$settings = Cache::settings();
|
|
if (!empty(\$settings)):
|
|
echo '<span class=\"notice success\">';
|
|
echo __('The %s is being used for caching. To change the config edit APP/config/core.php ', '<em>'. \$settings['engine'] . 'Engine</em>');
|
|
echo '</span>';
|
|
else:
|
|
echo '<span class=\"notice\">';
|
|
echo __('Your cache is NOT working. Please check the settings in APP/config/core.php');
|
|
echo '</span>';
|
|
endif;
|
|
?>
|
|
</p>
|
|
<p>
|
|
<?php
|
|
\$filePresent = null;
|
|
if (file_exists(CONFIGS . 'database.php')):
|
|
echo '<span class=\"notice success\">';
|
|
echo __('Your database configuration file is present.');
|
|
\$filePresent = true;
|
|
echo '</span>';
|
|
else:
|
|
echo '<span class=\"notice\">';
|
|
echo __('Your database configuration file is NOT present.');
|
|
echo '<br/>';
|
|
echo __('Rename config/database.php.default to config/database.php');
|
|
echo '</span>';
|
|
endif;
|
|
?>
|
|
</p>
|
|
<?php
|
|
if (isset(\$filePresent)):
|
|
App::uses('ConnectionManager', 'Model');
|
|
try {
|
|
\$connected = ConnectionManager::getDataSource('default');
|
|
} catch (Exception \$e) {
|
|
\$connected = false;
|
|
}
|
|
?>
|
|
<p>
|
|
<?php
|
|
if (\$connected && \$connected->isConnected()):
|
|
echo '<span class=\"notice success\">';
|
|
echo __('Cake is able to connect to the database.');
|
|
echo '</span>';
|
|
else:
|
|
echo '<span class=\"notice\">';
|
|
echo __('Cake is NOT able to connect to the database.');
|
|
echo '</span>';
|
|
endif;
|
|
?>
|
|
</p>
|
|
<?php endif;?>
|
|
<?php
|
|
App::uses('Validation', 'Utility');
|
|
if (!Validation::alphaNumeric('cakephp')) {
|
|
echo '<p><span class=\"notice\">';
|
|
__('PCRE has not been compiled with Unicode support.');
|
|
echo '<br/>';
|
|
__('Recompile PCRE with Unicode support by adding <code>--enable-unicode-properties</code> when configuring');
|
|
echo '</span></p>';
|
|
}
|
|
?>\n";
|
|
$output .= "<h3><?php echo __('Editing this Page') ?></h3>\n";
|
|
$output .= "<p>\n";
|
|
$output .= "<?php\n";
|
|
$output .= "\techo __('To change the content of this page, edit: %s\n";
|
|
$output .= "\t\tTo change its layout, edit: %s\n";
|
|
$output .= "\t\tYou can also add some CSS styles for your pages at: %s',\n";
|
|
$output .= "\t\tAPP . 'views' . DS . 'pages' . DS . 'home.ctp.<br />', APP . 'views' . DS . 'layouts' . DS . 'default.ctp.<br />', APP . 'webroot' . DS . 'css');\n";
|
|
$output .= "?>\n";
|
|
$output .= "</p>\n";
|
|
?>
|