I don’t understand. Two days ago (at time of writing this) you released a new version (again), but “tested up to version” still shows 4.7.5.
Can you please confirm that the new version is in fact tested up to WP 4.8?
]]>Hi!
I posted to your support yesterday about billmate checkout and here it is! Awesome.
However you seem to have forgotten to push the new file to svn class-billmate-checkout.php
. Resulting in a PHP fatal error:
[24-Apr-2017 16:22:47 UTC] PHP Fatal error: require_once(): Failed opening required 'class-billmate-checkout.php' (include_path='.:/usr/share/php') in /srv/www/private/stjarnbarn/htdocs/wp-content/plugins/billmate-payment-gateway-for-woocommerce/gateway-billmate.php on line 319
Here’s a quick command to add new files to a svn repo I use for my own plugins:
svn status | grep "^\?" | sed -e 's/? *//' | sed -e 's/ /\\ /g' | xargs svn add
As per title, plugin uses a deprecated constructor method and throws notices when on PHP7.
To solve the issue is easy.
line 32 of /library/Billmate.php
now reads:
function BillMate($id,$key,$ssl=true,$test=false,$debug=false,$referer=array()){
change it to:
function __construct($id,$key,$ssl=true,$test=false,$debug=false,$referer=array()){
and you’re set.
]]>