faxuu
Forum Replies Created
-
Yeah I had that documentations, but I had a problem with webhost as well to configure FS_METHOD.
Plugin is working very well for me now.For ppl who would have that problem, the easiest way is set FS_METHOD as ftpext.
Add this on end of wp-config.php file/** FTP Connection - manually added **/ define( 'FS_METHOD', 'ftpext' ); define( 'FTP_USER', 'user' ); define( 'FTP_PASS', 'pass' ); define( 'FTP_HOST', 'hostname' ); //usually localhost:21 define( 'FTP_SSL', true ); //if you have ftp with ssl leave it trueYou should be able to install plugins successfully now.
For linux issues:
Next problem which you can meet is that plugin will give you errors and asking about writable directories and if you are sure that all directories of wordpress has permission is 755 and files permission is 644 then you need to change owner of whole wordpress to user who run your webserver process.chown -R httpd /path/to/web/wordpress
The user ‘httpd’ can be different for you.
Hope it helps.
Regards and thanks for helping me with plugin 🙂
I will response later when I figure out that FS_METHOD..
Notice: Use of undefined constant FS_CHMOD_FILE - assumed 'FS_CHMOD_FILE' in /path/wp-content/plugins/wp-hide-security-enhancer/include/wph.class.php on line 850I have same issue with 850 line on fresh install of WP 5.1.1
Server Apache, PHP 5.6