Navigation

    QloApps Forums

    QloApps Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. ayushwebkul
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 0
    • Groups 0

    ayushwebkul

    @ayushwebkul

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ayushwebkul Follow

    Best posts made by ayushwebkul

    This user hasn't posted anything yet.

    Latest posts made by ayushwebkul

    • RE: Docker installation

      @tejastra
      We replicate the issue at our end, got the same error you were getting while connecting cloud SQL database with qloapps :-

      Storage engine MyISAM is disabled (Table creation is disallowed).

      Here is the workaround of your problem:-

      1. Open the file located at :- PATH_TO_QLOAPPS_FILES/classes/db/DbMySQLi.php
        look for this funtion :-
        checkCreatePrivilege($server, $user, $pwd, $db, $prefix, $engine = null)

      under this look for -

      if ($engine === null) {
      $engine = 'MyISAM';
      }

      and patch like this:

      if ($engine === null) {
      $engine = 'InnoDB';
      }

      save the changes, and then you should be able to successfully connect your Cloud SQL database with Qloapps.

      Do let us know how it goes,
      Thanks

      posted in General Discussion
      A
      ayushwebkul