autotutorial
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-cron.php problemtechnically if that fake bool is meaningless and is paired with the timestamp it can simply change the break with continue.
This will only execute the cronhooks valid foreach (array) but does not create or modify the cron object in the databaseForum: Installing WordPress
In reply to: Error establishing database connection – how to proceed nowForum: Networking WordPress
In reply to: Problem with New MultisiteThank you for your contribution 🙂
Forum: Fixing WordPress
In reply to: Http main domain is redirecting to my subdomainhttps://www.ssllabs.com/ssltest/analyze.html?d=courtyardplayhouse.com the certificate exists for the domain and all subdomains of courtyardplayhouse.com
can you download filezilla enable hidden files and report the contents of your htaccess?
https://wordpress.org/support/article/changing-file-permissions/#unhide-the-hidden-filesForum: Fixing WordPress
In reply to: Http main domain is redirecting to my subdomainin both domains you use cloudflare, I see a redirect http 301 .. Do you have a redirect for htacces or have you created a page on cloudflare for the redirect?
however I believe that your plugins do not support a different url in which they were born … in other words they only support the url with http.Forum: Networking WordPress
In reply to: Problem with New Multisitethis message was written before your changes read the blog folder for the main site.
https://wordpress.org/support/topic/problem-with-new-multisite/#post-11664332
Now you have only hello-world/ folder… Read your wp-config.php and htaccess https://wordpress.org/support/topic/problem-with-new-multisite/after checking the htaccess and wp-config file which is the multisite configuration make sure you have the same permalink structure in the main site and secondary site … click on save in permalink.
If you still don’t see the theme for the secondary site it’s a nginx redirect problem.- This reply was modified 6 years, 11 months ago by autotutorial.
Forum: Installing WordPress
In reply to: Error establishing database connection – how to proceed nowfrom php 7.1 wordpress only supports the mysqli library.
You have to modify your confuguraziine mysql the problem is there.Modify the MySQL configuration file my.cnf to specify the location of the mysql.socket:
/var/lib/mysql/mysql.sock (your mysql.socket path).
Specify the location of my.socket directly when the connection is established in PHP (official document: mysqli_connect). Such as:
$db = new MySQLi(‘localhost’, ‘root’, ‘root’, ‘my_db’, ‘3306’, ‘/var/lib/mysql/mysql.sock’)
maybe
'localhost:/var/liv/mysql/mysql.sock'
if php and mysql are installed on different machines it can never be localhost.Forum: Networking WordPress
In reply to: Problem with New Multisiteredirection does not work in all cases.
when you want to activate a theme for your secondary site the preview is like that of the primary site.
in the second screenshoot the theme you have is missing.
Ask a clear question to your hosting, does multisite work here?If it is a new site with users who do not use that theme, try to change to twentyseventeen.
note individual sites can also use not pretty permalinks but for multisite you can only use pretty permalinks.
I looked at your main site , secondary site and now uses not pretty permalinks, changes to pretty permalinks.
https://wordpress.org/support/article/multisite-network-administration/#htaccess-and-mod-rewrite- This reply was modified 6 years, 11 months ago by autotutorial.
Forum: Fixing WordPress
In reply to: Failed upgrade deleted my databasewordpress does not create backups you have to use plugins or themes that do it for you, ask your hosting service if they have a backup.
It is more prpbbile that you have been hacked and that the attacker has deleted the database even before updating.Forum: Networking WordPress
In reply to: Problem with New Multisite
Search conf for multisite on su directory and it use helper-nginx plugin.Forum: Fixing WordPress
In reply to: undefined function untrailingslashit()If this function is missing it means that something has not gone the right way, you have to proceed with the manual installation.
Forum: Networking WordPress
In reply to: Problem with New Multisiteyour secondary site can’t find the theme https://www.mediaofflineworkflows.com/legends/wp-content/themes/twentynineteen/style.css?ver=1.4 have you modify the theme?
This without legends folder work it https://www.mediaofflineworkflows.com/wp-content/themes/twentynineteen/style.css?ver=1.4 your nginx configuration is wrongForum: Networking WordPress
In reply to: Problem with New Multisitefrom wordpress 4.5 it is not necessary to use plugins to map the domain.
what settings do you use for permalinks?
For primary site https://www.mediaofflineworkflows.com/blog/hello-world/ and for secondary site https://www.mediaofflineworkflows.com/legends/2019/06/23/hello-world/
I don’t understand why the structure of year month days is missing in the primary site and in the secondary site is present.Forum: Fixing WordPress
In reply to: Compressing all images iszes without pluginYou need to validate your files in the media library, this means using php code or plugins to be recognized by the media library.
In the first link of this post I show you a plugin that does the trick. https://wordpress.org/support/topic/compressing-all-images-iszes-without-plugin/#post-11661410
You have to export, after your export you can compress the images of the upload folder without changing the name and height or width. Finally with the active plugin you can import your xml file.Forum: Fixing WordPress
In reply to: Compressing all images iszes without pluginIt is not possible to use the image library in any other way than by loading through it or exporting now without changing the name or without changing the theme you can try a directly compress the thumbnail in the upload folder, now it importing with the plugin proposed in the first link.
Note* WordPress create file xml with object serialized, I’m not sure if you need to change anything in the string object of the xml file before exporting.Given that the site is new, what problems do you encounter in uploading images that are already compressed?
Wordpress by default keeps the original and modified files. If you change the theme (or use specific plugins) other thumbnails will be created.