• The default language of any content posted is English.
6amMart - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app

6amMart - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app 2.5.2 NULLED

sa
i need some help !
i have 6ammmart
in app user i get loop detected when it get location and some time get (too many requests) why ?
can any one help me please ?
thanks
 
sa
i need some help !
i have 6ammmart
in app user i get loop detected when it get location and some time get (too many requests) why ?
can any one help me please ?
thanks
This is server issue nothing else ...increase server api request
 
sa
i need some help !
i have 6ammmart
in app user i get loop detected when it get location and some time get (too many requests) why ?
can any one help me please ?
thanks
The problem is with laravel's rate limit for api routes.

Go to app > Http > Kernal.php file and look for

PHP:
/**
* The application's route middleware groups.
*
* @var array
*/
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
// \Illuminate\Session\Middleware\AuthenticateSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],

'api' => [
'throttle:api',
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
];

make the following changes

PHP:
'api' => [
'throttle:100,1', // sets the limit to 100 requests per minute
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],

the default is 60,1 which is 60 requests per minute

Edit: Sorry i just remember you could change the limit from the Route Service Provider

Go to app > Providers > RouteServiceProvider.php :
Post automatically merged:

PHP:
/**
 * Configure the rate limiters for the application.
 *
 * @return void
 */
protected function configureRateLimiting()
{
    RateLimiter::for('api', function (Request $request) {
        // Increase the perMinute value.
        return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
    });
}
 
I am not getting upload button on system addon for uploading sms module only drag and dropworking but not upload button shows please suggest me.
 
The problem is with laravel's rate limit for api routes.

Go to app > Http > Kernal.php file and look for

PHP:
/**
* The application's route middleware groups.
*
* @var array
*/
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
// \Illuminate\Session\Middleware\AuthenticateSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],

'api' => [
'throttle:api',
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
];

make the following changes

PHP:
'api' => [
'throttle:100,1', // sets the limit to 100 requests per minute
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],

the default is 60,1 which is 60 requests per minute

Edit: Sorry i just remember you could change the limit from the Route Service Provider

Go to app > Providers > RouteServiceProvider.php :
Post automatically merged:

PHP:
/**
 * Configure the rate limiters for the application.
 *
 * @return void
 */
protected function configureRateLimiting()
{
    RateLimiter::for('api', function (Request $request) {
        // Increase the perMinute value.
        return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
    });
}
Thanks for your time.
I do everything.
That's happened
 

Attachments

  • IMG_٢٠٢٣١٢٣٠_٢١٣٦١٧.jpg
    IMG_٢٠٢٣١٢٣٠_٢١٣٦١٧.jpg
    7.4 MB · Views: 23
  • IMG_٢٠٢٣١٢٣٠_٢١٣٥٣٢.jpg
    IMG_٢٠٢٣١٢٣٠_٢١٣٥٣٢.jpg
    8 MB · Views: 20
Please upload 6ammart 2.5.1
Released on 03 January 2024


- Optimized and restructured all blade pages code in backend and web panels.
- Fixed issues
- Made the apps compatible with flutter SDK 3.16.5
 

6amMart - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app​

v2.5.1 Untouched​


Download 6amMart v2.5.1 - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app with Admin & Website Nulled Free
v2.5.1 - 03 January 2024

- Optimized and restructured all blade pages code in backend and web panels.
- Fixed issues
- Made the apps compatible with flutter SDK 3.16.5

 

6amMart - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app​

v2.5.1 Untouched​




*** Hidden text: cannot be quoted. ***
AFTER EVERY IS DONE SUCESSFULLY, WHEN I TRY TO LOGIN IT BRINGS THE ACTIVATION SCREEN, MEANWHILE LANDING PAGES WORKS PERFECTLY WELL. PLEASE HELP
 

Attachments

  • Screenshot 2024-01-13 071357.png
    Screenshot 2024-01-13 071357.png
    33.5 KB · Views: 29
Top