Clifford Meece

Results 13 comments of Clifford Meece

As an update, if I run my app on my staging server and create an SSH tunnel to it so that I am tunneling my laptop port 8080 across ssh...

by adding this to my apache config, I was able to get a little further: AllowEncodedSlashes NoDecode No, I don't get the 404's anymore. It seems Apache mod_proxy was not...

thank you, I was kinda assuming that it would, but thought I'd ask anyway.

I had to modify the 'body' attribute to something like this: ``` export const PostsElasticIndex = new Index({ collection: Posts, name: 'postsElasticIndex', fields: ['title','content'], engine: new ElasticSearchEngine({ body: function(body, options)...

I was able to get it running, but you have to make a few modifications as ElasticSearch has deprecated a few things. For one, easy-search composes an elastic search 'body'...

oh, also, you need to explicitly include the elastic engine, so this: ``` meteor add easysearch:elasticsearch ``` and: ``` import { Index, MongoDBEngine } from 'meteor/easy:search' import { ElasticSearchEngine }...

I thought #254 was more about getting content from groups that a user is a part of. I think this issue is just about being about to get the group...

anyway, for my case, I thought I might as well add another relation, relating the group to the og membership, then the membership to the user, then filtering on the...

nice, good to know. In the interim, it was not that hard to setup a self hosted iframely server which works pretty good, although I still think a native node...

I've been trying to write a plugin using the downcast converter to automatically add an anchor tags to heading tags. I can't get it to work...in the interim before this...