MyBB Community Forums

Full Version: CoderMe Donation v6.0.0
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
(2018-09-13, 02:11 PM)tera Wrote: [ -> ]
(2018-09-11, 11:35 AM)pietrek Wrote: [ -> ]Hello.

Tell me how to improve this beginning of the progress bar? I marked the fragment in red.
According to me, it should not be so exploded.

Hello

Please set  the Donation bar width to the value 851/605

It does not matter if I give the default size 851/605 or change it to my 851/500 it always shows the same.
(2018-09-13, 02:11 PM)tera Wrote: [ -> ]
(2018-09-11, 11:35 AM)pietrek Wrote: [ -> ]Hello.

Tell me how to improve this beginning of the progress bar? I marked the fragment in red.
According to me, it should not be so exploded.

Hello

Please set  the Donation bar width to the value 851/605

We have been waiting for you for 2 months to address this issue that was brought up with my admin at Luxor Forums.

Donations Issue On Github

We had to deactivate the plugin due to this issue.

Can you look at this and let us know either in this thread or by email how to solve this issue?
(2018-09-13, 03:22 PM)pietrek Wrote: [ -> ]It does not matter if I give the default size 851/605 or change it to my 851/500 it always shows the same.


Ok, then backup your templates, do deactivate the plugin then reactivate, this will reset templates to its original state, all modifications on plugin templates will be lost.


(2018-09-14, 07:42 PM)Serpius Wrote: [ -> ]We have been waiting for you for 2 months to address this issue that was brought up with my admin at Luxor Forums.

Donations Issue On Github

We had to deactivate the plugin due to this issue.

Can you look at this and let us know either in this thread or by email how to solve this issue?

Pardon, I thought that discord-webhook-for-mybb's author already told you how to fix it, anyway the solution was mentioned at github on June 12 , hereis once again:

Quote:Replace 'require_once' with 'include_once' in inc/plugins/naoardonate/loader.php
(2018-09-18, 07:28 AM)tera Wrote: [ -> ]
(2018-09-14, 07:42 PM)Serpius Wrote: [ -> ]We have been waiting for you for 2 months to address this issue that was brought up with my admin at Luxor Forums.

Donations Issue On Github

We had to deactivate the plugin due to this issue.

Can you look at this and let us know either in this thread or by email how to solve this issue?

Pardon, I thought that discord-webhook-for-mybb's author already told you how to fix it, anyway the solution was mentioned at github on June 12 , hereis once again:

Quote:Replace 'require_once' with 'include_once' in inc/plugins/naoardonate/loader.php

The code shown below is the original loader.php code that came with the plugin when this was installed.

As shown below, there is NO 'require_once' anywhere in the loader.php code.

<?php

/**
 *
 * CoderMe Donation GOLD
 * Copyright 2018 CoderMe.com, All Rights Reserved
 *
 * Website: https://markit.coderme.com
 * Home:    https://markit.coderme.com/mybb-donation-gold
 * License: See 'LICENSE' file for more info.
 * Version: 70.0.0
 *
 * */




// payment processors
define('CODERME_PAYZA', 'Payza');
define('CODERME_2CHECKOUT', '2checkout');
define('CODERME_PAYPAL', 'Paypal');
define('CODERME_WESTERN_UNION', 'Western Union');
define('CODERME_BANK_WIRE', 'Bank/Wire transfer');
define('CODERME_LOCALBITCOINS', 'LocalBitcoins');
define('CODERME_COINPAYMENTS', 'CoinPayments');


// actions
define('THANK_YOU', 'thank_you');
define('CANCELED', 'canceled');
define('TOP_DONORS', 'top_donors');
define('ACTION_THANK_YOU', '/donate.php?action=thank_you');
define('ACTION_CANCELED', '/donate.php?action=canceled');

define('ACTION_IPN_PAYPAL', '/ipn.php?action=' . strtolower(CODERME_PAYPAL));
define('ACTION_IPN_PAYZA', '/ipn.php?action=' . strtolower(CODERME_PAYZA));
define('ACTION_IPN_2CHECKOUT', '/ipn.php?action=' . strtolower(CODERME_2CHECKOUT));
define('ACTION_IPN_COINPAYMENTS', '/ipn.php?action=' . strtolower(CODERME_COINPAYMENTS));


function coderMeLoader($class) {
    $name = explode('CoderMe', $class);

    include_once __DIR__ .
                '/paymentgateways/' .
                  $name[1] . '.php';
    
}

spl_autoload_register('coderMeLoader');
(2018-09-19, 04:37 PM)Serpius Wrote: [ -> ]The code shown below is the original loader.php code that came with the plugin when this was installed.

As shown below, there is NO 'require_once' anywhere in the loader.php code.

<?php

/**
 *
 * CoderMe Donation GOLD
 * Copyright 2018 CoderMe.com, All Rights Reserved
 *
 * Website: https://markit.coderme.com
 * Home:    https://markit.coderme.com/mybb-donation-gold
 * License: See 'LICENSE' file for more info.
 * Version: 70.0.0
 *
 * */




// payment processors
define('CODERME_PAYZA', 'Payza');
define('CODERME_2CHECKOUT', '2checkout');
define('CODERME_PAYPAL', 'Paypal');
define('CODERME_WESTERN_UNION', 'Western Union');
define('CODERME_BANK_WIRE', 'Bank/Wire transfer');
define('CODERME_LOCALBITCOINS', 'LocalBitcoins');
define('CODERME_COINPAYMENTS', 'CoinPayments');


// actions
define('THANK_YOU', 'thank_you');
define('CANCELED', 'canceled');
define('TOP_DONORS', 'top_donors');
define('ACTION_THANK_YOU', '/donate.php?action=thank_you');
define('ACTION_CANCELED', '/donate.php?action=canceled');

define('ACTION_IPN_PAYPAL', '/ipn.php?action=' . strtolower(CODERME_PAYPAL));
define('ACTION_IPN_PAYZA', '/ipn.php?action=' . strtolower(CODERME_PAYZA));
define('ACTION_IPN_2CHECKOUT', '/ipn.php?action=' . strtolower(CODERME_2CHECKOUT));
define('ACTION_IPN_COINPAYMENTS', '/ipn.php?action=' . strtolower(CODERME_COINPAYMENTS));


function coderMeLoader($class) {
    $name = explode('CoderMe', $class);

    include_once __DIR__ .
                '/paymentgateways/' .
                  $name[1] . '.php';
    
}

spl_autoload_register('coderMeLoader');

Absolutely this is after modification, I've already checked the original archive and indeed it has require_once 

The error you refer to seems inconsistent with whats should be in the file, kindly check If this is the file version on your server, try restarting php-fpm (if you use cherokee, nginx, or lighttpd), apache, or whatever your server is.


P.S if the problem isn't solved, please lets move the conversation over email, use the contact form on my website https://markit.coderme.com/mybb-donation-gold as this thread is for Free plugin support.
(2018-09-20, 11:14 AM)tera Wrote: [ -> ]
(2018-09-19, 04:37 PM)Serpius Wrote: [ -> ]The code shown below is the original loader.php code that came with the plugin when this was installed.

As shown below, there is NO 'require_once' anywhere in the loader.php code.

<?php

/**
 *
 * CoderMe Donation GOLD
 * Copyright 2018 CoderMe.com, All Rights Reserved
 *
 * Website: https://markit.coderme.com
 * Home:    https://markit.coderme.com/mybb-donation-gold
 * License: See 'LICENSE' file for more info.
 * Version: 70.0.0
 *
 * */




// payment processors
define('CODERME_PAYZA', 'Payza');
define('CODERME_2CHECKOUT', '2checkout');
define('CODERME_PAYPAL', 'Paypal');
define('CODERME_WESTERN_UNION', 'Western Union');
define('CODERME_BANK_WIRE', 'Bank/Wire transfer');
define('CODERME_LOCALBITCOINS', 'LocalBitcoins');
define('CODERME_COINPAYMENTS', 'CoinPayments');


// actions
define('THANK_YOU', 'thank_you');
define('CANCELED', 'canceled');
define('TOP_DONORS', 'top_donors');
define('ACTION_THANK_YOU', '/donate.php?action=thank_you');
define('ACTION_CANCELED', '/donate.php?action=canceled');

define('ACTION_IPN_PAYPAL', '/ipn.php?action=' . strtolower(CODERME_PAYPAL));
define('ACTION_IPN_PAYZA', '/ipn.php?action=' . strtolower(CODERME_PAYZA));
define('ACTION_IPN_2CHECKOUT', '/ipn.php?action=' . strtolower(CODERME_2CHECKOUT));
define('ACTION_IPN_COINPAYMENTS', '/ipn.php?action=' . strtolower(CODERME_COINPAYMENTS));


function coderMeLoader($class) {
    $name = explode('CoderMe', $class);

    include_once __DIR__ .
                '/paymentgateways/' .
                  $name[1] . '.php';
    
}

spl_autoload_register('coderMeLoader');

Absolutely this is after modification, I've already checked the original archive and indeed it has require_once 

The error you refer to seems inconsistent with whats should be in the file, kindly check If this is the file version on your server, try restarting php-fpm (if you use cherokee, nginx, or lighttpd), apache, or whatever your server is.


P.S if the problem isn't solved, please lets move the conversation over email, use the contact form on my website https://markit.coderme.com/mybb-donation-gold as this thread is for Free plugin support.

Ok, message sent via the Contact Form.
CoderMe Donation Updated to v6.0.0

for fresh install only or upgrade from earlier than version 5

Note: upgrade from v5 -> v6 isn't supported
(2018-09-23, 09:44 AM)tera Wrote: [ -> ]CoderMe Donation Updated to v6.0.0

for fresh install only or upgrade from earlier than version 5

Note: upgrade from v5 -> v6 isn't supported

What about the CoderMe Donation Gold plugin?

Is the plugin now compatible with PHP 7.1.xx and newer?
I'm working on it.

it'll support version 7.1.xx too

but I've tested it against PHP 7.2
(2018-09-18, 07:28 AM)tera Wrote: [ -> ]
(2018-09-13, 03:22 PM)pietrek Wrote: [ -> ]It does not matter if I give the default size 851/605 or change it to my 851/500 it always shows the same.


Ok, then backup your templates, do deactivate the plugin then reactivate, this will reset templates to its original state, all modifications on plugin templates will be lost.

Unfortunately, none of these solutions works for me, I still have an exploded belt.
Current version 6.0.0
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49