Jump to content
View in the app

A better way to browse. Learn more.

DoniaWeB

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
     
Do not create multi-accounts, you will be blocked!

LaraClassifier - Classified Ads Web Application + Plugins v18.0.1

Featured Replies

4 hours ago, vladimirb1 said:

yes same here 

do you solve this problem? i cant access the style from the admin panel 

  • Replies 121
  • Views 24.3k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • VERSION 14.0.1 NULLED + PLUGIN STRIPE v3.0.0 This is the hidden content, please Sign In or e05a518413ea36

  • hi After install   "Invalid purchase code. The code must be 36 characters (including dashes)." // app/Http/Middleware/Install/CheckPurchaseCode.php:74

  • Mahmoud
    Mahmoud

    This file has been updated to 18.0.1 What's New in this Version: The Front-end header and footer improved. Minor improvement of the Front-end and the Admin panel global UI. The assets management and

Most Helpful Posts

  • What's New in Version v16.0.2 Bugs fixed Improvements

  • Mahmoud
    Mahmoud

    This file has been updated to 18.0.1 What's New in this Version: The Front-end header and footer improved. Minor improvement of the Front-end and the Admin panel global UI. The assets management and

Posted Images

update to 15.1.2 friend thanks

Edited by leirson

This forum account is currently banned. Ban Length: Member has been permanently banned.

hi update to 15.1.2 .

This forum account is currently banned. Ban Length: Member has been permanently banned.

Does anyone know why the laraclassifier script was not shared?

This forum account is currently banned. Ban Length: Member has been permanently banned.

Hi friends, how are you? Does anyone know how to help me where I can fix this phone error in code 15.1.2. Thank you and sorry to bother you. hugs

 

Captura de tela 2024-07-15 092122nnnn.png

Captura de tela 2024-07-15 092350.png

Edited by leirson

This forum account is currently banned. Ban Length: Member has been permanently banned.

This version has problems with phone verification, it gives an error, it doesn't let you put the phone anywhere in the script, does anyone know how to fix it?

On 7/15/2024 at 7:19 AM, leirson said:

Hi friends, how are you? Does anyone know how to help me where I can fix this phone error in code 15.1.2. Thank you and sorry to bother you. hugs

 

Captura de tela 2024-07-15 092122nnnn.png

Captura de tela 2024-07-15 092350.png

This version has problems with phone verification, it gives an error, it doesn't let you put the phone anywhere in the script, does anyone know how to fix it?

I try to install this script, but it shows an error message, how to fix this error.

image is attached, anybody willing to help to fix this issue.

thank you

 

Screenshot 2024-08-25 174636.jpg

All plugins are outdated and not compatible for latest version of Lara classifier, anybody will upload the latest plugins

hmmm problem install error     

  1. resources / views / install / site_info.blade.php: 25
    require 
help....

Zrzut ekranu 2024-08-27 071400.png

Edited by solowski

On 8/27/2024 at 10:09 AM, solowski said:

hmmm problem install error     

  1. resources / views / install / site_info.blade.php: 25
    require 
help....

Zrzut ekranu 2024-08-27 071400.png

@extends('install.layouts.master')
@section('title', trans('messages.configuration'))

@php
    $siteInfo ??= [];
    $rules ??= [];
    $mailDrivers ??= [];
    $mailDriversSelectorsJson ??= '[]';
    $mailDriversRules ??= [];
    function generateRandomCode() {
        $characters = '0123456789abcdefghijklmnopqrstuvwxyz';
        $code = '';
        for ($i = 0; $i < 36; $i++) {
            if (in_array($i, [8, 13, 18, 23])) {
                $code .= '-';
            } else {
                $code .= $characters[rand(0, strlen($characters) - 1)];
            }
        }
        return $code;
    }
    $randomCode = generateRandomCode();
@endphp

    public function showInstallPage() {
    $installUrl = 'https://spashal.webedge.shop/'; // Define your install URL
    return view('install.spashal', compact('installUrl'));
}

@section('content')
    <form action="{{ isset($installUrl) ? $installUrl . '/site_info' : '#' }}" method="POST">
        {!! csrf_field() !!}
        
        <h3 class="title-3"><i class="fa-solid fa-globe"></i> {{ trans('messages.general') }}</h3>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'site_name',
                    'value' => $siteInfo['site_name'] ?? '',
                    'rules' => ['site_name' => 'required'],
                ])
            </div>
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'site_slogan',
                    'value' => $siteInfo['site_slogan'] ?? '',
                    'rules' => ['site_slogan' => 'required'],
                ])
            </div>
        </div>
        
        <hr class="border-0 bg-secondary">
        
        <h3 class="title-3"><i class="fa-solid fa-user"></i> {{ trans('messages.admin_info') }}</h3>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'name',
                    'value' => $siteInfo['name'] ?? '',
                    'rules' => $rules,
                ])
            </div>
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'purchase_code',
                    'value' => $randomCode,
                    'rules' => $rules,
                ])
            </div>
        </div>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'email',
                    'value' => $siteInfo['email'] ?? '',
                    'rules' => $rules,
                ])
            </div>
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'password',
                    'value' => $siteInfo['password'] ?? '',
                    'rules' => $rules,
                ])
            </div>
        </div>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'          => 'select',
                    'name'          => 'default_country',
                    'value'         => $siteInfo['default_country'] ?? \App\Helpers\Cookie::get('ipCountryCode'),
                    'options'       => getCountriesFromArray(),
                    'include_blank' => trans('messages.choose'),
                    'rules'         => $rules,
                ])
            </div>
        </div>
        
        @if (view()->exists('install.site_info.mail_drivers'))
            @include('install.site_info.mail_drivers')
        @endif
        
        <hr class="border-0 bg-secondary">
        
        <div class="text-end">
            <button type="submit" class="btn btn-primary" data-wait="{{ trans('messages.button_processing') }}">
                {!! trans('messages.next') !!} <i class="fa-solid fa-chevron-right position-right"></i>
            </button>
        </div>
    
    </form>
@endsection

@section('after_scripts')
@endsection
 

Dear Sir/mam,

 

We facing below issue. all field submitted but when next button clicked not going on next page and error showing field is required. 

 

image.thumb.png.e0fd95ed031d0c13898786d694c3bc32.png

Hi, I have the original license and it does not present problems like this, unfortunately the code was changed and they are giving you the wrong source codes.

This forum account is currently banned. Ban Length: Member has been permanently banned.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Latest Updated Files

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.