Jackob
Jackob
@YahnisElsts Interesting that this script again is not working :( Pls see now is without "referer" header: ``` ```
@YahnisElsts Yes, I try to make .php file only with JSON output, that works ok But I still want to limit by domains, I don't want to user use my...
@YahnisElsts Something with my script is not possible to do?
In plugin if i put: ``` require 'plugin-update-checker/plugin-update-checker.php'; $myUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'http://example.com/test.php', __FILE__, //Full path to the main plugin file or functions.php. 'test' ); ``` And in that test.php file...
Intersting idea, If I put your code: ``` add_filter('http_request_args', function($args) { $args['user-agent'] = 'WordPress/6.6.6; http://evil.com/'; return $args; }); ``` in my main plugin.php file can that works as well? or...
That will maybe now work because after updating I will lose that "add_filter" in plugin I just need to force that header to show on request to my server test.php......
Yes I know that, but they can unzip my plugin and zip to another wp? and they will get all updates notifications... So I think that will be awesome to...
@YahnisElsts Yes I know, I only want to restrict to someone (non-coder) to cant just zip and unzip my plugin... I will like to implement your code ``` add_filter('http_request_args', function($args)...