This commit is contained in:
Rodolfo Berrios 2021-12-03 19:14:31 -03:00
parent 0dce5d5374
commit 4d7858b18b
No known key found for this signature in database
GPG Key ID: 3918A8F6B56606B3
7 changed files with 8 additions and 12 deletions

View File

@ -65,7 +65,7 @@ To build Docker tagged images:
### 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
@ -87,10 +87,6 @@ composer create-project rodber/chevereto-free . \
* Download the tagged `$TAG.zip` release artifact
* Unzip the release in your target `public` web-server directory
## Upgrading
* Check [UPGRADING](UPGRADING.md)
## License
Copyright [Rodolfo Berríos Arce](http://rodolfoberrios.com) - [AGPLv3](LICENSE).

View File

@ -900,7 +900,7 @@ WHERE NOT EXISTS (SELECT * FROM `%table_prefix%imports` WHERE `import_path`='%ro
}
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);
die();
}

View File

@ -76,7 +76,7 @@ $route = function ($handler) {
'id' => 'upgrade',
'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('tabs', $route_menu);

View File

@ -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

View File

@ -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

View File

@ -81,7 +81,7 @@
</div>
<div class="clear-both">
<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>

View File

@ -598,7 +598,7 @@ namespace G {
2 => 'debug @ print',
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);
if (!in_array($debug_level, [0, 1, 2, 3])) {
$debug_level = 1;
@ -606,7 +606,7 @@ namespace G {
if (in_array($debug_level, [1, 3])) {
error_log($e);
}
if (!in_array($debug_level, [2, 3])) { // No print here
if (!in_array($debug_level, [2, 3])) {
die($internal_error);
}
$message = [$internal_error];