plugin-update-checker
plugin-update-checker copied to clipboard
A custom update checker for WordPress plugins. Useful if you don't want to host your project in the official WP repository, but would still like it to support automatic updates. Despite the name, it a...
There seems to be a minor glitch when using this library and PHP 8.1. On that version, the following deprecation appears: `Deprecated: preg_match(): Passing null to parameter #2 ($subject) of...
please check this i'm new in plugin development thanks ``` require 'plugin-update-checker/plugin-update-checker.php'; $myUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'https://github.com/Jvon550/turnover-calculator/', __FILE__, 'Turnover calculator' ); //Set the branch that contains the stable release. $myUpdateChecker->setBranch('master'); //Optional:...
One of the more common questions I get is "how do I ensure that only users who have a valid license can download updates?". This includes tasks like asking the...
I'm not familiar with this plugin but it seems to tick all my boxes, so thanks YahnisElsts to offer it. One of the things I'm looking for is a way...
For azure devops Before I start I want to give all credits to the original author I don't know where to submit this. Hope everything is cool. I changed/added the...
Hello yahnis, Is it necessary to provide access token key if i am creating private repo? //Optional: If you're using a private repository, specify the access token like this: $myUpdateChecker->setAuthentication('your-token-here');...
Github have relased a new security update, causing any access token that is in a repository to be removed from the accounts (to avoid people from sharing the tokens). But...
I'm deploying a plugin with zips created on a linux box [.zip in linux preserves permissions]. What are the best permission settings to set before I zip? I got "Update...
What's going on? My code is like this `require 'include/update/plugin-update-checker.php'; function UpdateCheck($url,$flag = 'qzdy'){ return Puc_v4_Factory::buildUpdateChecker( 'https://github.com/muchenkezhan/wordpress-qzdy-themes', __FILE__, 'qzdy-theme' ); } switch(_qzdy('qzdy_update_source')){ case 'github': $myUpdateChecker = UpdateCheck('https://github.com/muchenkezhan/wordpress-qzdy-themes','qzdy-theme'); break; case 'qzdy':...
Hi, I tried this with my local and it was working fine until I worked on different branch, when I change my branch to master. It seems doesn't work. can...