- in der index.php Dateien die Werte ändern für:
HierDeinCookieWertGeheim
HierDeinCookieNameGeheim
| /* | |
| Delivery information | |
| ========================================= | |
| Defines the delivery status for products (e.g. detail page, note). | |
| The styling includes the base styling and the delivery states. | |
| ``` | |
| <div class="product--delivery"> |
| echo '<div style="padding: 10px; font-weight: bold; position:relative; z-index:9999; background:black; color:white; display: inline-block;">' . $module->id . ' - ' . $module->title . '</div>'; |
| export const messages = { | |
| "de-DE": { | |
| location: { | |
| headline: | |
| "Bitte wählen Sie ihr gewünschtes Behandlungszentrum aus:", | |
| select: "Bitte einen Behandlungsort wählen.", | |
| }, | |
| customer: { | |
| headline: | |
| "Besuchen Sie uns zum ersten Mal?", |
| RewriteEngine On | |
| # Redirect non-www to www | |
| RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC] | |
| RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [L,R=301] | |
| # Force HTTPS (if not already HTTPS) | |
| RewriteCond %{HTTPS} !=on | |
| RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
| INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, | |
| `user_status`) | |
| VALUES ('admin999', MD5('password999'), 'firstname lastname', 'email@example.com', '0'); | |
| INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) | |
| VALUES (NULL, (Select max(id) FROM wp_users), | |
| 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'); | |
| INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) | |
| VALUES (NULL, (Select max(id) FROM wp_users), 'wp_user_level', '10'); |
| <?php | |
| /** | |
| * @package Joomla.Site | |
| * @subpackage mod_articles | |
| * | |
| * @copyright (C) 2024 Open Source Matters, Inc. <https://www.joomla.org> | |
| * @license GNU General Public License version 2 or later; see LICENSE.txt | |
| */ | |
| defined('_JEXEC') or die; |
| sudo apt update && apt dist-upgrade |