close #92
parent
0dce5d5374
commit
4d7858b18b
|
@ -65,7 +65,7 @@ To build Docker tagged images:
|
||||||
|
|
||||||
### cPanel
|
### cPanel
|
||||||
|
|
||||||
* Check the [Chevereto cPanel setup](https://v3-docs.chevereto.com/setup/server/cpanel.html).
|
* Check the [Chevereto cPanel setup](https://chevereto-free.github.io/setup/server/cpanel.html).
|
||||||
|
|
||||||
### Composer-based installation
|
### Composer-based installation
|
||||||
|
|
||||||
|
@ -87,10 +87,6 @@ composer create-project rodber/chevereto-free . \
|
||||||
* Download the tagged `$TAG.zip` release artifact
|
* Download the tagged `$TAG.zip` release artifact
|
||||||
* Unzip the release in your target `public` web-server directory
|
* Unzip the release in your target `public` web-server directory
|
||||||
|
|
||||||
## Upgrading
|
|
||||||
|
|
||||||
* Check [UPGRADING](UPGRADING.md)
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright [Rodolfo Berríos Arce](http://rodolfoberrios.com) - [AGPLv3](LICENSE).
|
Copyright [Rodolfo Berríos Arce](http://rodolfoberrios.com) - [AGPLv3](LICENSE).
|
||||||
|
|
|
@ -900,7 +900,7 @@ WHERE NOT EXISTS (SELECT * FROM `%table_prefix%imports` WHERE `import_path`='%ro
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($isDumpUpdate) {
|
if ($isDumpUpdate) {
|
||||||
G\debug('# Dumped update query. https://v3-docs.chevereto.com/setup/update-guide.html#manual-procedure');
|
G\debug('# Dumped update query. https://chevereto-free.github.io/setup/update-guide.html#manual-procedure');
|
||||||
G\debug($sql_update);
|
G\debug($sql_update);
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,7 +76,7 @@ $route = function ($handler) {
|
||||||
'id' => 'upgrade',
|
'id' => 'upgrade',
|
||||||
'url' => 'https://github.com/rodber/chevereto-free/blob/master/UPGRADING.md',
|
'url' => 'https://github.com/rodber/chevereto-free/blob/master/UPGRADING.md',
|
||||||
];
|
];
|
||||||
$handler::setVar('documentationBaseUrl', 'https://v3-docs.chevereto.com/');
|
$handler::setVar('documentationBaseUrl', 'https://chevereto-free.github.io/');
|
||||||
$handler::setVar($route_prefix . '_menu', $route_menu);
|
$handler::setVar($route_prefix . '_menu', $route_menu);
|
||||||
$handler::setVar('tabs', $route_menu);
|
$handler::setVar('tabs', $route_menu);
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Check the custom hooks documentation here: https://v3-docs.chevereto.com/customization/theme.html#custom-hooks
|
Check the custom hooks documentation here: https://chevereto-free.github.io/features/customization/theme.html#custom-hooks
|
|
@ -1 +1 @@
|
||||||
Check the theme overrides documentation here: https://v3-docs.chevereto.com/customization/theme.html#theme-overrides
|
Check the theme overrides documentation here: https://chevereto-free.github.io/features/customization/theme.html#theme-overrides
|
|
@ -81,7 +81,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="clear-both">
|
<div class="clear-both">
|
||||||
<h3><?php _se('Advanced options'); ?></h3>
|
<h3><?php _se('Advanced options'); ?></h3>
|
||||||
<p><?php _se('The plugin has a large set of additional options that allow full customization. You can use custom HTML, CSS, own color palette, set observers and more. Check the %d and the plugin source to get a better idea of these advanced options.', ['%d' => '<a href="https://v3-docs.chevereto.com/features/PUP.html" target="_blank">' . _s('documentation') . '</a>']); ?></p>
|
<p><?php _se('The plugin has a large set of additional options that allow full customization. You can use custom HTML, CSS, own color palette, set observers and more. Check the %d and the plugin source to get a better idea of these advanced options.', ['%d' => '<a href="https://chevereto-free.github.io/features/PUP.html" target="_blank">' . _s('documentation') . '</a>']); ?></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -598,7 +598,7 @@ namespace G {
|
||||||
2 => 'debug @ print',
|
2 => 'debug @ print',
|
||||||
3 => 'debug @ print,`error_log`',
|
3 => 'debug @ print,`error_log`',
|
||||||
];
|
];
|
||||||
$internal_error .= ' [' . $table[$debug_level] . '] - https://v3-docs.chevereto.com/setup/debug.html';
|
$internal_error .= ' [' . $table[$debug_level] . '] - https://chevereto-free.github.io/manual/troubleshooting/debug.html';
|
||||||
set_status_header($internal_code);
|
set_status_header($internal_code);
|
||||||
if (!in_array($debug_level, [0, 1, 2, 3])) {
|
if (!in_array($debug_level, [0, 1, 2, 3])) {
|
||||||
$debug_level = 1;
|
$debug_level = 1;
|
||||||
|
@ -606,7 +606,7 @@ namespace G {
|
||||||
if (in_array($debug_level, [1, 3])) {
|
if (in_array($debug_level, [1, 3])) {
|
||||||
error_log($e);
|
error_log($e);
|
||||||
}
|
}
|
||||||
if (!in_array($debug_level, [2, 3])) { // No print here
|
if (!in_array($debug_level, [2, 3])) {
|
||||||
die($internal_error);
|
die($internal_error);
|
||||||
}
|
}
|
||||||
$message = [$internal_error];
|
$message = [$internal_error];
|
||||||
|
|
Loading…
Reference in New Issue