jzenker88
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Internal Server Error on local MacI found a small mistake. I forgot a ; after one line code in the wp-config.
But now after reloading the site all styles are gone and by adding the /wp-admin I can’t reach the login ore the dashboard.
Forum: Localhost Installs
In reply to: Internal Server Error on local Mac# 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 /wordpress/index/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wordpress/index.php [L] </IfModule> # END WordPress
This is the text/code in the .htaccess
Forum: Localhost Installs
In reply to: Internal Server Error on local MacNow something changed. I get a white screen
Forum: Localhost Installs
In reply to: Internal Server Error on local MacMy code does not work. But thanks for the help.
Forum: Localhost Installs
In reply to: Internal Server Error on local MacSorry for all that. I’ve really never worked with wordpress before. normally I write my html and css files by myself
Forum: Localhost Installs
In reply to: Internal Server Error on local MacI changed the code to
define( 'WP_SITEURL', 'localhost:8888/wordpress' )
Forum: Localhost Installs
In reply to: Internal Server Error on local MacI mean
define( 'WP_SITEURL', 'https://example.com/wordpress' )
Forum: Localhost Installs
In reply to: Internal Server Error on local MacNow I read the document and changed the code
define( ‘WP_SITEURL’, ‘https://example.com/wordpress’ ) to the local address. but nothing happened after reloading the site.
Forum: Localhost Installs
In reply to: Internal Server Error on local MacThanks man
Forum: Localhost Installs
In reply to: Internal Server Error on local MacAnd where do I put the code in the wp-config?
Forum: Localhost Installs
In reply to: Internal Server Error on local MacYes I changes the URL in the settings>general
Forum: Localhost Installs
In reply to: Internal Server Error on local MacIs this the paragraph you mean?
Blog address (URL) Similar to WP_SITEURL, WP_HOME overrides the wp_options table value for home but does not change it in the database. home is the address you want people to type in their browser to reach your WordPress blog. It should include the https:// part and should not have a slash “/” at the end. Adding this in can reduce the number of database calls when loading your site. 1 define( 'WP_HOME', 'https://example.com/wordpress' ); If you are using the technique described in Giving WordPress Its Own Directory then follow the example below. Remember, you will also be placing an index.php in your web-root directory if you use a setting like this. 1 define( 'WP_HOME', 'https://example.com' ); Dynamically set WP_HOME based on $_SERVER[‘HTTP_HOST’] 1 define( 'WP_HOME', 'https://' . $_SERVER['HTTP_HOST'] . '/path/to/wordpress' );
Forum: Localhost Installs
In reply to: Internal Server Error on local MacThe url was localhost:8888/wordpress
and it should be localhost:8888/wordpress/indexForum: Localhost Installs
In reply to: Internal Server Error on local MacI tried to change the url of the main page to the correct one
Forum: Localhost Installs
In reply to: Internal Server Error on local MacThe problem started about 2,5 hours ago