Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    Base table or view not found

    General Discussion
    1
    2
    152
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • U
      Uyo-obong last edited by

      Please I encounter this issue for a while on a fresh installed bagisto. I tried searching online for solution but no article that can solve this. I manually removed cache folder inside bootstrap and also remove vendor. I ran composer update, composer du etc but nothing happen.

      Please I need help on how to get rid of this Screenshot_20210716_092908.png

      1 Reply Last reply Reply Quote 0
      • U
        Uyo-obong last edited by

        Alright, I figure out the course of this error. In case you encounter this error, there is a possibility that you are using MarketPlace extension from bagisto.

        What you have to do is to go marketplace -> src -> poviders -> marketplaceserviceprovider.php Inside you will see $this->app->register(ModuleServiceProvider::class); and $this->app->register(EventServiceProvider::class);

        Then wrap it inside if statement like this...

         public function __contruct()
         {
             $this->channel = Channel::all();
         }
        
        if (isset($this->channel)) 
        {
             $this->app->register(ModuleServiceProvider::class);
        
             $this->app->register(EventServiceProvider::class);
          }
        

        ===============================================
        To produce this error, setup a fresh nagisto and configure marketplace extension at once before runing migration.

        1 Reply Last reply Reply Quote 0
        • First post
          Last post