Navjeet
Navjeet
I am seeing the same issue on OSX. I am using mysql version 5.6.22 installed with homebrew.
After I added the following settings to mysql .cnf file. an update directly made to mysql table is reflected in web app now server-id = 1 binlog_format = row log_bin...
Here is the code from 3 relevant files: * app/views/layouts/application.html.erb ``` ``` * app/views/projects/index.html.erb `` * app/javascript/packs/projects.js ``` import TurbolinksAdapter from 'vue-turbolinks'; import Vue from 'vue' import App from '../parts/projects.vue'...
Looks like `vue-turbolinks` is the issue in PROD. If I replace that with just _turbolinks_ npm module, remove `Vue.use(TurbolinksAdapter)` and add `Turbolinks.start()` at the end, it seems to work. So...
Huy, how did you run the tests? I cannot seem to get any output either on console or in the files in build/output folder. I am running by using the...
Well I can't seem to run the tests but I downloaded the latest code today, started solandra, created a core (njs_test) with schema.xml that comes with code and then added...
This really helped me to get the module working with ejabberd 16.x. Thanks
The way I did was to get ejabberd source code from https://github.com/processone/ejabberd. Cloned https://github.com/adamvduke/mod_interact/ into a new folder Copied erlang files from mod_interact/src folder to src folder under ejabberd source...
Cross posted to Stackoverflow https://stackoverflow.com/questions/77782450/null-values-sent-in-response-json-by-graphql-spqr
Reload issue solved by modifying main.js ``` let app; /* eslint-disable no-new */ firebase.auth().onAuthStateChanged((user) => { if (!app) { app = new Vue({ el: '#app', router, components: { App },...