A A Karim

Results 19 comments of A A Karim

You can use `middleProxy.Tr.Proxy`, in your case, to do what you said. Return a `*url.URL` to the upstream Proxy. I have a similar use case and I'm doing this to...

I had exactly the same issue running Debezium and topic compaction causing the consumer group to hang. Updating to v0.4.28 fixed it. Thanks!

I'm using https://github.com/Workfront/phpnats in production and it's working ok. But we can't file issues over there because it's a fork!

Sure. Any suggestions on how to deal with backfilling data? My proposal is an artisan command: `mixpanel:backfill:user-id` which submits an update to each user's Mixpanel profile.

On my end I can confirm that the webhook is *not* working for me in Cashier 10 at all in production, but is working in test. Perhaps in issue with...

I have fixed this by specifying the right model to look for a Cashier billable under. #90

On my signup 'thank you' page I call: ``` @if (Auth::check()) const userId = String({{ \Auth::user()->id }}); mixpanel.alias(userId); @endif ``` This attaches the user's ID to the Mixpanel `distinct_id` and...

Hi, any update on this? We've just paid for the add-on and would like to use our PHP integration to create group profiles :)

With docker-compose you can do this: `docker-compose kill -s SIGINT` If you are using bubbleprof it outputs the .traceevent file as a `node_trace.x.log` file, I copy & paste the contents...

You'll need to set the runtime global variable `__webpack_public_path__` to `ASSET_URL`. create a file called `public-path.js` that needs to be loaded before anything else in your app: ``` if (process.env.ASSET_URL)...