Jamie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To Find Duplicate Images in Media LibraryThis may work https://ww.wp.xz.cn/plugins/media-deduper/ but I’ve never used it
Forum: Fixing WordPress
In reply to: site wont load – links broken?No, phpMyadmin would be something in your hosting control panel (typically cPanel).
Forum: Fixing WordPress
In reply to: FTP credentials for wordpress Test siteWordPress asks for your FTP credentials when it can’t access the files directly. This could be a file/folder ownership or permission issue.
As a workaround you can put your FTP credentials directly in wp-config.php
define( ‘FTP_USER’, ‘username’ );
define( ‘FTP_PASS’, ‘password’ );
define( ‘FTP_HOST’, ‘ftp.example.org:21’ );http://codex.ww.wp.xz.cn/Editing_wp-config.php#WordPress_Upgrade_Constants
Forum: Fixing WordPress
In reply to: 500 server error on websiteCan you post your error_log? Try copying and pasting it into http://pastie.org and then providing the link here
Forum: Localhost Installs
In reply to: Blank white screen on localhost site after system restart…Chris,
Try temporarily renaming the plugins folder for the site that isn’t working to something like “oldplugins”. If it is a plugin issue, this should resolve things.
If not, I would suggest turning on WP DEBUG in the wp-config.php
by changing the false on this line to true
define('WP_DEBUG', false);Forum: Fixing WordPress
In reply to: site wont load – links broken?Do you have access to phpMyAdmin?
If so, you can edit the URL in the database. Are you familiar with that?
Did you contact your host to see if they had any insight?
Forum: Fixing WordPress
In reply to: CanΘt loginTry to edit wp-config.php. Before saving (or save as) ensure the file encoding is UTF-8, not UTF-8 BOM.
Forum: Fixing WordPress
In reply to: Password ProblemAre you sure your email is correct on your admin user?
Did you check your spam?
(You can change the password by accessing the database via a tool like phpMyAdmin too but you should know what you are doing)
Forum: Fixing WordPress
In reply to: Images from wordpress.com didn't importUse a search and replace plugin like Better Search & Replace π
Forum: Fixing WordPress
In reply to: Background Video FlickerForum: Fixing WordPress
In reply to: Web page descriptions in search resultsI tried it and I don’t see a foreign language. Can you take a screenshot?
Forum: Fixing WordPress
In reply to: Menu Not showing on mobile devicesDoes the same thing happen with all plugins deactivated at the same time? It looks like AutoOptimize is causing an issue so try deactivating that first. If that does not solve it, then deactivate the rest to see if that changes any behavior.
Forum: Fixing WordPress
In reply to: Changes in WordPress editor no longer savingDoes the same thing happen with all plugins temporarily deactivated at the same time?
Forum: Fixing WordPress
In reply to: Repair WordPress installation?When you deactivated all plugins, did you deactivate them all at the same time?
If yes, are you familiar with turning on
WP Debug?