PDA

View Full Version : Problem with free package



Ed
March 26, 2018, 04:21 PM
Hello,

I'm having trouble choosing a free package (4.6.1), does anyone know what might be happening? :blink:

2808

Thankyou!

Ed
March 27, 2018, 06:46 AM
First: Add a Plan (Single)
Second: Define Free (0.00)
Third: I define how many times it can be used (10)

In front of the site I get the message saying that the usage limit is exceeded (Used-Up), Is someone having the same problem?

2812

Regards

Pete Young
March 27, 2018, 08:34 AM
ED have you checked you bin and deleted any old versions of this / also your admin panel view package usage ? check that file and see if there are any there showing 0 (zero) if so manually edit the 0 to a number available to see if that fixes it.

best i can guess is there were some named this before that have been used but may be wrong?

Pete

autocy
March 27, 2018, 08:50 AM
user must be logged in to use the free plan. you can always change the logic for not logged in users

Viktor
March 27, 2018, 08:59 AM
Hello Ed,

How many listings did you create with this plans from your account?

Ed
March 27, 2018, 09:05 AM
Hello everybody,

I have already done all these procedures that you mentioned, but there is no solution, I already checked in the demonstration version of flynax and it is with the same error.

Important note: If set 0 for the plan usage limit the problem does not occur, but I need to set 5 or 10 or 15 only.

Zero (0) is "unlimited", but I need to set 5 or 10 or 15, ie "Limited" :wacko: :blink: :O

Thankyou

Ed
March 27, 2018, 09:07 AM
Hello Ed,

How many listings did you create with this plans from your account?

None Nothing

autocy
March 27, 2018, 09:11 AM
user must be logged in to use the free plan. you can always change the logic for not logged in users

give some minutes to check and find changes we made on our site....

1) includes/classes/addlisting.php:
lines ~740
// Check plan using data
/*customization to allow free plan to visitor*/
elseif ($plan_info['Limit'] > 0 && $plan_info['Using'] == 0 && $plan_info['Using'] != ''&& defined('IS_LOGIN')) {
$errors[] = $lang['plan_limit_using_hack'];
}

2)

Ed
March 27, 2018, 09:14 AM
user must be logged in to use the free plan. you can always change the logic for not logged in users

give some minutes to check and find changes we made on our site....

I've already made this change but the error still persists

Thankyou!

Rudi
March 27, 2018, 09:31 AM
Actually, if you use a single listing package once you added a single listing you should update your package via account area (My Listings > some listing > Renew/Upgrade Package)

Ed
March 27, 2018, 09:51 AM
Actually, if you use a single listing package once you added a single listing you should update your package via account area (My Listings > some listing > Renew/Upgrade Package)

Hello Rudi,

The problem is that the system says it is exceeded, even if the user has not used it at all.

Clarifying better ... the user never used the plan (Free) and even then the system says it is exceeded (Used-Up)

2814

If the value is other than zero, the error occurs

2816
2812

Thankyou

Bahram Soltanirad
March 27, 2018, 10:18 AM
Ed, It seems you right.
Please go to includes/classes/rlPlan.class.php
Find:
if (($plan['Limit'] > 0 && $plan['Using'] == 0)
Change to:
if (($plan['Limit'] > 0 && $plan['Using'] != '')
save and check again.
Flynax team, please review and modify for next version.

Ed
March 27, 2018, 10:41 AM
Hello Bahram Soltanirad,

I made this modification that you posted and resolved completely, now the error no longer exists! :laugh: :laugh: :laugh:

Bahram Soltanirad, Thanks for your help and thanks to all who helped ...

Pete Young / Autocy / Viktor and Rudi.

Affectionately

Ed

Bahram Soltanirad
March 27, 2018, 10:49 AM
Ed,
Unfortunately, it seems the problem still exists, if you assign limit use of plan to 3, it works for first time and allow you to add a listing, but it does not work for second time.
Let me and flynax to investigate more about it.

Ed
March 27, 2018, 10:56 AM
Ed,
Unfortunately, it seems the problem still exists, if you assign limit use of plan to 3, it works for first time and allow you to add a listing, but it does not work for second time.
Let me and flynax to investigate more about it.

OK !

Thanks again!

Ed

Ed
March 27, 2018, 01:32 PM
Ed,

Please, create a ticket regarding this problem to check it on your side
because it works well on the latest version

Hello Rudi,

Okay, I'm going to open a new ticket.

The demo version of Flynax is also having the same problem, so I believe there are other people with this problem in version 4.6.1

Thank you

autocy
March 27, 2018, 06:36 PM
If you check in admin panel >plan using and find the test user you will see that instead of changing balance of limited plan to 0 it ads a new entry....

Pete Young
March 27, 2018, 09:18 PM
Ed I run free starter listings but not sure if I have it set the same as you ? and as far as I am aware no problems, I need to go to work now but will test later on and report back.

Ed
March 27, 2018, 11:06 PM
If you check in admin panel >plan using and find the test user you will see that instead of changing balance of limited plan to 0 it ads a new entry....

Hello, Autocy,

There is no record to modify, see the screen below.

2820

Thank you

Ed

Ed
March 27, 2018, 11:09 PM
Ed I run free starter listings but not sure if I have it set the same as you ? and as far as I am aware no problems, I need to go to work now but will test later on and report back.

Hello Pete and Autocy,

For those who are with version 4.6.1 is recommend to test to see if you have the same error.

1 - Create a package. (Single)

2 - Set the price zero (0), ie (Free)

3 - Define that it can only be used 5 times

Now see if the error occurs that I'm trying to explain.

Thank you

Ed

Pete Young
March 28, 2018, 04:23 AM
Ed just went and tested flynaxes demo and you are correct its an error in the script as best I can see so a ticket is needed, was about to upgrade but will wait fr this error to be fixed now.

Rudi
March 28, 2018, 04:51 AM
Hello Ed,

Now I see what you mean,

Yes, the option 'Limit use of package' doesn't work properly

to fix it you should go to ftp > includes > classes > rlPlan.class.php > find 'public function fixAvailability(&$plans)'

change a code inside:


if (($plan['Limit'] > 0 && $plan['Using'] == 0) // && $plan['Using'] != ''


to:


if (($plan['Limit'] > 0 && $plan['Using'] == 0) && $plan['Using'] != ''

Bahram Soltanirad
March 28, 2018, 06:52 AM
Hello Rudi, Yes i already mentioned a solution like this, but it opens the plan forever, without limit. At least, it works for me like this.
Ed should confirm the solution.

autocy
March 28, 2018, 07:52 AM
yes something is wrong because if you go to admin >plans using manager you can see multiple entries of same user with same limited single plan and balance 0 after 8 entries for a limited plan of 3! after that you get the message of Hack detected your not allowed to use the plan..

i have this line under rlplan.class.php :


if (($plan_info['Limit'] > 0 && $plan_info['Using'] == 0 && $plan_info['Using'] != '' && defined('IS_LOGIN'))

and this under AddListing.php:

// Check plan using data
elseif ($plan_info['Limit'] > 0 && $plan_info['Using'] == 0 && $plan_info['Using'] !='') {
$errors[] = $lang['plan_limit_using_hack'];
}

Ed
March 28, 2018, 08:45 AM
Hello Everybody,

Good Morning!

The posted code needs to be enclosed by parentheses, see below:


if (($plan['Limit'] > 0 && $plan['Using'] == 0 && $plan['Using'] != '')

I made the modification posted by Rudi and it Worked, but I'm still testing, when I finish doing all the tests I'll post the result here in the forum. :rolleyes: :) :D

I want to thank everyone who helped... Pete Young, Autocy, Bahram Soltanirad, Viktor, and Rudi.

From Heart, Thank you

autocy
March 28, 2018, 08:52 AM
Yes but only works if limited to 1 plan use only..
if you set plan limit 2 or above instead of changing the balance under plan using database it puts a new entry and then the limited plan is not disabled but after you try to add a listing you get the message for 'hack detected'.
The problem i think is because the limited plan i tested is a free one.
i think with a paid limited plan should work ok

Ed
March 28, 2018, 01:11 PM
Hello Everybody

Unfortunately it gave error again, now the problem is occurring in reverse, a plan with a limit of 5 is the same as unlimited, ie even if I put a limit of 5 the plan will never display (Used-Up). So the user can announce as many times as he wants. :( :(

it's a shame because in the previous versions of 4.6.1 never occurred this error, there are other errors in version 4.61, but I will post on other topics.

I will wait for the return of the ticket I opened.

Thank you all!

Ed
March 28, 2018, 05:48 PM
Yes but only works if limited to 1 plan use only..
if you set plan limit 2 or above instead of changing the balance under plan using database it puts a new entry and then the limited plan is not disabled but after you try to add a listing you get the message for 'hack detected'.
The problem i think is because the limited plan i tested is a free one.
i think with a paid limited plan should work ok

Hello Autocy,

What you are saying is true, I think it is better to wait for the update of version 4.6.1 or wait for the solution through the ticket.

Screen shot below:

2825

Thank you!

Wei Hong
March 29, 2018, 08:04 AM
this error happen with paid plan as well? Or just free plan?

Bahram Soltanirad
March 29, 2018, 08:17 AM
this error happen with paid plan as well? Or just free plan?

Please try it and let us know. I think step plan needs a whole investigate by flynax.

Rudi
March 29, 2018, 09:20 AM
Actually, when you set, for example, 5 for 'Limit use of listing package' it means that user can use this package 5 times
and after the last added listing it will show 'Used Up'

Ed
March 29, 2018, 09:26 AM
this error happen with paid plan as well? Or just free plan?

Hello Wei,

I tested only the free plan, I do not know if it happens on the paid plan.

Thankyou.

Ed
March 29, 2018, 09:52 AM
Actually, when you set, for example, 5 for 'Limit use of listing package' it means that user can use this package 5 times
and after the last added listing it will show 'Used Up'

Hello Rudi,

But the system is displaying a message that a hack has been detected.

In addition the "Plan Usage Stats" is displaying several records, that is, all repeated, is as Autocy reported above.
2828

If I limit to 5, the system will allow 6 or 7 times.

It is a pity... because I tested version 4.5.2 here on my computer and there is no such error.

Thank you

Ed
March 29, 2018, 11:06 AM
Hello Rudi,

The error is now occurring in reverse.

1 - I added a free plan, name: (Free)
2 - Set a usage limit in 5 (Five)
See the illustrative image below:
2826

3 - I entered the system as a Dealer, even with a limit of 5 (Five), I was able to use the 10 (Ten) times plan, and in addition there was a serious error in the "Plan Usage Stats".
See the illustrative image below:
2827

Thank You !

autocy
March 29, 2018, 01:23 PM
it works correctly up to 2 limited plan uses...
and Upgrade/renew listing plan works ok! it updates the balance correctly without adding a new entry in plan using database

Ed
March 29, 2018, 03:50 PM
Hello Autocy,

I am waiting for a return of a ticket that I opened...

Thank you for your attention!

autocy
March 29, 2018, 06:19 PM
i've found the problem:
under the new class file addlisting.php (~line 1283)flynax never inserted code for updating plan using:

// Limited listing mode
elseif ($plan_info['Type'] == 'listing' && $plan_info['Limit'] > 0 ) {


$usage_key = $plan_info['Using'] ? 'Using' : 'Limit';
$plan_usage_insert = array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info[$usage_key] - 1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
);


$rlDb->insert($plan_usage_insert, 'listing_packages');
}



i have added/changed code:

// Limited listing mode
if ($plan_info['Type'] == 'listing' && $plan_info['Limit'] > 0)
{
if ($plan_info['Using'] == '') {
$usage_key = $plan_info['Using'] ? 'Using' : 'Limit';
$plan_usage_insert = array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info[$usage_key] - 1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
);


$rlDb->insert($plan_usage_insert, 'listing_packages');
}

else
{
$plan_using_update = array(
'fields' => array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info['Using']-1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
),
'where' => array(
'ID' => $plan_info['Plan_using_ID']
)
);
$rlDb->update($plan_using_update, 'listing_packages');


}

}


Rudi confirm please if code ok!
now works fine from my site!

David Mundle
March 29, 2018, 11:24 PM
Hello Guys, is this a script wide issue as i have not created my plans yet and will the Flynax team be providing the correct fix? Thanks

Rudi
March 30, 2018, 08:11 AM
Hello everyone,

I've reviewed the code and unfortunately, there are a lot of things to do to
this feature practically doesn't work and requires full review and update

it will be fixed in the next update, so please be patient

Sorry for the inconveniences!

autocy
March 30, 2018, 09:36 AM
Rudi this is the code from upgrade listing controler which is working fine:
// limited listing mode
elseif ($plan_info['Type'] == 'listing' && $plan_info['Limit'] > 0 )
{
/* update/insert limited plan using entry */
if ( empty($plan_info['Using']) )
{
$plan_using_insert = array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info['Limit']-1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
);

$GLOBALS['rlActions'] -> insertOne($plan_using_insert, 'listing_packages');
}
else
{
$plan_using_update = array(
'fields' => array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info['Using']-1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
),
'where' => array(
'ID' => $plan_info['Plan_using_ID']
)
);

$GLOBALS['rlActions'] -> updateOne($plan_using_update, 'listing_packages');
}

Ed
March 30, 2018, 05:09 PM
Hello Autocy and Rudi,

Good Afternoon!

I found one more error in version 4.6.1, when it will edit a listing and the Category has 3 Levels or if you have Locked, an error occurs when trying to change of Category, I tested here in Firefox, Chrome and Opera, and the error occurred in all Browsers.

I think about post this on another topic to get more organized.

Thank you

autocy
April 2, 2018, 05:22 PM
Ed this is the correct fix under addlisting class:


// Limited listing mode
elseif ($plan_info['Type'] == 'listing' && $plan_info['Limit'] > 0 ) {
$usage_key = $plan_info['Using'] ? 'Using' : 'Limit';
if (empty($plan_info['Using'])) {
$plan_usage_insert = array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info[$usage_key] - 1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
);

$rlDb->insert($plan_usage_insert, 'listing_packages');
} else {
$plan_using_update = array(
'fields' => array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info['Using']-1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
),
'where' => array(
'ID' => $plan_info['Plan_using_ID']
)
);

$rlDb->update($plan_using_update, 'listing_packages');
}
}

return $paid_status;
}

Ed
April 2, 2018, 08:58 PM
Hello Autocy,

Resolved, I want to thank you for your help and to congratulate you on your efforts, congratulations.

If you need anything and I can help, I'm here.

A big hug!

Ed Paulista

autocy
April 3, 2018, 03:04 AM
Don't thank me. Thank flynax support and especially Vladimir for the correct fix!

Ed
April 3, 2018, 03:36 PM
So thank you to all who helped !!!

Vladimir (Flynax Team), Autocy, Pete, Rudi, Bahram, Viktor.

Thanks.

Best Wishes.

Wei Hong
April 5, 2018, 06:33 AM
Nice, is the fixed included in the 4.6.2?

Ed
April 6, 2018, 01:05 AM
Nice, is the fixed included in the 4.6.2?

Hello Wei,

Yes, this problem has been fixed and no longer occurs, the version 4.6.2 is working fine.

Okay!

autocy
April 9, 2018, 04:25 AM
After upgrading to 462 i have a problem now with editing active listings with free limited plan selected...
The plan field is empty now and you have to reselect the plan. The problem occurs when balance of limited listing plan is zero and you edit the listing you have to choose other plan....

Ed
April 10, 2018, 02:34 AM
After upgrading to 462 i have a problem now with editing active listings with free limited plan selected...
The plan field is empty now and you have to reselect the plan. The problem occurs when balance of limited listing plan is zero and you edit the listing you have to choose other plan....

Hi,

I tested here on my site and this problem really exists.

The user will not be able to edit the ads, I believe the Flynax team will have to review the one-step (1 step) system.

Hello Flynax team, we found one more problem regarding the limit of use of plans. :wacko: :blink: :wacko:

Regards

Rudi
April 10, 2018, 03:54 AM
All users, who still have problems with 'plan limit' feature, are kindly requested to create a ticket regrading this issue!

autocy
April 10, 2018, 05:28 AM
Ticket opened...
I think is better to remove the listing plan from edit listing page for active listings. A user can use their listing's renew/upgrade package button ..
And if a listing is incomplete the edit listing link should work like the incomplete link..

Wei Hong
April 10, 2018, 05:51 AM
After upgrading to 462 i have a problem now with editing active listings with free limited plan selected...
The plan field is empty now and you have to reselect the plan. The problem occurs when balance of limited listing plan is zero and you edit the listing you have to choose other plan....

So in order to reproduce this I have to add a free limited plan lets say 2 days. And wait to see if it is a problem right?

autocy
April 10, 2018, 05:57 AM
Set the plan usage to only 1 time and then after adding the listing try to edit.

Wei Hong
April 10, 2018, 06:41 AM
Set the plan usage to only 1 time and then after adding the listing try to edit.

Oh I see. Thank you
Edited: after used up the times. You won't be able to edit your listing unless you change your plan as well.

Wei Hong
April 10, 2018, 06:49 AM
Ticket opened...
I think is better to remove the listing plan from edit listing page for active listings. A user can use their listing's renew/upgrade package button ..
And if a listing is incomplete the edit listing link should work like the incomplete link..

Yes I think this is a good solution, remove the option to choose plan in edit page. They can do so in my-listing choose update plan.

autocy
April 10, 2018, 08:29 AM
Also there is a problem with available plans in edit listing page...
All plans of current account type are available regardless of listing type/category.
the 'view plans chart' shows the correct plans

Wei Hong
April 12, 2018, 09:52 AM
Also there is a problem with available plans in edit listing page...
All plans of current account type are available regardless of listing type/category.
the 'view plans chart' shows the correct plans

Any update on this? I made ticket days ago. Still no reply
And yes, in edit listing page, plan select show all plans available for user even plan that is not available for that listing type, and yes, user can use it.

autocy
April 12, 2018, 10:50 AM
Flynax fixed problem with limited plan issue but still waiiting for the problem with available plans regardless of listing type

Wei Hong
April 12, 2018, 11:03 AM
Flynax fixed problem with limited plan issue but still waiiting for the problem with available plans regardless of listing type
I see. I think removing plan select would fix all of that dont you think.

autocy
April 13, 2018, 07:22 PM
problem fixed with wrong plans showing in dropdown selection: file /classes/EditListing.php
Just move line:


// Define current category
$this->category = Category::getCategory($this->listingData['Category_ID']);

above:


// Fetch plans
$this->fetchPlans($account_info);[/QUOTE]

and for limited plan problem: under/templates/controllers/edit_listing/ file step_form.tpl

change lines:


{if $manageListing->planID == $plan.ID && !$plan.plan_disabled}
selected="selected"
{/if}
{if $plan.plan_disabled}

to:



{if $manageListing->planID == $plan.ID}
selected="selected"
{/if}
{if $plan.plan_disabled && $manageListing->planID != $plan.ID}


Thank you Flynax support!

Wei Hong
April 14, 2018, 04:30 AM
problem fixed with wrong plans showing in dropdown selection: file /classes/EditListing.php
Just move line:


// Define current category
$this->category = Category::getCategory($this->listingData['Category_ID']);

above:


// Fetch plans
$this->fetchPlans($account_info);

and for limited plan problem: under/templates/controllers/edit_listing/ file step_form.tpl

change lines:


{if $manageListing->planID == $plan.ID && !$plan.plan_disabled}
selected="selected"
{/if}
{if $plan.plan_disabled}

to:



{if $manageListing->planID == $plan.ID}
selected="selected"
{/if}
{if $plan.plan_disabled && $manageListing->planID != $plan.ID}


Thank you Flynax support![/QUOTE]

Thanks autocy for your sharing. I will try it out today

Wei Hong
April 14, 2018, 05:38 AM
Hi autocy, Vladimir actually applied this fix to my site. I test by making a new plan with 1 limited usage then change a listing to that plan until it used up. Then try editing it and got message saying Hack Detected please choose other plan. :(

autocy
April 14, 2018, 03:10 PM
You need also fix for addlisting class file



// Limited listing mode
elseif ($plan_info['Type'] == 'listing' && $plan_info['Limit'] > 0 ) {
$usage_key = $plan_info['Using'] ? 'Using' : 'Limit';
if (empty($plan_info['Using'])) {
$plan_usage_insert = array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info[$usage_key] - 1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
);

$rlDb->insert($plan_usage_insert, 'listing_packages');
} else {
$plan_using_update = array(
'fields' => array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info['Using']-1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
),
'where' => array(
'ID' => $plan_info['Plan_using_ID']
)
);

$rlDb->update($plan_using_update, 'listing_packages');
}
}

return $paid_status;
}


Also if you use 4.6.2 version you have to uncomment lines 590-593 in Editlisting.php class file:


// Check plan using data
// if ($plan_info['Limit'] > 0 && $plan_info['Using'] == 0 && $plan_info['Using'] != '') {
// $errors[] = $lang['plan_limit_using_hack'];
// }

Wei Hong
April 15, 2018, 05:20 AM
Hi autocy

Thank you very much for your help.

I only apply this as your suggestion:

// Check plan using data
// if ($plan_info['Limit'] > 0 && $plan_info['Using'] == 0 && $plan_info['Using'] != '') {
// $errors[] = $lang['plan_limit_using_hack'];
// }


Do you know what does this part actually do? I did not apply this, but hack detected problem is solved. Do I need it?

// Limited listing mode
elseif ($plan_info['Type'] == 'listing' && $plan_info['Limit'] > 0 ) {
$usage_key = $plan_info['Using'] ? 'Using' : 'Limit';
if (empty($plan_info['Using'])) {
$plan_usage_insert = array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info[$usage_key] - 1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
);

$rlDb->insert($plan_usage_insert, 'listing_packages');
} else {
$plan_using_update = array(
'fields' => array(
'Account_ID' => $account_info['ID'],
'Plan_ID' => $plan_info['ID'],
'Listings_remains' => $plan_info['Using']-1,
'Type' => 'limited',
'Date' => 'NOW()',
'IP' => $reefless->getClientIpAddress()
),
'where' => array(
'ID' => $plan_info['Plan_using_ID']
)
);

$rlDb->update($plan_using_update, 'listing_packages');
}
}

return $paid_status;
}

Wei Hong
April 15, 2018, 05:35 AM
Also the listing plan with limited usage does not show the number of usage allow. Is it normal to you? I meant when user look at three plan, plan 1 can be used 1 time, plan 2 and 3 can be used for 10 times. It doesn't show the number of limited usage. :(

autocy
April 15, 2018, 05:45 AM
Yes your right.It shows (1). I didn't noticed because my limited plan is for only one use. If your limited plans are allowed more than one time you need the modified version (the one you asked if it's needed) to count correctly the uses.eg. if it's used already the script will not add a new entry instead will update the plan number of uses

Wei Hong
April 15, 2018, 06:02 AM
Yes your right.It shows (1). I didn't noticed because my limited plan is for only one use. If your limited plans are allowed more than one time you need the modified version (the one you asked if it's needed) to count correctly the uses.eg. if it's used already the script will not add a new entry instead will update the plan number of uses

Thank you so much for clarifying. I really appreciate it. Come to think of it you joined flynax in 2012 but I only see you very active recently ha ha

autocy
April 15, 2018, 06:33 AM
Thank you so much for clarifying. I really appreciate it. Come to think of it you joined flynax in 2012 but I only see you very active recently ha ha

Yea back then the scipt needed to many customizations! Now it's the best fully loaded classified script but with many small bugs that if you want to find them you must follow the forum!