Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
1 answer
499 views

Rocket.Chat ignores "ROOT_URL"

I downloaded the new Rocket.Chat 6.4.4 from tar.gz file (installing it as a service without docker)I and set up the service with the below environment variables: ROOT_URL="https://full.domain....
Tamar's user avatar
  • 679
0 votes
1 answer
425 views

Meteor application not deploying, Errors prevented startup

I cloned the rocket chat repo on GitHub and ran meteor npm install && meteor, it wasn't able to deploy the app and got stuck, so I exited and tried meteor but it throws the same error: Errors ...
Odasaku's user avatar
  • 367
0 votes
1 answer
328 views

REST-API users.list with the eppn

Since we have some integrations with Rocket.Chat, we do use the API to create, query and subscribe User of a System to the Rocket.Chat. We use the SAML authentication and we work with the eppn ...
Nberardi's user avatar
1 vote
0 answers
1k views

Message not sent/received unless a page will be reload in Rocketchat

We’ve cloned the latest rocket chat repo from git and introduced some custom APIs to meet our client’s requirements. The update chat (having custom APIs) is working fine on local. But after deploying ...
Junaid Tariq's user avatar
0 votes
1 answer
158 views

Rocketchat production grade, still a good choice for deployment with Meteor Galaxy?

Is it still advisable to deploy a production grade version of Rocket.Chat using Meteor Galaxy as the Host? I am also using a MongoDb Atlas with a replica set as the host. I found this: https://...
Anthony Manzo's user avatar
0 votes
0 answers
156 views

Rocket.Chat Meteor server: call method after message was post?

For example: we have a user. This user post a message. I need to execute method before this message will be saved to database or right after it. Basicly I want to modify this message. Could some one ...
Mytap's user avatar
  • 203
3 votes
1 answer
216 views

Connect rockat.chat mongo database using php script

I needs to use the mongo database of Rocket chat 3.0.0 using php script remotely but its not working. here is my script $manager = new MongoDB\Client( 'mongodb://uname:password@Ip of server:port' );...
Chetan Nakum's user avatar
0 votes
0 answers
268 views

Using curl with Meteor API in rocket chat results in an error

Trying to curl Ombi API in Rocket.Chat Webhook script using Meteor API. This is my script: class Script { prepare_outgoing_request({ request }) { console.log("SENDING POST"); var text = ...
Fredrik Burmester's user avatar
2 votes
0 answers
68 views

Accessing meteor shell in rocketchat which is installed by snap

I have a rocketchat server, and I have installed it with snap. Now I need to run some commands using meteor shell but I don't know how to access it !
razieh babaee's user avatar
1 vote
0 answers
125 views

Hubot: Class' methods are not overridden in Rocket.Chat / Meteor / JavaScript

Rocket.Chat has deprecated and removed Internal Hubot functionality, but in our company we have some script that can't be moved to external bot at this moment, so we wanted to maintain Internal Hubot ...
Wirone's user avatar
  • 3,388
0 votes
1 answer
2k views

Getting message: "Match failed [400]", errorType: "Meteor.Error" when using rocketchat methods(loadHistory) in Reactjs

I am trying to integrate Rocket chat to my application using asteroid but when I use Rocket.chat's LoadHistory method I get {isClientSafe: true, error: 400, reason: "Match failed", message: "Match ...
toel's user avatar
  • 155
0 votes
0 answers
298 views

Meteor: error: Can't install npm dependencies

I want to install Rocket.Chat and Meteor on Freebsd 10.3 Does anyone know why when running NPM through Meteor, it is failing to download and install the modules: [rocketchat@web ~/meteor]$ ./...
mmmaks2004 mmmaks2004's user avatar
1 vote
2 answers
2k views

API Call in Rocket.Chat Integration

I am trying to further extend the telegram-rocket.chat bridge and need to call some apis for that. For this, rocket.chat exposes a Meteor.js wrapper called HTTP. This code snippet is an outgoing-hook ...
Michael's user avatar
  • 672
2 votes
1 answer
1k views

Rocketchat running in docker after Nginx reverse proxy throws blank screen

I have a rocketchat running well when I access it directly (i.e via docker port). But while trying to access from nginx as reverse proxy, I am getting blank page. Any idea what is wrong here? I have ...
Alagunambi Welkin's user avatar
2 votes
0 answers
730 views

How do I get Rocket.Chat to trust my company's root CA certificate?

In order to create an outgoing WebHook, I need to trust my company's root CA certificate, which is inserted into all traffic going through our network. I have tried everything as I described in the ...
mydoghasworms's user avatar
0 votes
1 answer
4k views

Rocket.Chat build failing with error "Cannot find module '../build/Release/sharp.node' "

I cloned the git repository for Rocket.Chat on WINDOWS 7 machine. Followed dev env setup for Rocket.Chat, then I ran command meteor npm install followed by meteor run. I received error stack; D:...
Ankur Soni's user avatar
  • 5,998
2 votes
0 answers
379 views

Add new Subscription to Rocket chat

I want to create a new subscription e.g (stream-all-messages) in Rocket Chat same as stream-room-messages which is already present in docs. I am using DDP listener to test it, following are the ...
Amit Sharma's user avatar
  • 3,477
1 vote
0 answers
435 views

How to connect multiple users to livechat in RocketChat?

Its needed to implement communication between several logged-in users (from one side) and an agent (or agents from another side). Livechat is working good for agent-to-user chat, but how to connect ...
alexloiko's user avatar
2 votes
1 answer
161 views

How to manage access rights for rocket.chat, so that all users are not visible to everyone?

I am using Rocket.chat as part of a website, where users from different organizations can log in and chat with their colleagues. How to configure rocket.chat so that users from different ...
Ali Alavi's user avatar
  • 2,447
2 votes
2 answers
780 views

Using DDP in Angular 4 Application

I am Angular 4 developer. Want to include RocketChat Engine developed in MeteorJS. By research I got to know that it will need DDP(Protocol) to connect Angular4 with Meteor. I am unable to find any ...
Mayur Champaneria's user avatar
1 vote
1 answer
1k views

Issue with sending LiveChat messages via DDP in RocketChat

I am trying to use the DDP Realtime API to initiate a LiveChat conversation but I am facing issues. https://rocket.chat/docs/developer-guides/realtime-api/livechat-api I am doing all the steps as ...
geeky_monster's user avatar
3 votes
0 answers
46 views

How to differentiate publications w/o param & stream with DDP?

Rocket Chat Understanding As per my understanding on Rocket Chat platform(correct me if I am going in wrong directions), we(Android native - DDP) have 2 abstract class for subscription from ...
jignesh.world's user avatar
-1 votes
2 answers
353 views

Changes made to Rocket.Chat are not included after building

I'm new to developing with Meteor and node-based apps. I intend to create a PR for a problem i noticed in Rocket.Chat. I git cloned the Rocket.Chat dev branch and made a change to a certain file: ...
johnyb0y's user avatar
0 votes
1 answer
346 views

Rocket Chat Filter changes with result set

I am updating the rocket chat app to have a departments filter on the department list page. I am running into an issue where my filter seems to be tied to the same collection as the result set. So ...
John Graham's user avatar
0 votes
2 answers
831 views

Meteor npm start not working (Rocket.Chat)

I just cloned Rocket.Chat code and remove the .git from cloned code and init my git and pushed in my repository. But when I am trying to clone it somewhere else from my repository and trying to start ...
Ajay Khunti's user avatar
1 vote
1 answer
375 views

meteor How can I login without password

The situation is that I have a Meteor app, and now have an another app wanna login to my app, and it provided a sessionId to me, I will use the Id to request username, if responsed the username in my ...
Jins Chow's user avatar
-2 votes
2 answers
357 views

Details to run the app for mobile version using Rocket.Chat.Cordova

Could you detail a bit more here please: https://github.com/RocketChat/Rocket.Chat.Cordova/blob/develop/README.md#attention I'd like my users to be able to use the mobile app. I tried (hard) to ...
user3931619's user avatar
1 vote
1 answer
157 views

WebStorm shows reserved word at import

I'm using WebStorm to edit rocket.chat project which based on Meteor, but the WebStorm always shows 'reserved word' warning at import on Coffee files. The project runs well -- it seems only the ...
Wayn Liu's user avatar
  • 394
0 votes
0 answers
107 views

npm start meteor fails at meteor npm i && meteor

I have been trying to set up development machine for Rocket.Chat on Ubuntu 16.04. Followed the steps given for prerequisite installations on the site and trying to execute npm start meteor. However ...
sdpolke's user avatar
  • 23
-1 votes
1 answer
1k views

Is it possible to install rocket.chat on shared server?

I tried to install rocket.chat on my shared hosting from godaddy, using ssh. But there were few permission erros. Is it possible to install without sudo access? using cd $HOME/rocketchat/bundle/...
Vallabh Rao's user avatar
1 vote
1 answer
180 views

Rocket chat: Determine if the app is running in Desktop or browser

Is there anyway to determine if the Rocket.chat app is running in desktop or browser? Thank you in advance. :)
ramanamatya's user avatar
0 votes
1 answer
167 views

Meteor build not working

"meteor build" not working for me http://screencast.com/t/iOjtsnA2l I am on ubuntu 14 - Amazon Web Services (AWS) And I used these steps https://rocket.chat/docs/developer-guides/pre-requisites/ ...
MedBou's user avatar
  • 25
0 votes
1 answer
439 views

Running rocket.chat on docker composer. Where are source codes?

This is probably a stupid question but I am running rocket.chat deployed w/ docker compose. I'm trying to customize the app but I don't know where to access the source codes. I don't really have full ...
inertia's user avatar
  • 4,127
1 vote
0 answers
386 views

Rocket.Chat Livechat Internal server error

I clone master branch in my local and load Rocket.Chat and everything works good but I have problem with Livechat. I want to START CHAT with Livechat. First step: Enable Livechat Next Step: ...
majidfathi69's user avatar
  • 1,799
4 votes
0 answers
1k views

Can't run Rocket.Chat on Mac

I'm trying to run the Rocket.Chat on my Mac & I'm getting this error. I've tried to fix it but I'm not having any luck with it. Any idea on how I might be able to fix this? I get the following ...
rubyist's user avatar
  • 409
5 votes
0 answers
708 views

How to set a file path or a symlink path for rocketchat(meteor) app running in ubuntu

I am new to node.js, meteor. I am working with analyzing an app (Rocket Chat) which was build using meteor. I am trying to setup rocket chat app demo with localhost. So I just download app source ...
Chandran G's user avatar
1 vote
0 answers
3k views

How to enable encryption in Rocket Chat?

I am trying to add an encryption plugin to Rocket chat - rocketchat-sharedsecret. But it requires jparker:crypto-aes. and in RocketChat I see only jparker_crypto-core.js jparker_crypto-core.js....
mikonoid's user avatar