niedermayer
Verfasste Forenbeiträge
-
Forum: Allgemeine Fragen
Als Antwort auf: Websiten nicht mehr erreichbarEben kam ich einmal bis zur Anmeldeseite, nach Eingabe der Anmeldedaten dann:
Service Unavailable
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
Forum: Allgemeine Fragen
Als Antwort auf: Websiten nicht mehr erreichbar<?php
/**- The base configuration for WordPress
* - The wp-config.php creation script uses this file during the
- installation. You don’t have to use the web site, you can
- copy this file to „wp-config.php“ and fill in the values.
* - This file contains the following configurations:
* - * MySQL settings
- * Secret keys
- * Database table prefix
- * ABSPATH
* - @link https://wordpress.org/support/article/editing-wp-config-php/
* - @package WordPress
*/
// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define( […]/** MySQL database username */
define( […]/** MySQL database password */
define( ‚[…]/** MySQL hostname */
define( ‚ […]/** Database Charset to use in creating database tables. */
define( ‚DB_CHARSET‘, ‚utf8mb4‘ );/** The Database Collate type. Don’t change this if in doubt. */
define( ‚DB_COLLATE‘, “ );/**#@+
[…]
/**
- For developers: WordPress debugging mode.
* - Change this to true to enable the display of notices during development.
- It is strongly recommended that plugin and theme developers use WP_DEBUG
- in their development environments.
* - For information on other constants that can be used for debugging,
- visit the documentation.
* - @link https://wordpress.org/support/article/debugging-in-wordpress/
*/
// Enable WP_DEBUG mode
define( ‚WP_DEBUG‘, true );// Enable Debug logging to the /wp-content/debug.log file
define( ‚WP_DEBUG_LOG‘, true );// Disable display of errors and warnings
define( ‚WP_DEBUG_DISPLAY‘, false );
@ini_set( ‚display_errors‘, 0 );/* That’s all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if ( ! defined( ‚ABSPATH‘ ) ) {
define( ‚ABSPATH‘, DIR . ‚/‘ );
}/** Sets up WordPress vars and included files. */
require_once ABSPATH . ‚wp-settings.php‘;Forum: Allgemeine Fragen
Als Antwort auf: Websiten nicht mehr erreichbarHi, danke für die schnelle Antwort. Die Plugin Ordner rauszunehmen hat nichts geändert und wenn ich die Zeilen für den Debug Mode in die wp-config.php einfüge, bekomme ich nur noch ein „403 forbidden“ im Browser angezeigt.
- The base configuration for WordPress