autotutorial
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Compressing all images iszes without pluginYes my mistake here
This a guide with the use of two plugins to delete and regenerate thumbnails https://www.pixemweb.com/blog/clean-old-wordpress-thumbnails/ thank @optimizingmatters for your fix, good weekend to you too. 🙂Forum: Fixing WordPress
In reply to: Compressing all images iszes without pluginhttps://wordpress.org/support/topic/broken-links-after-migration-from-wordpress-com/#post-11556577
create a backup of your files, your backup of your database, export your xml file.
Work (compress) your images without changing names.
occasionally install autoptimize plugin which removes unused thumbnails or after the first time you use this plugin add the constant to wp_confing.php https://wordpress.org/support/article/editing-wp-config-php/#cleanup-image-editsForum: Fixing WordPress
In reply to: Locked out completely after installing Easy HTTPS Redirectionit doesn’t matter on the type of certificate but rather if after the correct installation of the certificate your server creates the variable for the wordpress function is_ssl () https://codex.wordpress.org/Function_Reference/is_ssl
If you don’t use plugins you can go back to the http version in your wp-config.php before require_once.define('WP_HOME','http://www.yuordomain.com'); define('WP_SITEURL','http://www.yourdomain.com');without end slash and with the correct domain with or without initial www
Forum: Networking WordPress
In reply to: Sub-domains per language (WordPress)only google adword support can answer that question .. if you ask this, it would be like asking the hairdresser for a kilo of meat instead of the supermarket.
Make sure there are different contents in the different domains otherwise you will get penalties in the SEO ranking.Forum: Fixing WordPress
In reply to: Server capacity in terms of uplaoding images to wordpress..By default WordPress stores the uploads in the year month in the uploads folder, this may be the cause of the slowdown since the server opens that single heavy folder.
https://wordpress.org/support/topic/media-folders-on-the-server/#post-11520434Forum: Fixing WordPress
In reply to: Replicate wordpress on offline staging serverhttps://codex.wordpress.org/Function_Reference/maybe_serialize
In some cases WordPress can serialize the data, as it also matters how long byte it creates problems with a raw search and replacement.
Example s:20 indicates a string 20 bytes long, what happens if I change an old path to the new one but that is different from 20 bytes? Simply the database breaks.
The code statement should not be used without knowing what to do, use plugins that deal with the serialization of objects.Forum: Fixing WordPress
In reply to: Removed /wp from url, can’t edit sitegiving your own directory works from wordpress 3.5 or higher.
posts or articles prior to the move will have the old url from the database you need to replace with the new one via plugin. wp_posts , the path to the upload folder must also be changed to the new oneForum: Localhost Installs
In reply to: Help copying wordpress site to local Lampp serverthe file that you are offered to download is index.php by wordpress but only that your server is not interpreting php.
normally the server needs to read the final .phpForum: Networking WordPress
In reply to: Display same site from two domains on a multisite installexit the wordpress context by creating a othe_folder/text.php code and displaying a connection error.
<?php if(function_exists('mysqli_connect')){ if(!($link = mysqli_connect('localhost','username','password','my_db'))){ die('could not connect: ' . mysqli_connect_error()); } } else { die("don't have mysqli"); } echo 'connect successfully'; mysqli_close($link);Forum: Networking WordPress
In reply to: Display same site from two domains on a multisite installhello, you have a single wp-config.php (only one wordpress installed).
Your MySQL server with the database name and the user you set in wp-config.php?Forum: Fixing WordPress
In reply to: 502 Bad Gateway Error after trying to install SSLI’m glad you solved, the define fits before of
require_once😉Forum: Fixing WordPress
In reply to: wp-cron.php problemHello @lukeau , the problem is that $ crons is created with the first parameter as a boolean value.
I’m sure the text won’t be investigative.
This error, theme, plugin or core WordPress :/
obviously the cron is retrieved from the database, maybe that fake means not to run any cron? Currently I can’t answer.Create your back-up of file ftp and back-up database, do you want to try changing the variable without false?
Forum: Installing WordPress
In reply to: Error establishing database connection – how to proceed nowI understand that there are linguistic problems, but do I execute the query after selecting the database in phpmyadmin? obviously the user jo is interested.
Forum: Fixing WordPress
In reply to: 502 Bad Gateway Error after trying to install SSLhave you configured nginx for the www domain?
have you configured https in wordpress with the www domain?
If it is without www you need to edit in wp-config.php by adding these two constants without final slash before the function phprequiredefine('WP_HOME', 'https://www.yoursite.com'); define('WP_SITEURL', 'https://www.yoursite.com');Forum: Fixing WordPress
In reply to: 502 Bad Gateway Error after trying to install SSLhttps://websiteforstudents.com/switch-wordpress-from-http-to-https-on-ubuntu-with-lets-encrypt-and-nginx/
Originale conf https://github.com/groovemonkey/hands_on_linux-self_hosted_wordpress_for_linux_beginners/blob/master/4-basic-nginx-configuration.md
Or maybe setting for single domain monit.d https://websiteforstudents.com/install-monit-system-monitor-on-ubuntu-18-04-16-04-lts/
Only this# #with ssl { # enable SSL/TLS and set path to server certificate # # pemfile: /etc/ssl/certs/monit.pem # #}Check your pc in the ext folder put your pem certificate file from certbot
Your original monit.d https://github.com/groovemonkey/hands_on_linux-self_hosted_wordpress_for_linux_beginners/blob/master/advanced/monitrc.md