I am idiot hadn’t seen that. Everything ok except that “Remove the files wp-content/advanced-cache.php”
advanced-cache.php doesn’t exist, i deleted everything else, am i ok?
You should be ok. There are some leftovers of wp super cache in .htaccess and wp-config files but you can live with this.
Can you tell exactly wich are they to delete everything? I will try to install it again, and see if the problem is fixed. Will these files be replaced by new ones? if not, can you give me the path to delete everything, just like it was never be installed?
It’s written on the plugin’s page:
If all else fails and your site is broken:
1. Remove the WP_CACHE define from wp-config.php. It looks like define( ‘WP_CACHE’, true ); wp-config.php is in your root directory. Use some Notepad++ to remove the lines. Always back up first!
2. Remove the rules that the plugin wrote to the .htaccess file. This file is also in your root directory. Backup this one too before making any changes
3. Delete the wp-super-cache folder in the plugins folder.
4. Optionally delete advanced-cache.php, wp-cache-config.php and the cache folder in wp-content/.
You can also try to erase everything in .htaccess file and paste this code instead (but there can be some other plugins’ lines in there so be careful).
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress