autotutorial
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Error establishing a database connection with XAMPPif this also doesn’t work in the host field select localhost instead of any host .. first you have to delete the user and then recreate it
Forum: Fixing WordPress
In reply to: Multisite images not working anymore.sorry I have no experience on old installations the public_html folder is the root in your case. is the site in this path? ^ ([0-9a-zA-Z_-]+/)?site5/files/ Optionally any letter, number, _, – and slash followed site5/files/?
delete your previous htaccess if site5 exists creates a htaccess in the site5 folder.RewriteEngine On RewriteBase /site5/ RewriteRule ^([_0-9a-zA-Z-]+/)?site5/files/(.+) wp-content/blogs.dir/5/files/$2 [L]otherwise for testing insert in your htaccess root (public_html) immediately after RewriteBase /
RewriteRule ^([_0-9a-zA-Z-]+/)?site5/files/(.+) wp-content/blogs.dir/5/files/$2 [L]Forum: Fixing WordPress
In reply to: Can’t edit in WP BackendIt’s a caching problem, contact your hosting asking if it cache somewhere? If you use the classic editor everything works? You need to clear your hosting cache, CDN cache, cache plugin, cpanel cache, your browser.
https://wordpress.org/support/topic/page-post-updating-failed-wordpress-5-2-rest-api-context-query-parameter/Forum: Localhost Installs
In reply to: Error establishing a database connection with XAMPPCreate test.php
<?php $mysqli = new mysqli("127.0.0.1", "hashim", "password", "hashim_wordpress", 3306); if ($mysqli->connect_errno) { echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error; } echo $mysqli->host_info . "\n"; $mysqli->close(); ?>http://yourdomain.com/test.php
Your default port is 3306?
Now delete test.phpForum: Fixing WordPress
In reply to: Problem with FTP (Installing Plugins or Themes)I advise you to download filezilla and use it with passive mode, is the ftp server on a hosting or yours?
if it is yours you must also check if your connection has the door unlocked.Forum: Developing with WordPress
In reply to: wordpress automatic update not workingFor WordPress 5.2 php 5.6.20 or higther.
can you report the error in full?Forum: Fixing WordPress
In reply to: Can’t upgrade to 5.2<?php var_dump(openssl_get_cert_locations()); ?>https://akrabat.com/ssl-certificate-verification-on-php-5-6/
Forum: Fixing WordPress
In reply to: Can’t upgrade to 5.2Create test.php
<?php $conn_id = ftp_ssl_connect('your domain.com',21); $login_result = ftp_login($conn_id, "yourusername", " yourpassword"); if (! $login_result){ die("can't login"); } echo ftp_pwd($conn_id); ftp_close($conn_id); ?>change your port 21 for your secure ftp, your domain without start http and end slash, rename yuorusername, yourpassword.
Delete test.php
if it does not work, check that the certificate is valid.If, unfortunately, you still encounter problems you can choose to change method using constants in the file wp-config.php https://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants
Forum: Fixing WordPress
In reply to: Can’t upgrade to 5.2verify that OpenSSl is installed and enabled in php.ini https://askubuntu.com/questions/323005/php-openssl-extension-has-a-package create test.php
<?php phpinfo(); ?>otherwise it must install OpenSSL and enable it in php.ini
just do this, forget about what I wrote before.Forum: Fixing WordPress
In reply to: Can’t upgrade to 5.2Before backup all file and database
https://shellcreeper.com/how-to-create-valid-ssl-in-localhost-for-xampp/ this is a guide to create a valid certificate on localhost and then choose a domain … I can’t guarantee that the bat file is free from viruses, malware or whatever.
This for multisite https://wordpress.org/support/topic/help-with-multisite-4/#post-11522419
before making changes, can you confirm if the ftps safe connection works? https://github.com/WordPress/WordPress/blob/5.1-branch/wp-admin/includes/class-wp-filesystem-ftpext.php#L64Forum: Fixing WordPress
In reply to: Can’t update all selected plugin onceWhen you need to upgrade the 12 plugins try setting at 40 minutes (2400 seconds)
see you later.Forum: Fixing WordPress
In reply to: Can’t update all selected plugin onceYes 🙂
then it depends if you have to work with a huge amount of data you have to choose the seconds that are most suitable for you .. sometimes some plugins indicate to set to 180 seconds.Forum: Fixing WordPress
In reply to: Multisite images not working anymore.create .htaccess into 5 folder
RewriteEngine On RewriteBase /5/ RewriteRule ^([_0-9a-zA-Z-]+/)?site5/files/(.+) wp-content/blogs.dir/5/files/$2 [L]This rule imposes a redirection from folder 5 and all its subfolders (files).
I’m not sure about the RewriteBase /wp-contet/blogs_dir/5/ or RewriteBase /5/ well if he doesn’t like it with the browser towards http://yourdomain.com/wp-content/blogs_dir/5/ he should give errorr http 500Forum: Fixing WordPress
In reply to: Help: Can’t loginto my knowledge there is no login for wordpress.org instead with wordpress.com via the jetpack login form yes.
currently the source of the login page is the default. (without wordpress.org or wordpress.com).
https://codex.wordpress.org/Editing_wp-config.php#Custom_User_and_Usermeta_Tables
Can you check in the usermeta table who is the administrator?
prefix1_capabilities = a:1:{s:13:"administrator";b:1;} and prefix2_capabilities = a:1:{s:13:"administrator";b:1;}
etc.Site Accelerator (formerly photon)
Jetpack’s Site Accelerator helps your pages load faster by allowing Jetpack to optimize your images and serve your images and static files (like CSS and JavaScript) from our global network of servers.
https://jetpack.com/support/site-accelerator/
Automatic is the wordpress creator also jetpack is managed by automatic, it is hardly plausible an error of conflict between Guterbang and jetpack because they have been working there for two years I am more inclined than you have to proceed to a manual installation. the error you indicate should not happen for this open a ticket on the jetpack support. https://wordpress.org/support/plugin/jetpack/The version of wordpress that bluehost uses is the same as the version you can download from wordpress.org?
I believe there is a conflict with something and that something creates a conflict with jetpack and jetpack creates a conflict with the REST API.