autotutorial
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: conflict between wordpress and woocommercehttps://codex.wordpress.org/Installing_WordPress#Using_phpMyAdmin You have to log in with the account that holds all the privileges usually called root, look at the guide indicates 7 change permissions.
in the host field use local and not any hostForum: Fixing WordPress
In reply to: Can’t access to dashboard ( says error too many redirects)to be a multisite it must have htaccess rules and new instructions in the wp-config.php file https://wordpress.org/support/article/create-a-network/ if there are no such rules it means that you use a single installation with a multi-language plugin, I suggest you ask directly in the plugin section so that the developers are aware of it and benefit both you and the whole wordpress community.
Otherwise with other systems you lose all your work created.
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.everything is possible but I have no competence in this.
But if you connect from the beginning in https you can’t see http 500 error.
Use an online websniffer to verify that when you are in https there are no redirects.
https://websniffer.cc/?url=https://stonesorganics.com/Forum: Fixing WordPress
In reply to: Parse error, syntax errorthe plugin is tested with version 5.2.1 try to upgrade php.
WordPress 5.2.x Requirements php 5.6.20 or higher. π
You’re using the one tested up to WordPress 5.2, I don’t know if the two-week update did fix some bugs. http://div12sec10.org/wp-content/plugins/front-end-only-users/readme.txtForum: Fixing WordPress
In reply to: 5.2.1 update – authenticity of update could not be verified.From php 7.2 there is no longer mcrypt instead libsodium is used or a third-party library called sodium_compact https://make.wordpress.org/core/2019/05/17/security-in-5-2/
for optimal performance (speed of signature calculation) we recommend installing the libsodium libraryWhen your WordPress site installs an automatic update, from version 5.2 onwards it will first check for the existence of an x-content-signature header. If one isnβt provided by our update server, your WordPress site will instead query for a filenamehere.sig file and parse it.
This method exists from wordpress 5.2, because it fails I don’t know π
You are not the only one with this mistakeForum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^stonesorganics\.com [NC,OR] RewriteCond %{HTTPS} !^on RewriteRule [^/]? https://stonesorganics.com%{REQUEST_URI} [R=301,L] RewriteRule ^index\.php$ β [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]sorry this code works for me i have no more ideas.
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.yes but I have to understand why .. I copied your code .. It may be because it sees ifmodule RewriteEngine and RewriteBase twice.
try like this# BEGIN WordPress <IfModule mod_rewrite.c> # FOrce ALL to HTTPS RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^stonesorganics\.com [NC,OR] RewriteCond %{HTTPS} !on RewriteRule [^/]? https://stonesorganics.com%{REQUEST_URI} [R=301,L] RewriteRule ^index\.php$ β [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]make sure you nest properly ifmodule, if you have two open only two closed will exist.
- This reply was modified 6 years, 12 months ago by autotutorial.
- This reply was modified 6 years, 12 months ago by autotutorial.
- This reply was modified 6 years, 12 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.<IfModule mod_rewrite.c> # FOrce ALL to HTTPS RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^stonesorganics\.com [NC,OR] RewriteCond %{HTTPS} !on RewriteRule [^/]? https://stonesorganics.com%{REQUEST_URI} [R=301,L] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ β [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>Prove this with ‘on’ lowercase.
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.can you create a test.php page?
<?php print_r($_SERVER);I need the url of this page
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.Exist $_SERVER[‘HTTPS’] =’On’ ?
I edited the code six minutes ago- This reply was modified 6 years, 12 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.Redirect from http://www.forum.yourdomain.com http://forum.yourdomain.com https://www.forum.yourdomain.com
https://forum.yourdomain.com
https://www.yourdomain.com http://yourdomain.comRewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^yourdomain\.com [NC,OR] RewriteCond %{HTTPS} !On RewriteRule [^/]? https://yourdomain.com%{REQUEST_URI} [R=301,L]Sorry π
- This reply was modified 6 years, 12 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.if you have only one channel use the negation also for htaccess is the character! !^yourdomain\.com means if different from yourdomain.com
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.Your server creates the door variable 443 or https on or 1, obviously you must have https already active on your server.
try this script if you can identify what you use for https. test.php
<?php print_r($_SERVER);call test.php from the browser https://yourdomain.com/test.php
The https rules will take precedence over everything, you have to put them just below RewriteBase /
If test.php gives you $_SERVER[‘HTTPS’] = ‘On’;RewriteCond %{HTTPS} !On [OR] RewriteCond %{HTTP_HOST} !^yourdomain\.com [NC] RewriteRule [^/]? https://yourdomain.com%{REQUEST_URI} [R=301,L]Valid for forwarding on a single domain does not use the variable HTTP_HOST simply use your domain, also to control the domain use your domain otherwise even the domains of fourth level are valid example http://www.forum.yourdomain.com or http://forum.yourdomain.com π
Forum: Fixing WordPress
In reply to: Parse error, syntax errorwhen the error is due to a plugin or theme, look for the most appropriate section.
this plugin here https://wordpress.org/support/plugin/front-end-only-users
is pointing you to the error on line 3 on that route.
We do not know the code used by the plugin.Forum: Fixing WordPress
In reply to: Blank pages – No source codeAdd end slash https://vrolijkvakantie.nl/contact/ π