SFTP define in wp-config.php

Do you mean SFTP or FTPS? For SFTP you need to enable libssh2-php on your server and link it to your PHP and restart your ssh, you can get the downloads here http://www.libssh2.org/ Once you install that you should automatically see SFTP/SSH option in your admin under “Connection”, though I believe there was some recent … Read more

Impossible to index an upload folder with 10k files

Axel, I would recommend getting an SSH connection to your host. This means that you’ll get a command prompt that you can issue commands. Something like this if you have a linux server: … once you have that, simply browse to your directory and gzip/compress the entire uploads directory: tar -zcf mybackup.tar.gz uploads/ Then once … Read more

I want to edit it on my laptop as a child theme and transfer the files to my server. I don’t know how

You’ve got a few hefty questions there so I’ll point you in the right direction. Run wordpress locally. You need MAMP (for mac) or WAMP (for windows). It’ll work just like your live site but the files will be on your computer. More info: https://codex.wordpress.org/Installing_WordPress_Locally_on_Your_Mac_With_MAMP Make a child theme for your site. This will allow … Read more

WordPress 4.4.2 Update not working

I had to change the ownership of the directory Current Ownership was username:www-data Changed it to www=data:www-data after this it’s not asking for my ftp password anymore and update is working with just one click Reference https://wordpress.org/support/topic/plugin-install-asks-for-ftp-details

Website Got Hacked – Fixed – Now Cannot Activate Theme

Issue 1: Look at your dashboard; you’re not logged in as an administrator, and as a result you don’t have the privileges and can’t activate themes or plugins. With adminer or phpmyadmin, check your wp_usermeta table for your user and be sure the wp_capabilities key is for an admin: a:1:{s:13:”administrator”;s:1:”1″;} Or, add a new admin … Read more