file compressed the content on single line after upload in wordpress

Caching plugins are complicated beasts. They install a number of components that other plugins typically do not. You can’t just switch them off. For example, the uninstall routine for WP Super Cache is: Turn off caching on the plugin settings page and clear the cache. Deactivate the plugin on the plugins page. Remove the WP_CACHE … Read more

WordPress not syncing with FTP

I think that there is an issue with the filesize upload limit. The size should be below 30M. Follow these steps: Find your php.ini file. Use the following line: post_max_size = 8M upload_max_filesize = 2M If you can’t get to your php.ini file, you can change the filesize upload limit with this plugin.

How to stop repeated hack on header.php of custom theme? [closed]

Check permissions on all WP folders. Check the htaccess file. Delete any unknown files throughout your hosting area. (Carefully.) Change all of your hosting passwords (including FTP accounts; delete any you don’t know). Strong passwords! Reinstall WP (from your admin – Dashboard, Updates). Reinstall all themes (deactivate, uninstall, reinstall, reactivate). Same for plugins (although header.php … Read more

WordPress still requires FTP information

Guess it needs to be said first – it is a bad idea in general to just let anyone that succeeded to trick you into uploading his PHP onto your server to actually be able to write to your code directories. It is double problematic if you let him access to your root credentials and … Read more

Images not showing and plugins not installing on wordpress server move

First thing I would do: In your wp-config.php file, hardcode your new site URL by entering define(‘WP_SITEURL’, ‘http://www.example.com’); define(‘WP_HOME’, ‘http://www.example.com’); After that, have a look at the source code of your pages including images, and verify how the URLs of the the images look like. If they are wrong (relative to localhost?), you may have … Read more