eShop - Multi Vendor eCommerce App & eCommerce Vendor Marketplace Flutter App

eShop - Multi Vendor eCommerce App & eCommerce Vendor Marketplace Flutter App v2.8.2

No permission to download

Syehassan

Active member
Trusted Uploader
May 4, 2022
98
147
33
Syehassan updated eShop - Multi Vendor eCommerce App & eCommerce Vendor Marketplace Flutter App with a new update entry:

Change Log: – 21th oct 2022

Change Log: – 21 Oct 2022
– Version: 2.0.8
+ Added My Fatoorah payment gateway
+ Improve Single Seller System (If Single seller system is Enable then Customer will not be able to add multiple sellers products into cart, It will show prompt dialog to restrict this)
+ Improvement& Bug fixes
(NOTE:- For this update, No changes in Delivery boy and Seller app )

Read the rest of this update entry...
 
  • Like
Reactions: Caly

Shyamji

New member
Aug 19, 2022
21
1
3
Why error in new version 2.0.8. Eshop(Razorpay error) ?
What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
> Could not resolve com.razorpay:checkout:1.6.+.
Required by:
project :app > project :razorpay_flutter
> Failed to list versions for com.razorpay:checkout.
> Unable to load Maven meta-data from https://jcenter.bintray.com/com/razorpay/checkout/maven-metadata.xml.
> Could not GET 'https://jcenter.bintray.com/com/razorpay/checkout/maven-metadata.xml'.
> Read timed out
 

Shyamji

New member
Aug 19, 2022
21
1
3
Why this errors in eshop 2.0.8?
Any one can help me?
 

Attachments

  • 88.PNG
    88.PNG
    49.5 KB · Views: 26

Syehassan

Active member
Trusted Uploader
May 4, 2022
98
147
33
Syehassan updated eShop - Multi Vendor eCommerce App & eCommerce Vendor Marketplace Flutter App with a new update entry:

Change Log: – 18th nov 2022

Change Log: – 18 Nov 2022
– Version: 2.0.9
+ Added Brand bulk upload
+ Added POS system for seller in seller panel
+ Added HSN Code for products
+ Added Selection of latitude and longitude from Map in Seller application
+ Converted Seller And Delivery boy code into Provider state management
+ Improve seller application UI
+ Improved single seller order system
+ Improved brand feature

Read the rest of this update entry...
 

samyakchy

New member
Apr 9, 2021
29
4
3
Copy and Replace this code to avoid Purchase code in Admin Panel
Admin path>application>hooks>MyConfig.php

PHP:
<?php

class MyConfig
{
    function get_email_settings()
    {
        $t = &get_instance();
        $res = $t->db->where('variable', 'email_settings')->get('settings');
        $numRows = $res->num_rows();
        if ($res->num_rows > 0) {
            $row = $res->row();
            $email_settings = json_decode($row->value);
            if (!empty($email_settings)) {
                if ($email_settings->smtp_encryption == 'off') {
                    $smtp_encryption = $email_settings->smtp_host;
                } else {
                    $smtp_encryption = $email_settings->smtp_encryption . '://' . $email_settings->smtp_host;
                }

                $data = array(
                    'mailtype' => $email_settings->mail_content_type,
                    'protocol' => 'smtp',
                    'smtp_host' => $smtp_encryption,
                    'smtp_port' => $email_settings->smtp_port,
                    'smtp_user' => $email_settings->email,
                    'smtp_pass' => $email_settings->password,
                    'charset' => 'utf-8'
                );
                $t->config->set_item('email_config', $data);
            }
        }
    }

    function loadSystemResources()
    {
        if (!method_exists('MyConfig', 'verify_doctor_brown')) {
            $exclude_uris = array(
                base_url("admin/purchase-code"),
                base_url("admin/purchase-code/validator"),
                base_url("admin/home/logout"),
                base_url("admin/"),
                base_url("admin"),
                base_url("admin/home"),
                base_url("admin/login"),
                base_url("auth/login"),
                base_url("app/v1/api"),
                base_url(),
                base_url("products"),
                base_url("cart"),
                base_url("cart/manage"),
                base_url("cart/remove"),
                base_url("cart/clear"),
                base_url("cart/get_user_cart"),
                base_url("cart/checkout"),
                base_url("cart/place-order"),
                base_url("cart/validate-promo-code"),
                base_url("cart/pre-payment-setup"),
                base_url("cart/get-delivery-charge"),
                base_url("cart/send-bank-receipt"),
                base_url("cart/check-product-availability"),
                base_url("home/contact-us"),
                base_url("home/categories"),
                base_url("home/get-products"),
                base_url("home/address-list"),
                base_url("home/checkout"),
                base_url("home/terms-and-conditions"),
                base_url("home/about-us"),
                base_url("home/faq"),
                base_url("home/privacy-policy"),
                base_url("home/login"),
                base_url("home/lang"),
                base_url("home/reset-password"),
                base_url("home/send-contact-us-email"),
                base_url("login"),
                base_url("login/login-check"),
                base_url("login/logout"),
                base_url("login/update-user"),
                base_url("my-account"),
                base_url("my-account/profile"),
                base_url("my-account/orders"),
                base_url("my-account/order_details"),
                base_url("my-account/order_invoice"),
                base_url("my-account/update_order_item_status"),
                base_url("my-account/update_order"),
                base_url("my-account/notifications"),
                base_url("my-account/manage_address"),
                base_url("my-account/wallet"),
                base_url("my-account/transactions"),
                base_url("my-account/add_address"),
                base_url("my-account/edit_address"),
                base_url("my-account/delete_address"),
                base_url("my-account/set_default_address"),
                base_url("my-account/get_address"),
                base_url("my-account/get_address_list"),
                base_url("my-account/get_areas"),
                base_url("my-account/get_zipcode"),
                base_url("my-account/favorites"),
                base_url("my-account/manage_favorites"),
                base_url("my-account/get_transactions"),
                base_url("my-account/get_wallet_transactions"),
                base_url("payment"),
                base_url("payment/paypal"),
                base_url("payment/paytm"),
                base_url("payment/initiate_paytm_transaction"),
                base_url("payment/paytm_response"),
                base_url("payment/success"),
                base_url("payment/cancel"),
                base_url("payment/app_payment_status"),
                base_url("payment/do_capture"),
                base_url("products/category"),
                base_url("products/details"),
                base_url("products/get_details"),
                base_url("products/section"),
                base_url("products/search"),
                base_url("products/tags"),
                base_url("products/save_rating"),
                base_url("products/delete_rating"),
                base_url("products/get_rating"),
                base_url("products/check_zipcode"),
                base_url("sellers"),
                base_url("sellers/"),
            );

        }
    }

    function set_session()
    {
        $t = &get_instance();
        $t->load->helper('url');
        $t->load->library('session');
        if (!$t->ion_auth->logged_in()) {
            $currentURL = current_url();
            $params = $_SERVER['QUERY_STRING'];
            $fullURL = (!empty($params)) ? $currentURL . '?' . $params : $currentURL;
            $login_check = strpos($fullURL, 'login');
            $home_check = strpos($fullURL, 'home');

            if ($login_check != true && $home_check != true) {
                $t->session->set_userdata('url', $fullURL);
            }
        }
    }
    function get_current_theme()
    {
        $t = &get_instance();
        $t->config->load('eshop');
        $theme = '';
        $default_theme = $t->config->item('default_theme');
        $current_theme = current_theme();
        if (empty($current_theme)) {
            $theme = $default_theme;
        } else {
            $current_theme = $current_theme[0];
            $theme_folder = APPPATH . 'views/front-end/' . $current_theme['slug'];
            $is_dir = is_dir($theme_folder);
            if ($is_dir) {
                $theme = $current_theme['slug'];
            } else {
                $theme = $default_theme;
            }
        }
        define('THEME', $theme);
        define('THEME_ASSETS_URL', base_url('assets/front_end/' . $theme . '/'));
    }

    function language()
    {
        $ci = &get_instance();
        $ci->load->helper(['language']);
        $siteLang = $ci->input->cookie('language', TRUE);
        if ($siteLang) {
            $ci->lang->load('web_labels_lang', $siteLang);
        } else {
            $default_language = $ci->config->item('language');
            $ci->lang->load('web_labels_lang', $default_language);
        }
    }

    function verify_doctor_brown()
    {
        $exclude_uris = array(
            base_url("admin/purchase-code"),
            base_url("admin/purchase-code/validator"),
            base_url("admin/home/logout"),
            base_url("admin/"),
            base_url("admin"),
            base_url("admin/home"),
            base_url("admin/login"),
            base_url("auth/login"),
            base_url("app/v1/api"),
            base_url(),
            base_url("products"),
            base_url("cart"),
            base_url("cart/manage"),
            base_url("cart/remove"),
            base_url("cart/clear"),
            base_url("cart/get_user_cart"),
            base_url("cart/checkout"),
            base_url("cart/place-order"),
            base_url("cart/validate-promo-code"),
            base_url("cart/pre-payment-setup"),
            base_url("cart/get-delivery-charge"),
            base_url("cart/send-bank-receipt"),
            base_url("cart/check-product-availability"),
            base_url("home/contact-us"),
            base_url("home/categories"),
            base_url("home/get-products"),
            base_url("home/address-list"),
            base_url("home/checkout"),
            base_url("home/terms-and-conditions"),
            base_url("home/about-us"),
            base_url("home/faq"),
            base_url("home/privacy-policy"),
            base_url("home/login"),
            base_url("home/lang"),
            base_url("home/reset-password"),
            base_url("home/send-contact-us-email"),
            base_url("login"),
            base_url("login/login-check"),
            base_url("login/logout"),
            base_url("login/update-user"),
            base_url("my-account"),
            base_url("my-account/profile"),
            base_url("my-account/orders"),
            base_url("my-account/order_details"),
            base_url("my-account/order_invoice"),
            base_url("my-account/update_order_item_status"),
            base_url("my-account/update_order"),
            base_url("my-account/notifications"),
            base_url("my-account/manage_address"),
            base_url("my-account/wallet"),
            base_url("my-account/transactions"),
            base_url("my-account/add_address"),
            base_url("my-account/edit_address"),
            base_url("my-account/delete_address"),
            base_url("my-account/set_default_address"),
            base_url("my-account/get_address"),
            base_url("my-account/get_address_list"),
            base_url("my-account/get_areas"),
            base_url("my-account/get_zipcode"),
            base_url("my-account/favorites"),
            base_url("my-account/manage_favorites"),
            base_url("my-account/get_transactions"),
            base_url("my-account/get_wallet_transactions"),
            base_url("payment"),
            base_url("payment/paypal"),
            base_url("payment/paytm"),
            base_url("payment/initiate_paytm_transaction"),
            base_url("payment/paytm_response"),
            base_url("payment/success"),
            base_url("payment/cancel"),
            base_url("payment/app_payment_status"),
            base_url("payment/do_capture"),
            base_url("products/category"),
            base_url("products/details"),
            base_url("products/get_details"),
            base_url("products/section"),
            base_url("products/search"),
            base_url("products/tags"),
            base_url("products/save_rating"),
            base_url("products/delete_rating"),
            base_url("products/get_rating"),
            base_url("products/check_zipcode"),
            base_url("sellers"),
            base_url("sellers/"),
        );
      

        
    }
}
 

Syehassan

Active member
Trusted Uploader
May 4, 2022
98
147
33
Tomz updated eShop - Multi Vendor eCommerce App & eCommerce Vendor Marketplace Flutter App with a new update entry:

eShop v2.0.9

Download eShop v2.0.9 - Flutter Multi Vendor eCommerce Full App Nulled Free
Change Log: – 18 Nov 2022
– Version: 2.0.9

+ Added Brand bulk upload
+ Added POS system for seller in seller panel
+ Added HSN Code for products
+ Added Selection of latitude and longitude from Map in Seller application
+ Converted Seller And Delivery boy code into Provider state management
+ Improve seller application UI
+ Improved single seller order system
+ Improved brand feature

Read the rest of this update entry...
 
  • Love
Reactions: Shivendra

mohebb

New member
Nov 12, 2022
10
0
1
guys tbh im afaraid if this user have upload a backdoor in the file how do iknow if this is safe
 

code_master

Member
May 4, 2022
36
6
8
Please Latest

Change Log: – 10 Dec 2022
– Version: 2.1.0
+ Added Manage Stock Feature in admin panel, seller panel, seller application
+ Delivery_boy Application UI Improvement
+ Added Delivery charge and Discount option in POS system
+ Improvements and bugs resolved
 

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