jetsadaks99
New member
- Messages
- 23
- Reactions
- 15
It works, I tested it on a real Host.any one have the same problem ? , impossible to drag drop payment gatways module here
View attachment 22813
Reacted by:
It works, I tested it on a real Host.any one have the same problem ? , impossible to drag drop payment gatways module here
View attachment 22813
it work after creating a virtual domain for my localhost envirenment , it will not work directly on localhost with out virtual domainIt works, I tested it on a real Host.
View attachment 22816
xampp with php 8.1 or what ?it work on localhost
View attachment 22837
I sent it to you Download here Myfile php.ini php8.1xampp with php 8.1 or what ?
can you send me your php.ini config
This is server issue nothing else ...increase server api requestsa
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
The problem is with laravel's rate limit for api routes.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
/**
* 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.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()); }); }
when i do Pick Location this happenedThanks for your time.
I do everything.
That's happened
Hi, PM me your backend URL to test on my app.when i do Pick Location this happened
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
AFTER EVERY IS DONE SUCESSFULLY, WHEN I TRY TO LOGIN IT BRINGS THE ACTIVATION SCREEN, MEANWHILE LANDING PAGES WORKS PERFECTLY WELL. PLEASE HELP6amMart - Multivendor Food, Grocery, eCommerce, Parcel, Pharmacy delivery app
v2.5.1 Untouched
*** Hidden text: cannot be quoted. ***
They will help you here..AFTER EVERY IS DONE SUCESSFULLY, WHEN I TRY TO LOGIN IT BRINGS THE ACTIVATION SCREEN, MEANWHILE LANDING PAGES WORKS PERFECTLY WELL. PLEASE HELP