Luis Sacristán
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Atomic Blocks] PHP warning in WP5.3beta1Install WP 5.3 beta1 with Atomic Theme active. And just loading WordPress dashboard I get that waning
Forum: Plugins
In reply to: [SEUR Oficial] Sandbox modeThanks
It would be a nice new feature ??
Forum: Fixing WordPress
In reply to: Cant log inDNS are use to translate domain names to IP addresses. If you get an error it could mean that you configured your DNS wrong or that the DNS are not propagated yet, it can take even 24h.
Forum: Developing with WordPress
In reply to: Query Media files by item nameUse wp_rewrite and the query var paged
Forum: Fixing WordPress
In reply to: Security error on new installBut you said
I have just assigned a new domain to my host
What did you mean?
Forum: Fixing WordPress
In reply to: Security error on new installHi
Install the tool in a directory, p.e.: https://yourdomain.com/sr
Then search your previous URL, p.e.: https://myprevdomain.com and replace for your new one: https://mynewdomain.com
Then try the DRY RUN to check if everything is fine, and finally LIVE RUN to execute the script. It will change the prev URL for the new one in your WordPress database.
Don’t forget to remove the folder (/sr)
Forum: Fixing WordPress
In reply to: Security error on new installHi
It seams you have to change your previous url for the new one.
Use this tools, I always use it when I install WordPress in clients servers.
https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Hope it helps
Forum: Fixing WordPress
In reply to: Weird Login IssueHi
The code your web returns is the wp-admin/index.php file. It seems to be an Apache problem, it doesn’t execute the PHP code, instead it returns it. You should ask your hosting provider.
Hope it helps
Forum: Developing with WordPress
In reply to: Query Media files by item nameThanks Steve, you’re right, it’s guid
Forum: Developing with WordPress
In reply to: Query Media files by item nameHi, you should use $wpdb->get_results, I’m telling you by heart:
$results = $wpdb->get_results("select * from {$wpdb->posts} where post_type = 'attachment' and guidance like '%_post-1.jpg'");
Hope it helps
Forum: Fixing WordPress
In reply to: Hyperlinks in XamppDid you replace using SQL queries?
Be careful, WordPress serialize PHP data and if you just replace URLs it can break this data
Forum: Fixing WordPress
In reply to: Hyperlinks in XamppHi
Install this tool and replace your live URL for the local host one
https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Hope it helps you
Forum: Fixing WordPress
In reply to: Website Content Won’t Load After UpdateHi
The Apache logs depends on your hosting, you should ask them.
For debugging modify your wp-config.php file and add this at the end
define( 'WP_DEBUG', true );
Forum: Fixing WordPress
In reply to: Error when uploading large imagesHi
Perhaps you have to modify your post upload size in your .htaccess file:
php_value post_max_size 20M php_value upload_max_filesize 20M
Hope it helps
Forum: Fixing WordPress
In reply to: Website Content Won’t Load After UpdateHi
Try to check your Apache logs or debug your WordPress too know the error and which plugin is broken your website.
https://codex.www.ads-software.com/Debugging_in_WordPress#WP_DEBUG
Hope it helps