Jump to content
Bicrypto v3.7.0 + All Plugins ×

julianocunha

Members
  • Posts

    20
  • Reputation

    0
  • Files

    0
  • Joined

  • Last visited

About julianocunha

  • Birthday 09/15/1975

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

julianocunha's Achievements

Apprentice

Apprentice (3/14)

  • One Year In
  • Collaborator Rare
  • Reacting Well
  • One Month Later
  • Week One Done

Recent Badges

0

Reputation

  1. If your code is the same, notice that something is wrong. Note that there is no Week option. The first option is Month and set to 7 days. Run a test on your website, note that when purchasing any subscription package, even if you have set it to expire in 90 days, after approving the Offline payment, it will show the expiration in 7 days.
  2. I checked this part of the code in the app/Models/Package.php file. Note that the month interval is set to 7 days: protected function periodEnd(): Attribute { return Attribute::make( get: function () { $today = now(); $intervalInDays = $this->promotion_time ?? 30; $isSubsPackage = (isset($this->type) && $this->type == 'subscription'); if ($isSubsPackage) { $interval = !empty($this->interval) ? $this->interval : 'month'; $intervalInDays = 7; if ($interval == 'month') { $intervalInDays = $today->daysInMonth ?? 30; } if ($interval == 'year') { $intervalInDays = $today->daysInYear ?? 365; } } return $today->addDays($intervalInDays)->endOfDay(); }, ); } Please check if your code is different.
  3. Version 14.2.0 has many bugs. I wasted a lot of time on translations and testing. The Subscriptions system does not work. You create the packages, define the settings for each package and the expiration time is always 7 days. In other words, you can create a 90-day package that, after completing the purchase, will show expiration in 7 days. Another problem I noticed is that even if you choose a subscription already featured, you are still guided to purchase an ad promotion. On the Codecanyon website, people are recommending a downgrade to 13.0.0 without bugs, as the developers do not respond to complaints. I double-checked each setting one by one. I did several tests and at least using the offline payment plugin, the Subscriptions system does not work. After approving the offline payment, the user's account page shows the purchased subscription. However, when making the ad, promotions are shown to be purchased and not just an option to choose to promote the ad. In the Cron settings I configured 7 days in all options. However, I didn't understand what this has to do with the annual subscription. In other words, the user will purchase an annual subscription, but in the Admin it shows expiration in 7 days. What am I doing wrong?
  4. Please, what are the plugin versions for LaraClassifier 13.0.0? The new updates up to 14.2.0 are full of bugs. There are many complaints on the Codecanyon website and the developers do not respond. Then I read a comment that said version 13.0.0 was the best without bugs. All versions, especially with Subscriptions, are full of bugs.
  5. Upgrade: 14.1.0 to 14.2.0: 500 Internal Server Error A function with return type must return a value
  6. "Invalid purchase code. The code must be 36 characters (including dashes)." // app\Http\Middleware\Install\CheckPurchaseCode.php:74 The above message appeared when trying to upgrade from version 14.0.1 to 14.0.3. Please, is the upgrade working? Thanks.
  7. Me too: There was a problem checking the purchase code related to the "Stripe" plugin. ERROR: Impossible to retrieve error message. Version: 14.0.1
  8. Script no 100% nulled. See attached file. Any type of exclusion, be it language, plans, page and etc, says you need to verify your purchase code.
×
×
  • Create New...