Mahdi Akrami
Forum Replies Created
-
I’m very happy that you find the problem.
Thank you very much
sent, thanks for your support.
Asia\Tehran
can you please send me your email so i can send you exported diagnostics file
wp ver: 6.6.2wf ver: 7.11.7php ver: 8.2.20i can give you access to site if you want
Forum: Plugins
In reply to: [Wordfence Security - Firewall, Malware Scan, and Login Security] PHP warningI will be waiting for your update.
Thanks
thank you . how i can contribute to this plugin ?
the error is not clear for me
you say that my site can not request to itself !
but the error says that “test back to this server failed” i think it;s mean that wf server can not request to my site so i open this ticket to get the wf servers ip and put in firewall
i think what you try to say is loopback that is already ok in my sitebut your servers can not request to my server
in the other hand my server can request to your servers
in general the outbound to your server is allow from my firewall but the inbound is not
am i right ?
for now can’t you just send the list of all ips wf use ?
when i disabel server firewall the error is gone
but whene i enable server firewall your servers can not reach my site
i send you the error in prev message
i try to add your ips in server shite list but i think you send requests from different ips
also the url you mention is the current support ticket ! i think you mistake
I have a learning website that has thousands of videos.
I can not upload all videos on the same host and I need to upload videos on a download server
like dl.exam.com.
Currently I do it manually and then paste the upload url in my wordpress site for users
if somehow you connect wordpress media to remote ftp it is a very helpful solution for sites like me .
there is wordpress plugin that is very old and out of support now and has very bugs but it is good for understanding the use case of remote ftp :
https://ww.wp.xz.cn/plugins/hacklog-remote-attachment/- This reply was modified 3 years, 9 months ago by Mahdi Akrami.
if your admin user is deleted use this code for create new admin user.
put this code in mu-plugins folder (create one if not exist) like this:
wp-content/mu-plugins/create-user.php
then refresh your site . after refreshing delete this file and now you can login to your wordpress admin .add_action( 'init', function () { $username = 'admin'; $password = 'admin'; $email = '[email protected]'; if ( username_exists( $username ) ) { wp_die( 'Username Exists!' ); } $user = wp_create_user( $username, $password, $email ); if ( is_wp_error( $user ) ) { wp_die( $user->get_error_message() ); } $user = get_user_by( 'id', $user ); $user->add_cap( 'administrator' ); }, 999 );I think this is because admin email is different from administrator user email .
you can check it before doing reset .
go to general setting and check admin email field is equal to user admin email.it’s seems that i was using old version, thank you.