What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!
zCart Multi-Vendor eCommerce Marketplace incevio

NULLED zCart Multi-Vendor eCommerce Marketplace incevio 2.17.1 NULLED

@raz0r While Installing Plugins its asking for license. I tried to enter the random value in license code its not working.

View attachment 47480
Open app\Http\Requests\Validations\PackageInstallationRequest.php and replace code:
Code:
<?php

namespace App\Http\Requests\Validations;

use App\Http\Requests\Request;
use App\Rules\License;

class PackageInstallationRequest extends Request
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return $this->user()->isAdmin();
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [];
    }

    /**
     * Get the error messages for the defined validation rules.
     *
     * @return array
     */
    public function messages()
    {
        return [
            'license_key.alpha_dash' => trans('app.invalid_license_key'),
        ];
    }
}
 
raz0r 's signature
Reacted by:
  • Like
Reactions: WhiteAngel
Open app\Http\Requests\Validations\PackageInstallationRequest.php and replace code:
Code:
<?php

namespace App\Http\Requests\Validations;

use App\Http\Requests\Request;
use App\Rules\License;

class PackageInstallationRequest extends Request
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return $this->user()->isAdmin();
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [];
    }

    /**
     * Get the error messages for the defined validation rules.
     *
     * @return array
     */
    public function messages()
    {
        return [
            'license_key.alpha_dash' => trans('app.invalid_license_key'),
        ];
    }
}
@raz0r I Tried It after entering the random license details, the following error is observed.
1746533220612.png
 
Reacted by:
Top