• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Active eCommerce All Addons (Untouched)

The link does not work ,
After entering the password, this message appears (Publisher of this file has opted for short link monetization, Redirecting you to the destination URL in a moment...)
And then it appears adfly link 1655981955656.png

Nothing appears. Can I upload the files to Google Drive or a direct download link?
Thank you
Thank you
 
  • Like
Reactions: rudyere
The link does not work ,
After entering the password, this message appears (Publisher of this file has opted for short link monetization, Redirecting you to the destination URL in a moment...)
And then it appears adfly link 1655981955656.png

Nothing appears. Can I upload the files to Google Drive or a direct download link?
Thank you
hello, that was my mistake, please check now, i have enabled shortlink on mirrored filed server i was forgot that.
sorry for inconvenience
 
  • Like
Reactions: mahmoudabdokaka
How to bypass purchase code during installation of add on ?
Recently active cms wanted purchase code to install that add on
how i can bypass it ?
please help us
 
please help us who can give us a solution, please
version= v6.1.2 (Latest).
 

Attachments

  • addon problem.png
    addon problem.png
    17.9 KB · Views: 15
I am looking for Active eCommerce Seller App,can anyone upload it,thanks in advance!
 
Please, I'm using v6.1.4 (latest version) but offline payments and affiliate addon are not working
they shows 500 error
anybody can help me fix this please ?
I will apreciate every little help
 
Please, I'm using v6.1.4 (latest version) but offline payments and affiliate addon are not working
they shows 500 error
anybody can help me fix this please ?
I will apreciate every little help
Fixed it .
After uploading the addons
I went to public_html/routes
I reupload the original offline_payment.php and affiliate.php from the main code to rewrite the ones modified by addon and everything worked fine for me
 
Please, I'm using v6.1.4 (latest version) but offline payments and affiliate addon are not working
they shows 500 error
anybody can help me fix this please ?
I will apreciate every little help
please can you share with us the latest version 6.1.4
 
Fixed it .
After uploading the addons
I went to public_html/routes
I reupload the original offline_payment.php and affiliate.php from the main code to rewrite the ones modified by addon and everything worked fine for me
how ??? is it also working for 6.1.2??
 
Fixed it .
After uploading the addons
I went to public_html/routes
I reupload the original offline_payment.php and affiliate.php from the main code to rewrite the ones modified by addon and everything worked fine for me
can u also share that file for offline payment.php
 
copy and past this code in public_html/routes/affiliate.php
PHP:
<?php

/*
|--------------------------------------------------------------------------
| Affiliate Routes
|--------------------------------------------------------------------------
|
| Here is where you can register admin routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

//Admin

use App\Http\Controllers\AffiliateController;

Route::group(['prefix' =>'admin', 'middleware' => ['auth', 'admin']], function(){
    Route::controller(AffiliateController::class)->group(function () {
        Route::get('/affiliate', 'index')->name('affiliate.index');
        Route::post('/affiliate/affiliate_option_store', 'affiliate_option_store')->name('affiliate.store');

        Route::get('/affiliate/configs', 'configs')->name('affiliate.configs');
        Route::post('/affiliate/configs/store', 'config_store')->name('affiliate.configs.store');

        Route::get('/affiliate/users', 'users')->name('affiliate.users');
        Route::get('/affiliate/verification/{id}', 'show_verification_request')->name('affiliate_users.show_verification_request');

        Route::get('/affiliate/approve/{id}', 'approve_user')->name('affiliate_user.approve');
        Route::get('/affiliate/reject/{id}', 'reject_user')->name('affiliate_user.reject');

        Route::post('/affiliate/approved', 'updateApproved')->name('affiliate_user.approved');

        Route::post('/affiliate/payment_modal', 'payment_modal')->name('affiliate_user.payment_modal');
        Route::post('/affiliate/pay/store', 'payment_store')->name('affiliate_user.payment_store');

        Route::get('/affiliate/payments/show/{id}', 'payment_history')->name('affiliate_user.payment_history');
        Route::get('/refferal/users', 'refferal_users')->name('refferals.users');

        // Affiliate Withdraw Request
        Route::get('/affiliate/withdraw_requests', 'affiliate_withdraw_requests')->name('affiliate.withdraw_requests');
        Route::post('/affiliate/affiliate_withdraw_modal', 'affiliate_withdraw_modal')->name('affiliate_withdraw_modal');
        Route::post('/affiliate/withdraw_request/payment_store', 'withdraw_request_payment_store')->name('withdraw_request.payment_store');
        Route::get('/affiliate/withdraw_request/reject/{id}', 'reject_withdraw_request')->name('affiliate.withdraw_request.reject');

        Route::get('/affiliate/logs', 'affiliate_logs_admin')->name('affiliate.logs.admin');

    });
});

//FrontEnd
Route::controller(AffiliateController::class)->group(function () {
    Route::get('/affiliate', 'apply_for_affiliate')->name('affiliate.apply');
    Route::post('/affiliate/store', 'store_affiliate_user')->name('affiliate.store_affiliate_user');
});

Route::group(['middleware' => ['auth']], function(){
    Route::controller(AffiliateController::class)->group(function () {
        Route::get('/affiliate/user', 'user_index')->name('affiliate.user.index');
        Route::get('/affiliate/user/payment_history', 'user_payment_history')->name('affiliate.user.payment_history');
        Route::get('/affiliate/user/withdraw_request_history', 'user_withdraw_request_history')->name('affiliate.user.withdraw_request_history');

        Route::get('/affiliate/payment/settings', 'payment_settings')->name('affiliate.payment_settings');
        Route::post('/affiliate/payment/settings/store', 'payment_settings_store')->name('affiliate.payment_settings_store');

        // Affiliate Withdraw Request
        Route::post('/affiliate/withdraw_request/store', 'withdraw_request_store')->name('affiliate.withdraw_request.store');
    });
});
 
copy and past this code in public_html/routes/offline_payment.php

PHP:
<?php

use App\Http\Controllers\CustomerPackageController;
use App\Http\Controllers\WalletController;
use App\Http\Controllers\CustomerPackagePaymentController;
use App\Http\Controllers\ManualPaymentMethodController;
use App\Http\Controllers\SellerPackageController;
use App\Http\Controllers\SellerPackagePaymentController;

/*
|--------------------------------------------------------------------------
| Offline Payment Routes
|--------------------------------------------------------------------------
|
| Here is where you can register admin routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

//Admin
Route::group(['prefix' =>'admin', 'middleware' => ['auth', 'admin']], function(){
    Route::resource('manual_payment_methods', ManualPaymentMethodController::class);
    Route::get('/manual_payment_methods/destroy/{id}', [ManualPaymentMethodController::class, 'destroy'])->name('manual_payment_methods.destroy');
    Route::get('/offline-wallet-recharge-requests', [WalletController::class, 'offline_recharge_request'])->name('offline_wallet_recharge_request.index');
    Route::post('/offline-wallet-recharge/approved', [WalletController::class, 'updateApproved'])->name('offline_recharge_request.approved');

    // Seller Package purchase request
    Route::get('/offline-seller-package-payment-requests', [SellerPackagePaymentController::class, 'offline_payment_request'])->name('offline_seller_package_payment_request.index');
    Route::post('/offline-seller-package-payment/approved', [SellerPackagePaymentController::class, 'offline_payment_approval'])->name('offline_seller_package_payment.approved');

    // customer package purchase request
    Route::get('/offline-customer-package-payment-requests', [CustomerPackagePaymentController::class, 'offline_payment_request'])->name('offline_customer_package_payment_request.index');
    Route::post('/offline-customer-package-payment/approved', [CustomerPackagePaymentController::class, 'offline_payment_approval'])->name('offline_customer_package_payment.approved');

});

//FrontEnd
Route::post('/purchase_history/make_payment', [ManualPaymentMethodController::class, 'show_payment_modal'])->name('checkout.make_payment');
Route::post('/purchase_history/make_payment/submit', [ManualPaymentMethodController::class, 'submit_offline_payment'])->name('purchase_history.make_payment');
Route::post('/offline-wallet-recharge-modal', [ManualPaymentMethodController::class, 'offline_recharge_modal'])->name('offline_wallet_recharge_modal');

Route::group(['middleware' => ['user', 'verified']], function(){
    Route::post('/offline-wallet-recharge', [WalletController::class, 'offline_recharge'])->name('wallet_recharge.make_payment');

});

// customer package purchase
Route::post('/offline-customer-package-purchase-modal', [ManualPaymentMethodController::class, 'offline_customer_package_purchase_modal'])->name('offline_customer_package_purchase_modal');
Route::post('/offline-customer-package-paymnet', [CustomerPackageController::class, 'purchase_package_offline'])->name('customer_package.make_offline_payment');


Route::group(['prefix' => 'seller', 'middleware' => ['seller', 'verified', 'user'], 'as' => 'seller.'], function () {
    // Seller Package purchase
    Route::post('/offline-seller-package-purchase-modal', [ManualPaymentMethodController::class, 'offline_seller_package_purchase_modal'])->name('offline_seller_package_purchase_modal');
    Route::post('/offline-seller-package-paymnet',[SellerPackageController::class, 'purchase_package_offline'])->name('make_offline_payment');
});
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock