SATVIK UNIVERSE

I am a Youtuber

Satvik Masurkar

I’m a web developer and graphic designer living in Dombivli,India. I spend my days with my hands in many different areas of web development from back end programming (PHP, Django/Python, Ruby on Rails) to front end engineering (HTML, CSS, and jQuery/Javascript), digital accessibility, user experience and visual design.

  • Dombivli,Maharashtra,India
  • +91 7700056797
  • gdmasurkar@gmail.com
  • www.satvik.online
Me

My Professional Skills

I am constantly researching and learning about the latest tools and frameworks in the fields of front-end development and UI design.

Web Development 90%
SEO Optimization 80%
Software Development 81%
Business Analyst 99%

Automation

Business Development

Responsive Design

App Development

Promote YouTube Channel

Fast support

0
completed project
0
design award
0
facebook like
0
current projects
  • How to Update BIOS: Utilities from Top Motherboard Makers

    PSA: Enthusiasts building their own PCs are accustomed to keeping up with latest drivers, especially when it comes to things like graphics cards. Motherboard BIOS updates are also critical to get the most out of your hardware, but it does happen that when everything is running smoothly after weeks or months, you tend to overlook further BIOS upgrades as they mostly bring compatibility improvements and those are not necessary unless you are switching to newer hardware on the same motherboard.

    This happened at the office recently when one of our Ryzen systems refused to wake up from sleep properly. After much troubleshooting, we couldn't narrow down the issue until we realized this started happening only after we installed a new GeForce RTX graphics card. Long story short, a BIOS upgrade to the latest firmware in our Asrock motherboard was everything we needed.

    Moreover, these days BIOS updates can be performed with ease using Windows utilities offered by most motherboard manufacturers. If you're unsure or don't remember the exact make and model, check out our guide to find your motherboard's brand and model. There are ways to find this on Windows without installing any software, or you can go straight for CPU-Z or Speccy, which will list all your hardware along with some extra system information in a snap.

    Gigabyte @Bios
    The @BIOS live update utility works on the same principle as other utilities listed here, it works with all Gigabyte branded motherboards but instead of an all-in-one utility, there are variants for each major chipset family from AMD and Intel. This means you first have to identify your mainboard's chipset to download the proper @BIOS version.


    Biostar BIOS Update Utility

    Rounding up our list of top 5 motherboard manufacturers, Biostar also offers a BIOS update utility you can run on Windows, letting you check for new versions, then download and install without much fuss.

    ASRock Live Update

    ASRock has given its Live Update utility a spin by adding an "App Shop." If you look pass the bundled app store, there's a pretty straight forward interface for updating your BIOS and system drivers, worth a try if you have an ASRock mainboard.

    Asus Live Update

    The Asus Live Update utility allows you check for new firmware, drivers and BIOS updates. Even though it's generally a trustworthy application, it was recently reported that Live Update servers had been hijacked and compromised (some) systems with malware. The latest revision is safe to use and it does bring about the suggestion to use these utilities for upgrading and then uninstalling them and not allowing them to run when Windows starts.

  • Integration Code to accept manually entered amount from razorpay gateway



    Here is the code developed by me - 
    1)paste below code in pay.php

    <html>
    <head>
    <form method='POST'>
       <h2>Please add amount:</h2>
     <input id = "amt" type="text" name="amt">
     <input type="submit" value="Display Total">
     </form>
    </html>

    <?php
    error_reporting(0);
    {
    $name = $_POST['amt'];
    echo "Total Amount: ₹$name.";
    }
    ?>

    <?php
    error_reporting(0);
    require('config.php');
    require('razorpay-php/Razorpay.php');
    session_start();

    // Create the Razorpay Order


    use Razorpay\Api\Api;

    $api = new Api($keyId, $keySecret);

    //
    // We create an razorpay order using orders api
    // Docs: https://docs.razorpay.com/docs/orders

    //
    $orderData = [
        'receipt'         => 3456,
        'amount'          => $name* 100, // 2000 rupees in paise
        'currency'        => 'INR',
        'payment_capture' => 1 // auto capture
    ];

    $razorpayOrder = $api->order->create($orderData);

    $razorpayOrderId = $razorpayOrder['id'];

    $_SESSION['razorpay_order_id'] = $razorpayOrderId;

    $displayAmount = $amount = $orderData['amount'];

    if ($displayCurrency !== 'INR')
    {
        $url = "https://api.fixer.io/latest?symbols=$displayCurrency&base=INR";
        $exchange = json_decode(file_get_contents($url), true);

        $displayAmount = $exchange['rates'][$displayCurrency] * $amount / 100;
    }

    $checkout = 'automatic';

    if (isset($_GET['checkout']) and in_array($_GET['checkout'], ['automatic', 'manual'], true))
    {
        $checkout = $_GET['checkout'];
    }

    $data = [
        "key"               => $keyId,
        "amount"            => $amount,
        "name"              => "SATVIK MASURKAR",
        "description"       => "SATVIK UNIVERSE",
        "image"             => "SM-Logo.png",
        "prefill"           => [
        "name"              => "",
        "email"             => "",
        "contact"           => "",
        ],
        "notes"             => [
        "address"           => "Hello World",
        "merchant_order_id" => "12312321",
        ],
        "theme"             => [
        "color"             => "#F37254"
        ],
        "order_id"          => $razorpayOrderId,
    ];

    if ($displayCurrency !== 'INR')
    {
        $data['display_currency']  = $displayCurrency;
        $data['display_amount']    = $displayAmount;
    }

    $json = json_encode($data);

    require("checkout/{$checkout}.php");


    2)Here is the verify.php code

    <?php
    error_reporting(0);
    require('config.php');

    session_start();

    require('razorpay-php/Razorpay.php');
    use Razorpay\Api\Api;
    use Razorpay\Api\Errors\SignatureVerificationError;

    $success = true;

    $error = "Payment Failed";

    if (empty($_POST['razorpay_payment_id']) === false)
    {
        $api = new Api($keyId, $keySecret);

        try
        {
            // Please note that the razorpay order ID must
            // come from a trusted source (session here, but
            // could be database or something else)
            $attributes = array(
                'razorpay_order_id' => $_SESSION['razorpay_order_id'],
                'razorpay_payment_id' => $_POST['razorpay_payment_id'],
    'amt' => $_POST['amt'],
                'razorpay_signature' => $_POST['razorpay_signature']
            );

            $api->utility->verifyPaymentSignature($attributes);
        }
        catch(SignatureVerificationError $e)
        {
            $success = false;
            $error = 'Razorpay Error : ' . $e->getMessage();
        }
    }

    if ($success === true)
    {
        $html = "<p>Your payment was successful</p>
                 <p>Payment ID: {$_POST['razorpay_payment_id']}</p>";
    }
    else
    {
        $html = "<p>Your payment failed</p>
                 <p>{$error}</p>";
    }

    echo $html;


  • Best CSS and XML Code for blogger that change your ABOUT ME section

    Here is the code for bloggers:



    1)Just paste below code in your blogger template.

    <!--About section start-->
          <section class='section section-padding about' id='about'>
            <div class='container'>
              <!--Page Header-->
              <div class='row page-header wow fadeInUp animated' style='visibility: visible;'>
                <h1>
                  ABOUT ME
                </h1>
                <div class='border-bottom'/>
              </div>
              <!--Page Content-->
              <div class='row'>
                <div class='about-content'>
                  <!--Basic Info-->
                  <div class='col-md-4 col-sm-7 basic-info wow fadeInUp animated' style='visibility: visible;'>
                    <!-- About Name -->
                    <h1 class='person-title'>Satvik Masurkar</h1>
                    <!-- About Bio -->
                    <p class='bio-text'>
                      I&#8217;m a web developer and graphic designer living in Dombivli,India. I spend my days with my hands in many different areas of web development from back end programming (PHP, Django/Python, Ruby on Rails) to front end engineering (HTML, CSS, and jQuery/Javascript), digital accessibility, user experience and visual design.
                    </p>
                    <ul class='info-list'>
                      <!-- About info -->
                      <li><i class='lnr lnr-map'/>Dombivli,Maharashtra,India</li>
                      <li><i class='lnr lnr-phone'/>+91 7700056797</li>
                      <li><i class='lnr lnr-envelope'/>gdmasurkar@gmail.com</li>
                      <li><i class='lnr lnr-earth'/>www.satvik.online</li>
                    </ul>
                  </div>
                  <!--Profile Photo-->
                  <div class='col-md-4 col-sm-5 profile-photo wow fadeInUp animated' style='visibility: visible;'>
                    <!-- Avatar -->
                    <img alt='Me' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhAyTbHoHOjx2KAs94oICr1GgFeAlf2M9eK3BRA8ezbtYsvEaTDkDPlEawes8bOnguTLPiQ387OQgp7HCdZVpqfbN-N7Dpx1OvrTpgCaapm8GAu3Un7XOIlP-2jPb8w8rHPNMn3fb83g2K8/s320/SM-Logo.png'/>
                  </div>
                  <!--Skills Bar-->
                  <div class='col-md-4 col-md-push-0 col-sm-8 col-sm-push-2 skills-info wow fadeInUp animated' style='visibility: visible;'>
                    <h1 class='title'>My Professional Skills</h1>
                    <p class='skill-text'>
                      I am constantly researching and learning about the latest tools and frameworks in the fields of front-end development and UI design.
                    </p>
                    <div class='social-link' style='margin: 0;padding: 10px 0;text-align: center;'>
                      <!-- About Social Links -->
                      <a href='https://www.facebook.com/satvikmasurkar'><i class='fa fa-facebook'/></a>
                      <a href='https://twitter.com/satvikmasurkar'><i class='fa fa-twitter'/></a>
                      <a href='https://www.youtube.com/channel/UCGHN10qsa_-PG0t2H0eV2QQ'><i class='fa fa-google-plus'/></a>
                      <a href='https://www.linkedin.com/in/satvik-masurkar-12b238193/'><i class='fa fa-linkedin'/></a>
                    </div>
                    <div class='progress-bar-area'>
                      <!--About Skills -->
                      <div class='single-bar'>
                        <div class='skill-info'>
                          <span class='skill-title'>Web Development</span><!--Skills Name-->
                          <span class='skill-percent'>90%</span><!--Skills Percentage-->
                        </div>
                        <div class='progress'>
                          <div class='progress-bar' role='progressbar' style='width: 90%;'/><!--Change Skills Percentage-->
                        </div>
                      </div>
                      <!--Single Skills Bar-->
                      <div class='single-bar'>
                        <div class='skill-info'>
                          <span class='skill-title'>SEO Optimization</span><!--Skills Name-->
                          <span class='skill-percent'>80%</span><!--Skills Percentage-->
                        </div>
                        <div class='progress'>
                          <div class='progress-bar' role='progressbar' style='width: 80%;'/><!--Change Skills Percentage-->
                        </div>
                      </div>
                      <!--Single Skills Bar-->
                      <div class='single-bar'>
                        <div class='skill-info'>
                          <span class='skill-title'>Software Development</span><!--Skills Name-->
                          <span class='skill-percent'>81%</span><!--Skills Percentage-->
                        </div>
                        <div class='progress'>
                          <div class='progress-bar' role='progressbar' style='width: 81%;'/><!--Change Skills Percentage-->
                        </div>
                      </div>
                      <!--Single Skills Bar-->
                      <div class='single-bar'>
                        <div class='skill-info'>
                          <span class='skill-title'>Business Analyst</span><!--Skills Name-->
                          <span class='skill-percent'>99%</span><!--Skills Percentage-->
                        </div>
                        <div class='progress'>
                          <div class='progress-bar' role='progressbar' style='width: 99%;'/><!--Change Skills Percentage-->
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </section>
          <!--About section end-->

    Here is the CSS code

    body {
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-font-smoothing: antialiased;
        text-rendering: optimizeLegibility
    }
    a,
    button {
        -webkit-transition: all .3s;
        transition: all .3s
    }
    a button:hover,
    a:focus,
    a:hover,
    button button:hover,
    button:focus,
    button:hover {
        -webkit-transition: all .3s;
        transition: all .3s;
        text-decoration: none
    }
    .btn {
        border-radius: 0
    }
    .section-title {
        display: block;
        margin-bottom: 100px
    }
    .section-title .title {
        font-weight: 800;
        display: inline-block;
        margin-top: 0;
        margin-bottom: 10px
    }
    .section-title .sub-title {
        font-size: 16px;
        line-height: 30px;
        color: gray
    }
    .section-title.text-left h1 {
        margin-left: 20px
    }
    .section-title.text-right h1 {
        margin-right: 20px
    }
    .light-txt h1,
    .light-txt h5,
    .light-txt p {
        margin-top: 0
    }
    .light-txt .sub-title,
    .light-txt div {
        margin-top: 0;
        color: #fff
    }

    .light-txt h1,
    .light-txt h2,
    .light-txt h3,
    .light-txt h4,
    .light-txt h5,
    .light-txt p,
    .light-txt span {
        color: #fff
    }
    .quote .quote-img img {
        width: 40px;
        height: auto;
        margin-bottom: 15px;
        padding: 10px;
        opacity: .7
    }
    .quote p {
        margin-bottom: 0
    }
    #preloader {
        position: fixed;
        z-index: 1800;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000
    }
    .no-js #preloader,
    .oldie #preloader {
        display: none
    }
    #loader {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60px;
        height: 60px;
        margin: -30px 0 0 -30px;
        padding: 0
    }
    #loader:before {
        display: block;
        width: 60px;
        height: 60px;
        content: '';
        -webkit-animation: load 1.1s infinite linear;
        animation: load 1.1s infinite linear;
        border-top: 2px solid rgba(255, 255, 255, .1);
        border-right: 2px solid rgba(255, 255, 255, .1);
        border-bottom: 2px solid rgba(255, 255, 255, .1);
        border-left: 2px solid #C49B66;
        border-radius: 50%
    }
    @-webkit-keyframes load {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
        }
        to {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
        }
    }
    @keyframes load {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
        }
        to {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
        }
    }
    .white-highlight{
    color:#fff;
    }
    .section-padding{
    padding-top:60px;
    padding-bottom:60px;
    }
    .page-header{
    margin:0px;
    padding:0px;
    border:0px;
    text-align:center;
    position:relative;
    }
    .page-header h1{
        font-weight: 700;
        color: #282528;
        text-transform: uppercase;
    }
    .page-header .border-bottom{
    width:12px;
    height:12px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    margin:0 auto;
    position:relative;
    }
    .page-header .border-bottom:before,
    .page-header .border-bottom:after{
    content:"";
    position:absolute;
    height:1px;
    width:60px;
    }
    .page-header .border-bottom:before{
    left:-70px;
    bottom:5px;
    }
    .page-header .border-bottom:after{
    right:-70px;
    bottom:5px;
    }
    .color-highlight{
    color:#C49B66;
    }
    .page-header .border-bottom{
    border:1px solid #C49B66;
    }
    .page-header .border-bottom:before,
    .page-header .border-bottom:after{
    background:#C49B66;

    }

  • My First Android App | Satvik Masurkar | SM Lock Pro V1.2

    SM Lock Pro V1.2

    Click Here To Download Now

    Click Here To Watch How To Install Downloaded APK?

    1. SM Lock, the perfect companion to help protect your phone privacy and security.
    2. Protect Against Theft
    3. If someone takes your phone while you\'re using it, your phone is unlocked and all your private data is up for grabs.
    4. Always Running
    5. Should something happen, your phone will be quickly locked, dependent on the sensitivity you've set.
    6. Don't forget to disable battery optimization!

    *Screenshots*







  • My Php Project Social Networking Website For Sale

    What is managed social network?
    NO IT SKILLS? Then you need a managed social network. We host and manage and your private social network! We take care about changes, maintenance, backup and configuration. Let us know what you need and we will do it for you.
    What is included in it?
    It includes all available premium components and features listed below! In an easy to use AppStore you can select the components you need to make your social network great. Further you get the Windows Messenger and the Android Mobile App free of charge!
    Why should i use it?
    You should use it because no IT Skills are required and you don't need a separate provider to host your social network. Our team will host and maintain it for you! If there is any question our team will be happy to help you.
    Fully Featured
    Features like groups, photos, files, messages and many many more to makes your social network perfect!

    Components
    Add extra feature in your social network, Expand your social network with freely available components.

    Performance
    Open Source Social Network is the fastest solution out there which uses ressources extremly efficient!

    Multilanguage
    Open Source Social Network is in many languages. You can add as many languages you can.

    Use SOCIAL NETWORK with your own website name, logo, background pictures and colors
    100% user data and content ownership. It‘s all yours
    You can host it on your own web hosting

    Groups
    Photos
    Live Chat
    Messaging
    Wall thread
    Embed videos
    Block Profile
    Likes
    Mobile call link
    User Profile
    Search
    Ads
    Notifications
    Poke
    Friends
    Smiles
    Stats
    Mobile Login
    Comments
    Ban User
    Videos upload
    Users categories
    Multiple Upload
    Dislike
    Birthdays
    Words censorship
    Multiple Colors
    Site offline
    Social Login
    Post Sentiment
    Extended Members
    Post sharing
    Mobile App
    Access Code
    Custom Fields
    Site Moderators
    Premium Themes
    Technical support
    Free core upgrades
    Free Installation
    Reported Contents
    Link Preview
    Hashtags
    Verified Profiles

    Manual Installation: You have the option to install it by your self:

    Social Network Mobile App(Android/App)

    The social network mobile app for your Android and IOS is ready and it is published on the google play and Apple App store! Here a preview:







    Social Network Website(PC Version)






    ₹65,000/-
     Buy Now

    Introduction

    Social media plays a big role in our lives today. We have the access to any kind of information at just a button push away. Anything that is so vastly expanded has both positives and negatives related to it. The power of social media is very high and has its effects on each individual. It is difficult to imagine our lives with social media today and we do pay a price for excessive use. There is a lot of debate about the effects of social media on the society as a whole. Some feel that it’s a boon whereas other feels that it is a curse.

    Positive Effects of Social Media

    Social media allows the social growth of the society and also helps many businesses. It provides tools like social media marketing that can reach a millions of potential clients. We can easily access information and get news through social media. Social media is a great tool for creating awareness about any social cause. Employers can reach out to potential job seekers. It can help many an individuals to have social growth and interaction with the world without having any hitch. Many people use social media to make themselves heard to the higher authorities. It can also help you meet like-minded people.

    Negative Effects of social Media

    Many physiatrists believe that social media is a single most factor causing depression and anxiety in people. It is also a cause of poor mental growth in children. Increased use of social media can lead to poor sleeping patterns. There are many other negative effects like cyber bullying, body image issues etc. as well. There is an increased ‘Fear of Missing out’ (FOMO) at an all-time high in youth because of social media.

    Conclusion: One must carefully weigh the positives and the negatives before engaging excessively in social media. If used in the correct way social media can be a boon for mankind.

    ositive Impacts of Social Media-

    It is a good tool for education.
    It can create awareness for many social issues.
    There is a fast transfer of information online and hence the users can stay well informed.
    It can also be used as a news medium.
    There are few social benefits as well like communication with long distance friends and relatives.
    It can provide great employment opportunities online.
    We agree that there are positive impacts of social network but like everything else it also has cons.

    There are many negative impacts also:

    Negative Impacts of Social Media-

    Enables cheating in exams
    Dropping of grades and performance of students
    Lack of privacy
    Users are vulnerable to cyber-crimes like hacking, identity theft, phishing crimes etc.
    Conclusion: There are no doubt both positive and negative aspects but users should use their own discretion on the usage of social networking. As a student you must balance everything like studies, sports and social media properly to live a fuller life.


  • My Php Project Ecommerce Website For Sale

    Ecommerce Website / Online store management system. It is PHP-based, using a MySQL database and HTML components. Support is provided for different languages and currencies


    Impact on employment
    E-commerce helps create new job opportunities due to information related services, software app and digital products. It also causes job losses. The areas with the greatest predicted job-loss are retail, postal, and travel agencies. The development of e-commerce will create jobs that require highly skilled workers to manage large amounts of information, customer demands, and production processes. In contrast, people with poor technical skills cannot enjoy the wages welfare. On the other hand, because e-commerce requires sufficient stocks that could be delivered to customers in time, the warehouse becomes an important element. Warehouse needs more staff to manage, supervise and organize, thus the condition of warehouse environment will be concerned by employees.

    Impact on customers
    E-commerce brings convenience for customers as they do not have to leave home and only need to browse website online, especially for buying the products which are not sold in nearby shops. It could help customers buy wider range of products and save customers’ time. Consumers also gain power through online shopping. They are able to research products and compare prices among retailers. Also, online shopping often provides sales promotion or discounts code, thus it is more price effective for customers. Moreover, e-commerce provides products’ detailed information; even the in-store staff cannot offer such detailed explanation. Customers can also review and track the order history online.

    E-commerce technologies cut transaction costs by allowing both manufactures and consumers to skip through the intermediaries. This is achieved through by extending the search area best price deals and by group purchase. The success of e-commerce in urban and regional levels depend on how the local firms and consumers have adopted to e-commerce.[72]

    However, e-commerce lacks human interaction for customers, especially who prefer face-to-face connection. Customers are also concerned with the security of online transactions and tend to remain loyal to well-known retailers.[68] In recent years, clothing retailers such as Tommy Hilfiger have started adding Virtual Fit platforms to their e-commerce sites to reduce the risk of customers buying the wrong sized clothes, although these vary greatly in their fit for purpose.When the customer regret the purchase of a product, it involves returning goods and refunding process. This process is inconvenient as customers need to pack and post the goods. If the products are expensive, large or fragile, it refers to safety issues.
    Impact on the environment

    In 2018, E-commerce generated 1.3 million tons of container cardboard in North America, an increase from 1.1 million in 2017. Only 35 percent of North American cardboard manufacturing capacity is from recycled content. The recycling rate in Europe is 80 percent and Asia is 93 percent. Amazon, the largest user of boxes, has a strategy to cut back on packing material and has reduced packaging material used by 19 percent by weight since 2016. Amazon is requiring retailers to manufacture their product packaging in a way that doesn't require additional shipping packaging. Amazon also has an 85-person team researching ways to reduce and improve their packaging and shipping materials.

    Impact on traditional retail

    E-commerce has been cited as a major force for the failure of major U.S. retailers in a trend frequently referred to as a "retail apocalypse." The rise of e-commerce outlets like Amazon has made it harder for traditional retailers to attract customers to their stores and forced companies to change their sales strategies. Many companies have turned to sales promotions and increased digital efforts to lure shoppers while shutting down brick-and-mortar locations. The trend has forced some traditional retailers to shutter its brick and mortar operations.



    Ecommerce website is free open source e-commerce platform for online merchants. ecommerce website provides a professional and reliable foundation from which to build a successful online store. This foundation appeals to a wide variety of users; ranging from seasoned web developers looking for a user-friendly interface to use, to shop owners just launching their business online for the first time. ecommerce website has an extensive amount of features that gives you a strong hold over the customization of your store. With ecommerce website's tools, you can help your online shop live up to its fullest potential.

    Administrator Dashboard
    All the important information available at a glimpse. Get a full overview of what is important with total orders, sales, customers, people online, sales analytics and many more widgets

    User Management
    In order to successfully organize an online store you will need to cooperate with many people, each performing different roles. ecommerce website allows you to set advanced user privileges and separate access for user groups and users.

    Multi-Store
    Manage multiple stores from one admin interface. Set products to appear on different stores. Choose a different theme for each store. Localize store settings. Set per store product prices.

    Options, attributes
    Products come in different options. Some feature sizes, while others colors, length, height. No matter the case ecommerce website offers a solution on adding extra important product variables.

    Affiliates
    ecommerce website comes with an inbuilt Affiliate system, where affiliates can promote specific products and get paid for this. Set different percentages. Offer different payment options such as cheque, Paypal and a bank transfer.

    Discounts, coupons, specials
    Retailers often have to lower their prices to keep up with their competition. ecommerce website offers discounts, coupons and specials to cover the most popular ways to get attention and increase sales.

    Back-up and restore
    Case of emergency? ecommerce website allows you to set up your own back-ups and restorations. Looking for an easy way to update and bulk edit products, categories and everything else ecommerce website? Discover the popular extensions in the marketplace

    WITH ONLINE PAYMENT GATEWAY

    Options, attributes
    ₹45,000/-
     BUY NOW





    GET A FREE QUOTE NOW

    Search This Blog

    Powered by Blogger.
    • ()
    ADDRESS

    Dombivli, Thane, Maharashtra, India

    EMAIL

    gdmasurkar@gmail.com

    TELEPHONE

    +0251 999 9999

    MOBILE

    +91 7700056797