6amMart - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app with Admin & Website

6amMart - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app with Admin & Website v3.1 Untouched

No permission to download

davidvick

Member
Sep 8, 2020
34
5
8
Sweden
Please search in App -> Http -> Middleware And modify ActivationCheckMiddleware.php

With this code:

PHP:
<?php

namespace App\Http\Middleware;

use App\CentralLogics\Helpers;
use Closure;

class ActivationCheckMiddleware
{
    /**
     * Handle an incoming request.
     *
     * @param \Illuminate\Http\Request $request
     * @param \Closure $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        $data = Helpers::requestSender();
        if ($data['active']) {
            return $next($request);
        }
        return redirect(base64_decode('aHR0cHM6Ly82YW10ZWNoLmNvbS9zb2Z0d2FyZS1hY3RpdmF0aW9u'));
    }
}

Note:
Confirm if this solves the problem, to update the download.
not working for me
 

ameypangaonkar

Active member
Hi everyone,

Can anyone let me know how I can install seller & Store on the same mobile?

What change needs to be required?

After installing the user app when I try to install the store app user app is uninstalled and shows only the store app.

At a time I can see only 1 app on mobile.

Please guide.
 

oidmai

New member
May 12, 2022
23
14
3
Am getting this same error

not nulled redirecting to activation code

i had run a clean install which file should we replace for the activation patch issue

Please search in App -> Http -> Middleware And modify ActivationCheckMiddleware.php

With this code:

PHP:
<?php

namespace App\Http\Middleware;

use App\CentralLogics\Helpers;
use Closure;

class ActivationCheckMiddleware
{
    /**
     * Handle an incoming request.
     *
     * @param \Illuminate\Http\Request $request
     * @param \Closure $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        $data = Helpers::requestSender();
        if ($data['active']) {
            return $next($request);
        }
        return redirect(base64_decode('aHR0cHM6Ly82YW10ZWNoLmNvbS9zb2Z0d2FyZS1hY3RpdmF0aW9u'));
    }
}

Note:
Confirm if this solves the problem, to update the download.

didnt worked team, still redirecting :(

Thanks bro for your response,

But it works in local host but not working in hosting strucks in loading screen in hosting how to fix this Screenshot 2023-01-26 145727.jpg

@Doxec I am trying to update to 1.8.0, but it says to enter the code canyon id and pass. I am attaching a screenshot.

Still not working for me

not working for me

For most of the source files that I've tried from CodeCanyon, the activation can be solved by modifying the routes if it can't be bypassed by modifying the license key or activation code field in the installation.

I wasn't able to check the source file from this thread at first because I don't have the requirement to view the password of the file. So I want to thank @ameypangaonkar for sharing the file that doesn't require a password to access it, because of it I was able to explore the system.

Here's what I found, I hope it'll also work for all of you.

Go to route > install.php and remove all the "->middleware('installation-check')" as it was the reason why step 2 routes to the verification of the system before going to step 3. Doing this will force the system to proceed to step 3 and other steps without verification.

1674897695942.png

You don't have to modify ActivationCheckMiddleware.php from App -> Http -> Middleware as what @Doxec stated. But still, I also want to thank you for trying to solve the error for us and for sharing this system.

P.S. If anyone has encountered an error with the installation process, reply down below and if I have spare time I might be able to check the error. As for my part, the installation process went smoothly and I was able to access and login to the admin panel.

1674898113930.png
 

hqtkhobzi

New member
Dec 23, 2022
3
0
1
Hi everyone,

Can anyone let me know how I can install seller & Store on the same mobile?

What change needs to be required?

After installing the user app when I try to install the store app user app is uninstalled and shows only the store app.

At a time I can see only 1 app on mobile.

Please guide.
per my experience as a developer, just use different package names for each app, so they will be recognized as two different apps,
have a nice day
 

davidvick

Member
Sep 8, 2020
34
5
8
Sweden
For most of the source files that I've tried from CodeCanyon, the activation can be solved by modifying the routes if it can't be bypassed by modifying the license key or activation code field in the installation.

I wasn't able to check the source file from this thread at first because I don't have the requirement to view the password of the file. So I want to thank @ameypangaonkar for sharing the file that doesn't require a password to access it, because of it I was able to explore the system.

Here's what I found, I hope it'll also work for all of you.

Go to route > install.php and remove all the "->middleware('installation-check')" as it was the reason why step 2 routes to the verification of the system before going to step 3. Doing this will force the system to proceed to step 3 and other steps without verification.

1674897695942.png

You don't have to modify ActivationCheckMiddleware.php from App -> Http -> Middleware as what @Doxec stated. But still, I also want to thank you for trying to solve the error for us and for sharing this system.

P.S. If anyone has encountered an error with the installation process, reply down below and if I have spare time I might be able to check the error. As for my part, the installation process went smoothly and I was able to access and login to the admin panel.

1674898113930.png
try your solution, but not working for me.
 

Attachments

  • Screenshot 2023-01-28 at 7.57.21 PM.png
    Screenshot 2023-01-28 at 7.57.21 PM.png
    597.2 KB · Views: 17

matlay

Active member
Dec 26, 2020
152
37
28
Please search in App -> Http -> Middleware And modify ActivationCheckMiddleware.php

With this code:

PHP:
<?php

namespace App\Http\Middleware;

use App\CentralLogics\Helpers;
use Closure;

class ActivationCheckMiddleware
{
    /**
     * Handle an incoming request.
     *
     * @param \Illuminate\Http\Request $request
     * @param \Closure $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        $data = Helpers::requestSender();
        if ($data['active']) {
            return $next($request);
        }
        return redirect(base64_decode('aHR0cHM6Ly82YW10ZWNoLmNvbS9zb2Z0d2FyZS1hY3RpdmF0aW9u'));
    }
}

Note:
Confirm if this solves the problem, to update the download.
Unclosed '{' on line 9 this is the error am getting afte replacing this
 

DatDudeUpStairs

Be the change that you wish to see in the world.
Trusted Uploader
Jun 30, 2019
1,334
786
113
Asgardia
The file I shared was the current latest update, the v1.8 (v1.8.0). However, it was deleted by an admin (?) as it wasn't allowed to share files here other than the file shared by the thread author. My bad
Yeah as the original uploader has put restrictions on his resource we have to abide by his rules.
Thank you for understanding.

 
  • Love
Reactions: oidmai

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