Are you sure you didn't create a table called appscheduler_users?
Can you share the full error?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have an application deployed on a shared hosting server. I have a sign up form that fails and has the error:
myapp_whm.appscheduler_users doesn't exist
My .env file:
APP_ENV=development
APP_KEY=base64:8/********************=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://myapp.com
DB_HOST=http://myapp.com
DB_DATABASE=myapp_whm
DB_USERNAME=**********
DB_PASSWORD=**********
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
The authcontroller uses the following:
<?php
namespace App\Http\Controllers;
use Auth;
use App\Models\User;
use Illuminate\Http\Request;
use Session;
...
and the User Model:
<?php namespace App\Models;
use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
class User extends Model implements AuthenticatableContract
{
use Authenticatable;
protected $table = 'users';
protected $fillable = [
...
actually it was there in the controller all along:
'email'=>'required|unique:appscheduler_users|email|max:255',
Please or to participate in this conversation.