autotutorial
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: problem with permalinkyou can only import existing routes, if you have an example installation of local absolute root /www/home/user/public_html/path_wordpress/ and the absolute remote url (visible to the browser). http://yoursite.com/path_wordpress/
refer to the installation from the path_wordpres/
to make a path compatible from a /path_wordpres/ to root directory, you must manually export and modify the paths (change the path of the content ,inside the exported file) in the new path, before importing.
therefore if the server does not have access to the uploads folder of the domain installed in root you must export your categories modify the path in the new one, download on your PC the content where your uploads reside and add these folders to your installation /path_wordpress/wp-content/uploads/ and modify it in the root path /wp-content/uploads/ in your export and insert the images .
hire a developer from jobact so that everything is working.Forum: Fixing WordPress
In reply to: two websites on the same databaseIf you code the site for accessibility and use compatible plugins for accessibility you can use this plugin in this thread. https://wordpress.org/support/topic/blind-friendly-plugin-for-wordpress/
Forum: Fixing WordPress
In reply to: Corrupted PluginsIf your WordPress installation does not manage CloudFlare you must use this plugin, restore the visitor’s IP, solve the https loop problems (to CloudFlare and the source domain), clear the CloudFlare cache when you modify or change something.
Attention ask your hosting if it is superfluous to install this plugin?
https://wordpress.org/plugins/cloudflare/
also configure your security systems (even plugins to use CloudFlare).
You can create a rule to prevent caching on the wp-admin path, unlike this guide it enables maximum security ( for more info security https://support.cloudflare.com/hc/en-us/articles/200170056 ) and does not touch anything else.
https://jetpack.com/support/getting-started-with-jetpack/configure-jetpack-cloudflare/- This reply was modified 6 years, 5 months ago by autotutorial.
- This reply was modified 6 years, 5 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: Bulgarian Characters Showing Incorrectly in Yoast Breadcrumbshttps://en.wikipedia.org/wiki/Percent-encoding
Start https://osborneslaw.com/bulgarian-personal-injury-solicitors/t%d1%80%d1%83%d0%b4%d0%be%d0%b2%d0%b8-%d0%b7%d0%bb%d0%be%d0%bf%d0%be%d0%bb%d1%83%d0%ba%d0%b8/
Browser decode and show utf-8 https://osborneslaw.com/bulgarian-personal-injury-solicitors/tрудови-злополуки/- This reply was modified 6 years, 5 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: question about PermalinkOpen new ticket here https://wordpress.org/support/plugin/redirection/
you can’t use wordpress variables but you have to use the path or a regex .. write in their support.Sorry I thought it was clear to place my code two lines before the error, enter it before this line. https://github.com/WordPress/WordPress/blob/5.3-branch/wp-includes/canonical.php#L553
What does sub mean, please write the whole domain.
It is not possible to make requests other than http://www.domain1.com when you use them http://www.domain2.comForum: Fixing WordPress
In reply to: problem with permalinkCreate two new categories with content, probably the imported paths still have the old path of the old domain so to check if it is a path problem creates two categories.
Configure your htaccess with RewriteCond if the HTTP_HOST variable does not exist, create it with SetEnv.
Actually you should set up a basic domain (and create the HTTP_HOST variable for that base domain).You can captured $original linea 553 add this?
function var_x_error_log( $objectauto=null){ ob_start(); // start buffer capture var_dump($objectauto); // dump the value $contentsauto = ob_get_contents(); // put the buffer into a variable ob_end_clean(); // end capture error_log( $contentsauto,3,dirname(__FILE__).'/test.log'); // log contents of the result of var_dump( $objectauto) } var_x_error_log($original);Now change with $compare_redirect
this crete test.log into current directoryForum: Fixing WordPress
In reply to: question about PermalinkSource In the picture it is different from this one
/%category%/%post_id%/
you can use rewrite if the url is known, but the plugin with the php code and many categories should avoid the overloading of the rules used in htaccess (if you can’t create a single rule that matches all your categories).Forum: Fixing WordPress
In reply to: URL redirects to doubled versionwe are not done, replace mysite.com in your correct addon.
use the chrome browser’s private mode.
https://mysite.com/mysite.com/index.php
https://mysite.com/mysite.com/
https://mysite.com/index.php
https://mysite.com/mysite.com/wp-json/
to check that the requests use the redirect, use an online sniffer. https://websniffer.cc/?url=https://mysite.com/if something goes wrong replace your htaccess with this code.
# BEGIN WordPress RewriteEngine On RewriteBase /mysite.com/ RewriteRule ^(mysite\.com/)?index\.php$ - [L] RewriteRule ^mysite\.com(/)?$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /mysite.com/index.php [L] # END WordPressThis code can be modified from WordPress, because it is enclosed by the WordPress propositive tags, meaning that it can be changed at any time.
- This reply was modified 6 years, 5 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: URL redirects to doubled versionto process the code I need to know the two domains .. the mismatched redirect is part of the browser cache used. (the value of the url shown to the browser, in wordpress WP_SITEURL makes this distinction).
to verify that I’m on the right track, try visiting with the https protocol and the root.- This reply was modified 6 years, 5 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: URL redirects to doubled version# BEGIN WordPress RewriteEngine On RewriteBase /mysite.com/ RewriteRule ^mysite\.com/index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /mysite.com/index.php [L] # END WordPressyou can try this htaccess for the second installation, of course you substitute mysite.com in your second installation also enter the backslash
\?
Please indicate your two domains?define('WP_SITEURL', 'https://mysite.com'); define('WP_HOME','https://mysite.com/mysite.com');this is a temporary modification if your hosting confirms that the request to https://mysite.com is forwarded to your local path /www/home/user/public_html/mysite.com/ (this is just an example to distinguish the path for the second installation) the error is in the wordpress code and obviously also in the plugin used.
Forum: Fixing WordPress
In reply to: URL redirects to doubled versionI created the path to specify where your wordpress is located (with a path it’s easier to explain), you don’t have to enter the global SERVER variable.
If you use a different prefix for the database, both should work.
Your htaccess has no domain limits but your hosting can impose such limits, ask your hosting for info.
Currently you need to uninstall the plugin residues, I hope you read uninstall.sorry I did not understand, does the mysite.com folder exist for the second installation? If the answer is yes, mysite.com is correct in the url even if you should ask your hosting how to hide this folder in an addon domain. (normally the url starts with root).
let me know what your hosting answers, otherwise you can solve in another way.The real problem is the redirect from the root to the mysite.com folder, can you indicate your two domains? (for privacy you can enter xxxx instead of the real domain, for example installation 1 example.xxxxx.com installation 2 subdomain.xxxxx.com)
- This reply was modified 6 years, 5 months ago by autotutorial. Reason: Edit for missing content
@acurran https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/
WordPress 5.3 use Gutenberng 6.5 build
Download subversion from 6.6 https://wordpress.org/plugins/gutenberg/advanced/ or later, see with which version the problem is solved and open a bug on core.track.wordpress.orgI considered the white screen a server configuration error.
Forum: Fixing WordPress
In reply to: Posts not showing up in their respective categories/menu itemMy browser cannot find your HTTPS IP address.
- This reply was modified 6 years, 5 months ago by autotutorial.