StoreGo SaaS - Online Store Builder

StoreGo SaaS - Online Store Builder v7.1 Untouched

No permission to download

alexmariano

New member
Nov 2, 2022
0
0
0
If you're getting this error from the installation page
"SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`))"

You need to go to app/providers and open "AppServiceProivder.php". Once you have it opened you need to add "use Illuminate\Support\Facades\Schema;" above or underneath the preexisting line "use Illuminate\Support\ServiceProvider;". Once you have that added go to the public function boot() { } and add "Schema::defaultStringLength(191);" It should look like this

Code:
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        Schema::defaultStringLength(191);
    }
}
 

kasperdz

Member
Aug 3, 2020
33
7
8
there is new update

3.2 - February 2nd 2022​

  • Added reCaptcha in login, register & reset password page. Added
  • Admin can enabled/disabled user register module. Added
 

jersonflorez

Member
Aug 18, 2019
35
17
8
Hello again, thanks for contacting me
any one who wants to null this just navigate to the file " Response.php " located in " main_file\vendor\symfony\http-foundation\ " and comment the following 3 lines

line 451
//return $_string_header;

line 461
//return $_string_header;

line 471
//return $_string_body;
 

Klrahul

Active member
May 2, 2022
190
72
28
Babiato😍
babiato.tech
Hello everyone, Thanks for sharing this script. I installed the script successfully. But after changing the theme color and currency, I am getting a blank screen.

1652635077136.png

Does anyone is facing the same issue?

Awaiting your reply
 

nateola44

New member
May 18, 2022
6
0
1
After installing, I got an error 500. 'Sorry, something has gone wrong on the website's server'
Please I need assistance
 

Attachments

  • Screenshot_20220519-003244_Chrome.jpg
    Screenshot_20220519-003244_Chrome.jpg
    96.8 KB · Views: 13

Forum statistics

Threads
69,206
Messages
908,333
Members
236,836
Latest member
torinouq

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu