Active eCommerce All Addons (Untouched)

May 9, 2022
101
15
18
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

m1s3rys1gn4l

Active member
Babiato Lover
Trusted Uploader
Oct 13, 2020
178
141
43
Bangladesh
www.nerdean.com
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

hima948

Member
Sep 5, 2019
37
3
8
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
 

hima948

Member
Sep 5, 2019
37
3
8
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: 13

pass2001

Active member
May 3, 2022
131
29
28
I am looking for Active eCommerce Seller App,can anyone upload it,thanks in advance!
 

widchy95

Member
Oct 3, 2019
51
23
8
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
 

widchy95

Member
Oct 3, 2019
51
23
8
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
 

aminosTarikos

New member
Jan 20, 2021
4
0
1
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
 

roysuraj

New member
Jul 2, 2022
21
5
3
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??
 

roysuraj

New member
Jul 2, 2022
21
5
3
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
 

widchy95

Member
Oct 3, 2019
51
23
8
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');
    });
});
 

widchy95

Member
Oct 3, 2019
51
23
8
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');
});
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu