Verfasste Forenbeiträge

Ansicht von 10 Antworten - 1 bis 10 (von insgesamt 10)
  • Thread-Starter stormez

    (@stormez)

    Danke erstmal 🙂

    Ich weiss, ich habe aber auch schon auf Stackflow geschaut und bin nicht fündig geworden. Daher bemühe ich mich schon immer im Vorraus. Aber ich glaube das sollte es nun sein 🙂 Ich danke Dir ganz doll 🙂

    Thread-Starter stormez

    (@stormez)

    Vielen Dank das hat mir sehr geholfen und hat funktioniert so wie es soll 🙂

    Eine Frage noch:
    Wie bekomme ich das selbe mit dem Woocomerce benachrichtigungs „Ding“ hin?
    Das es quasi auf Mobil ausgeblendet wird.

    Hier ein Bild, was ich meine ^^

    Thread-Starter stormez

    (@stormez)

    @pixolin das tue ich in die functions.php?
    und ich würde es gerne im Backend auf mobilenfernen geht das?

    Thread-Starter stormez

    (@stormez)

    Ja Danke funktioniert wieder 🙂 Keine Ahnung warum aber nach nem V-Server reboot gings wieder 🙂

    Forum: Allgemeine Fragen
    Als Antwort auf: Plötzlich 500 Error
    Thread-Starter stormez

    (@stormez)

    Vielen Dank für die Hilfe. Ich denke ich werde eh wieder mal ein Problem haben, spätestens dann hört Ihr wieder was von mir 🙂

    Forum: Allgemeine Fragen
    Als Antwort auf: Plötzlich 500 Error
    Thread-Starter stormez

    (@stormez)

    Vielen Dank für die Antwort. Ich hatte mich jetzt dazu entschieden, WP neu aufzusetzen. Ich hatte eine Frische Backup Kopie von gestern, weshalb ich nicht so viel verloren habe. Aber das ist natürlich eine Gute Idee 🙂

    Ist es denn Grundsätzlich möglich das ein ein 500er Fehler kommt aufgrund von Yoast SEO?

    Aber ich denke dann hat sich das Thema oben gegessen 🙂 Daher immer schön Backups machen 🙂

    Forum: Allgemeine Fragen
    Als Antwort auf: Plötzlich 500 Error
    Thread-Starter stormez

    (@stormez)

    <?php
    define( 'WP_MEMORY_LIMIT', '256M' );
    /**
     * 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( 'DB_NAME', 'wp' );
    
    /** MySQL database username */
    define( 'DB_USER', '' );
    
    /** MySQL database password */
    define( 'DB_PASSWORD', '' );
    
    /** MySQL hostname */
    define( 'DB_HOST', '' );
    
    /** Database Charset to use in creating database tables. */
    define( 'DB_CHARSET', '' );
    
    /** The Database Collate type. Don't change this if in doubt. */
    define( 'DB_COLLATE', '' );
    
    /**#@+
     * Authentication Unique Keys and Salts.
     *
     * Change these to different unique phrases!
     * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
     * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
     *
     * @since 2.6.0
     */
    define( 'AUTH_KEY',         '' );
    define( 'SECURE_AUTH_KEY',  '' );
    define( 'LOGGED_IN_KEY',    '' );
    define( 'NONCE_KEY',        '' );
    define( 'AUTH_SALT',        '' );
    define( 'SECURE_AUTH_SALT', '' );
    define( 'LOGGED_IN_SALT',   '' );
    define( 'NONCE_SALT',       '' );
    
    /**#@-*/
    
    /**
     * WordPress Database Table prefix.
     *
     * You can have multiple installations in one database if you give each
     * a unique prefix. Only numbers, letters, and underscores please!
     */
    $table_prefix = 'wp_';
    
    /**
     * 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/
     */
    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', false
    
    /* 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';
    
    define('FS_METHOD','direct');
    # BEGIN WordPress
    # Die Anweisungen (Zeilen) zwischen „BEGIN WordPress“ und „END WordPress“ sind
    # dynamisch generiert und sollten nur über WordPress-Filter geändert werden.
    # Alle Änderungen an den Anweisungen zwischen diesen Markierungen werden überschrieben.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    #StartPagespeedCache#
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType text/css 'access 1 month'
    ExpiresByType text/html 'access 1 month'
    ExpiresByType text/xml 'access 1 month'
    ExpiresByType text/javascript 'access 1 month'
    ExpiresByType text/x-javascript 'access 1 month'
    ExpiresByType image/jpg 'access 1 year'
    ExpiresByType image/jpeg 'access 1 year'
    ExpiresByType image/gif 'access 1 year'
    ExpiresByType image/png 'access 1 year'
    ExpiresByType image/webp 'access 1 year'
    ExpiresByType image/svg+xml 'access plus 1 month'
    ExpiresByType image/x-icon 'access 1 year'
    ExpiresByType video/ogg 'access plus 1 month'
    ExpiresByType audio/ogg 'access plus 1 month'
    ExpiresByType video/mp4 'access plus 1 month'
    ExpiresByType video/webm 'access plus 1 month'
    ExpiresByType application/pdf 'access 1 month'
    ExpiresByType application/x-font-woff 'access 1 month'
    ExpiresByType application/x-font-woff2 'access 1 month'
    ExpiresByType application/vnd.ms-fontobject 'access 1 month'
    ExpiresByType application/x-shockwave-flash 'access 1 month'
    ExpiresByType application/vnd.ms-fontobject 'access 1 month'
    ExpiresByType application/xml 'access 1 month'
    ExpiresByType application/json 'access 1 month'
    ExpiresByType application/rss+xml 'access 1 month'
    ExpiresByType application/rss+xml 'access 1 month'
    ExpiresDefault 'access 2 month'
    </IfModule>
    # EndPagespeedCache#
    #StartPagespeedGzip
    <ifmodule mod_deflate.c>
      AddOutputFilterByType DEFLATE application/javascript
      AddOutputFilterByType DEFLATE application/rss+xml
      AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
      AddOutputFilterByType DEFLATE application/x-font
      AddOutputFilterByType DEFLATE application/x-font-opentype
      AddOutputFilterByType DEFLATE application/x-font-otf
      AddOutputFilterByType DEFLATE application/x-font-truetype
      AddOutputFilterByType DEFLATE application/x-font-ttf
      AddOutputFilterByType DEFLATE application/x-javascript
      AddOutputFilterByType DEFLATE application/xhtml+xml
      AddOutputFilterByType DEFLATE application/xml
      AddOutputFilterByType DEFLATE font/opentype
      AddOutputFilterByType DEFLATE font/otf
      AddOutputFilterByType DEFLATE font/ttf
      AddOutputFilterByType DEFLATE font/woff
      AddOutputFilterByType DEFLATE font/woff2
      AddOutputFilterByType DEFLATE image/svg+xml
      AddOutputFilterByType DEFLATE image/x-icon
      AddOutputFilterByType DEFLATE text/css
      AddOutputFilterByType DEFLATE text/html
      AddOutputFilterByType DEFLATE text/javascript
      AddOutputFilterByType DEFLATE text/plain
      AddOutputFilterByType DEFLATE text/xml
    
      # Remove browser bugs (only needed for really old browsers)
      BrowserMatch ^Mozilla/4 gzip-only-text/html
      BrowserMatch ^Mozilla/4\.0[678] no-gzip
      BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
      Header append Vary User-Agent
    </ifmodule>
    <filesMatch '.(ico|pdf|flv|jpg|jpeg|png|gif|svg|js|css|swf|woff|woff2)$'>
    Header set Cache-Control 'max-age=31557600, public'
    </filesMatch>
    <ifModule mod_headers.c>
    Header set Connection keep-alive
    Header set no-cache '1'
    Header set Set-Cookie 'NO_CACHE=1; path=/;'
    Header set Cache-Control 'max-age=31536000, public'
    </ifModule>
    #ENdPagespeedGzip
    # END WordPress

    Hoffe das passt so

    Thread-Starter stormez

    (@stormez)

    Habe es gefunden woran es gelegen hat den Ansatz von @pixolin habe ich jetzt erst gesehen nach dem ich das Problem behoben habe 🙂

    Lösung: Mit Better Search and Replace so wie oben beschrieben ersetzen. Dann aber zusätzlich noch:

    Dashboard -> Elementor -> Werkzeuge -> URL ersetzen

    Dort dann einfach ins erste Feld „http://deineDoamin.com&#8220; eintragen und ins zweite „https://deineDoamin.com&#8220;. Mit dem Klick auf „URL ersetzen“ hat dann alles funktioniert und die Homepage/landingpage ist gesichert!

    Vielen Dank @hage & @pixolin für die Hilfe!

    Thread-Starter stormez

    (@stormez)

    Komischerweise wird in anderen Browsern wie in Edge oder Chrome es als gesichert angezeigt. Hier ein Screenshot. In meinem Haupt Brwoser Opera GX nicht, Cache habe ich bereits mehrfach gelöscht.

    Thread-Starter stormez

    (@stormez)

    @hage

    Vielen Dank für die Antwort. Ich habe es probiert. Scheint sich aber nichts geänder zu haben. Der Test sagt jetzt auch nichts aus, was mich stutzig macht. Hier der Link

    Vielen Dank

Ansicht von 10 Antworten - 1 bis 10 (von insgesamt 10)