SlideShare a Scribd company logo
User Manual
2 Designed and Powered by
Table of Contents
How can I install chat add-on?............................................................................... 3
Requirements ..................................................................................................... 3
Installation.......................................................................................................... 3
Add-on Installation ............................................................................................. 5
For Upgrading AddonInstaller:-........................................................................... 6
For Install Node.js............................................................................................... 7
How can I use or start conversation with my users?.............................................. 9
What are the features in the chat? ...................................................................... 11
Chat with User:................................................................................................. 11
Chat with Team:................................................................................................ 13
Save as Task:..................................................................................................... 15
Share Files:........................................................................................................ 15
Real-time availability: ....................................................................................... 16
User Role: ......................................................................................................... 17
Which users will be available for chat? ................................................................ 18
Can I chat with my clients? .................................................................................. 18
How can I create a group in chat?........................................................................ 19
How can I check my recent conversation?........................................................... 21
How can a user know if I send a message? .......................................................... 21
3 Designed and Powered by
How can I install chat add-on?
Requirements
* Apache with `mod_rewrite`
* Enable curl in php.ini
* Change the 'post_max_size' and `upload_max_filesize` to 200Mb in
php.ini
* PHP 5.4 or higher and less than PHP 7
* MySQL 4.1 or higher
* If STRICT mode is On, turn it Off.
Installation
Below prerequisites need to be taken care of prior to installation.
The most important thing is if you have already purchased any add-on before
16th July 2016, then contact us at "support@orangescrum.org" before you
proceed to the following.
Note: If you have already installed the AddonInstaller before then no need to
install it again. Only exception is if you are finding any new version of installer or
you have not installed before then follow the below steps for successful and
seamless installation.
 Make sure to keep a backup of your existing "app" folder of your current
working directory.
 Extract the zip file(AddonInstaller-V1.0.zip) to your desktop.
 Remove the existing "app" folder from your working directory then copy
and paste the extracted "app" folder inside "AddonInstaller-V1.0" to your
working directory.
4 Designed and Powered by
 If you are using local machine as storage (excluding Amazon S3), please
replace the folder, named "files" inside the "app/webroot" folder from the
back up to the current "app/webroot" folder.
 Give write permission to "app/Config", "app/tmp", "app/Plugin" and
"app/webroot" folders.
For Example:-chmod -R 777 app/Config
chmod -R 777 app/tmp
chmod -R 777 app/Plugin
chmod -R 777 app/webroot
 Import the "installer.sql" files from the extracted files to your current
database. If you have already imported installer.sql before then no need to
import it again. Only exception is if you are finding any new version of
installer.sql then import to your current database.
 Do necessary changes to "constants.php" and "database.php" inside
"app/Config" folder again as you have done earlier. For Example SMTP
email credentials in constants.php and database credentials in
database.php.
 Run your website once.
Ex. http://localhost/orangescrum (if you are using localhost)
http://127.0.0.1/orangescrum (if you are using IP)
http://myprojects.orangescrum.com (if you are using any valid domain)
Note: if you are facing any issue or seeing any blank page after doing all the above
steps, then just do the following once.
5 Designed and Powered by
 Replace "Configure::write('debug',0);" with "Configure::write('debug',2);"
in the app/Config/core.php. Run the web url once and restore the debug
value to 0 again.
i.eConfigure::write('debug',0);
Congratulations!!
Add-on Installation:-
 Download the Add-on zip file.
 Place the downloaded zip file(Ex. Timelog-V1.0.zip) in the "app/webroot"
folder.
 Log in to the application.
 To install the add-on(Ex. Time log add-on) run below link once and follow
the instructions.
Ex. http://..../install/chat (for Chat add-on)
http://..../install/timelog (for Time Log add-on)
Note: http://.... means your Orangescrum access URL.
Ex. http://localhost/orangescrum (if you are using localhost)
http://127.0.0.1/orangescrum (if you are using IP)
http://myprojects.orangescrum.com (if you are using any valid
domain)
 Do the same for other add-ons.
Ex. http://..../install/invoice (for Invoice add-on)
http://..../install/taskstatusgroup (for Task Status Group add-
on)
http://..../install/ganttchart (for GanttChart add-on)
6 Designed and Powered by
http://..../install/recurringtask (for Recurring Task add-on)
http://..../install/api (for API add-on)
http://..../install/chat (for Chat add-on)
http://..../install/clientmanagement (for Client Management
add-on)
http://..../install/projecttemplate (for Project Template add-
on)
Note: you can find notification.js, node-js-installation-linux.pdf, node-js-
installation-windows.pdf file in app/plugin folder after install the chat plug-in.
For Upgrading AddonInstaller:-
 Download the AddonInstaller zip file.
 Before installing updated AddonInstaller, make sure to keep a backup of
your existing "app/Plugin" and "app/webroot/files" folders.
 Then follow the steps written above to install AddonInstaller.
 After installing the new AddonInstaller, Copy all the folders inside
"app/plugin" backup folder to the new "app/Plugin" folder.
 Also copy all the folders inside "app/webroot/files" backup folder to the
new "app/webroot/files" folder.
7 Designed and Powered by
For Installing Node.js
There are 4 simple steps to install Node.js on your server. These are as follows:
1. Install Node.js and NPM
2. Install socket.io using NPM
3. Install Forever
4. Run the notification.js (given with the chat add-on) file forever using the
“Forever”. (it should not stop)
Note: You can find the notification.js file in app/plugin folder after install the chat
plug-in.
Download node.js from below URL
https://nodejs.org/en/download/
 Click on the downloaded Node.js "Windows Installer" (.msi package.) (32-
bit/64-bit).
 Double click on the "node-v4.4.7-x86.msi" file to start installation process
and then follow the instructions.
 After successful installation of Node.js open node command line interface.
To open node command line:
 Go to windows "Start Menu" and type "Node" in the search box.
 Click on "Node.js command prompt".
 It will open up a command prompt.
 Now run the following command to install the socket.io
npm install socket.io
 After Install socket.io run following command to install forever
npm install forever -g
8 Designed and Powered by
 After installed all the above step please copy and paste the "notification.js"
file (given with the chat add-on) in the same directory where the
node_modules is installed (Ex. C:UsersAndolasoft).
Run the below command to start node.js.
forever notification.js
Now node server is ready. You can test by checking the below url
http://your-domain:3002
Ex. http://localhost:3002
http://127.0.0.1:3002
http://myorange.com:3002
If output is "Welcome to socket.io." then node.js is working fine and you can use
that url in the constant.php as "NODE_HOST"
Note: you can find notification.js,node-js-installation-linux.pdf,node-js-
installation-windows.pdf file in app/plugin folder after install the chat plugin .
If you’re still facing the installation problem, then feel free to reach us at
support@orangescrum.com.
* **Official website**:
[http://www.orangescrum.com](http://www.orangescrum.com)
* **Blog**: [http://blog.orangescrum.com](http://blog.orangescrum.com)
9 Designed and Powered by
* **Downloads**: [http://www.orangescrum.org/free-
download](http://www.orangescrum.org/free-download)
* **Issue Tracker**:
[https://github.com/Orangescrum/orangescrum/issues](https://github.com/Oran
gescrum/orangescrum/issues)
* **Google Group**: [https://groups.google.com/group/orangescrum-
community-support](https://groups.google.com/group/orangescrum-community-
support)
How can I use or start conversation with my users?
 Login to Orangescrum
 Go on the chat icon (you can find it at the bottom right corner near
the + icon)
 Click on the chat icon
 On the chat pop-up, go to the search bar & search the name of the user.
10 Designed and Powered by
 Click on that user & type your message to start the chat or conversation
with him or her.
11 Designed and Powered by
What are the features in the chat?
Chat with User:
 Login to Orangescrum
 Go to the chat icon (you can find it at the below right corner near the
+ icon)
 Click on the chat icon
 On the chat pop-up, go to the search bar & search the name of the user.
12 Designed and Powered by
 Click on that user & type of your message to start the chat or conversation
with him or her.
13 Designed and Powered by
Chat with Team:
 Click on the chat
 Go to the Group icon
 Search user & click on every user to add them to group
14 Designed and Powered by
 Click on the Create Group
 Edit the Group Name from the Group tab on the left side of the chat pop-up
15 Designed and Powered by
Save as Task:
 On the chat pop-up, go to the top right corner.
 Click on the Save as Task
 Select the Project & an existing task or create a new task from here
 Click on Save to Create the conversation as Task or to add it to existing
Task.
Share Files:
 Go to the message description box, click on the attach icon.
 Attach the file & send it to the user or team
16 Designed and Powered by
Real-time availability:
If a user is logged in Orangescrum, then you can see the user is live/online as a
green light on his or her profile icon or image.
17 Designed and Powered by
User Role:
You can see a user is admin or owner or client or a general user. If on the below of
the user icon or image is not mentioned anything, then the user is a general user.
Other users marked as client, admin or owner as role given by the owner or
admin. You can see if a user is admin, then it will show you admin on the below of
his or her profile icon or image.
18 Designed and Powered by
Which users will be available for chat?
With chat add-on, all users in your company added in Orangescrum will be
available to your chat user list. You can chat with any user including your clients
here.
Can I chat with my clients?
Yes, you can chat with your clients here. When you search the name it will show
you at the below of user name whether he is the client or a general user in case
you have user and client have same name.
19 Designed and Powered by
How can I create a group in chat?
 Click on the chat
 Go to the Group icon
 Search user & click on every user to add them to group
 Click on the Create Group
 Edit the Group Name from the Group tab on the left side of the chat pop-up
20 Designed and Powered by
 Start your conversation with your team
21 Designed and Powered by
How can I check my recent conversation?
Go to the Left side of your chat pop-up & click on the Recent to check the recent
conversation.
How can a user know if I send a message?
Once you send a message the user will get a desktop notification if he is signed in
Orangescrum. If the user is logged out, (s)he can see themessage when (s)he can
login to the system. The message count will show on the chat icon.

More Related Content

What's hot

Orangescrum Gantt chart Add on User Manual
Orangescrum Gantt chart Add on User ManualOrangescrum Gantt chart Add on User Manual
Orangescrum Gantt chart Add on User Manual
Orangescrum
 
Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)
Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)
Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)
Joget Workflow
 
Managing Web Infrastructure Systems with Windows PowerShell 2.0 Demo Script
Managing Web Infrastructure Systems with Windows PowerShell 2.0 Demo ScriptManaging Web Infrastructure Systems with Windows PowerShell 2.0 Demo Script
Managing Web Infrastructure Systems with Windows PowerShell 2.0 Demo Script
Microsoft TechNet
 
Chicago alm user group git demo script and notes
Chicago alm user group   git demo script and notesChicago alm user group   git demo script and notes
Chicago alm user group git demo script and notes
Dave Burnison
 
PVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOps
PVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOpsPVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOps
PVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOps
Andrey Karpov
 
Flash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docxFlash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docx
SMK Negeri 6 Malang
 
Joget v5 Getting Started Guide
Joget v5 Getting Started GuideJoget v5 Getting Started Guide
Joget v5 Getting Started Guide
Joget Workflow
 
IMPACT/myGrid Hackathon - Introduction to Taverna
IMPACT/myGrid Hackathon - Introduction to TavernaIMPACT/myGrid Hackathon - Introduction to Taverna
IMPACT/myGrid Hackathon - Introduction to Taverna
IMPACT Centre of Competence
 
Creating Sentiment Line Chart with Watson
Creating Sentiment Line Chart with Watson Creating Sentiment Line Chart with Watson
Creating Sentiment Line Chart with Watson
Dev_Events
 
Windows power shell for sharepoint online & office 365
Windows power shell for sharepoint online & office 365Windows power shell for sharepoint online & office 365
Windows power shell for sharepoint online & office 365
Prashant Kumar Singh
 
Revisions
RevisionsRevisions
Revisionsswat_kh
 
HDinsight Workshop - Prerequisite Activity
HDinsight Workshop - Prerequisite ActivityHDinsight Workshop - Prerequisite Activity
HDinsight Workshop - Prerequisite Activity
Idan Tohami
 
Create a meteor chat app in 30 minutes
Create a meteor chat app in 30 minutesCreate a meteor chat app in 30 minutes
Create a meteor chat app in 30 minutes
Designveloper
 
Aspnet mvc tutorial_01_cs
Aspnet mvc tutorial_01_csAspnet mvc tutorial_01_cs
Aspnet mvc tutorial_01_cs
Alfa Gama Omega
 
CIC_Manual.pdf
CIC_Manual.pdfCIC_Manual.pdf
CIC_Manual.pdf
RMani7
 
How to Webpack your Django!
How to Webpack your Django!How to Webpack your Django!
How to Webpack your Django!
David Gibbons
 
Getting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viiiGetting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viiiAmit Sharma
 
Getting started-with-oracle-so a-9
Getting started-with-oracle-so a-9Getting started-with-oracle-so a-9
Getting started-with-oracle-so a-9Amit Sharma
 

What's hot (20)

Orangescrum Gantt chart Add on User Manual
Orangescrum Gantt chart Add on User ManualOrangescrum Gantt chart Add on User Manual
Orangescrum Gantt chart Add on User Manual
 
Writing first-hudson-plugin
Writing first-hudson-pluginWriting first-hudson-plugin
Writing first-hudson-plugin
 
Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)
Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)
Joget Workflow Clustering and Performance Testing on Amazon Web Services (AWS)
 
Managing Web Infrastructure Systems with Windows PowerShell 2.0 Demo Script
Managing Web Infrastructure Systems with Windows PowerShell 2.0 Demo ScriptManaging Web Infrastructure Systems with Windows PowerShell 2.0 Demo Script
Managing Web Infrastructure Systems with Windows PowerShell 2.0 Demo Script
 
Chicago alm user group git demo script and notes
Chicago alm user group   git demo script and notesChicago alm user group   git demo script and notes
Chicago alm user group git demo script and notes
 
PVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOps
PVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOpsPVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOps
PVS-Studio Is Now in Chocolatey: Checking Chocolatey under Azure DevOps
 
Flash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docxFlash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docx
 
Joget v5 Getting Started Guide
Joget v5 Getting Started GuideJoget v5 Getting Started Guide
Joget v5 Getting Started Guide
 
IMPACT/myGrid Hackathon - Introduction to Taverna
IMPACT/myGrid Hackathon - Introduction to TavernaIMPACT/myGrid Hackathon - Introduction to Taverna
IMPACT/myGrid Hackathon - Introduction to Taverna
 
Creating Sentiment Line Chart with Watson
Creating Sentiment Line Chart with Watson Creating Sentiment Line Chart with Watson
Creating Sentiment Line Chart with Watson
 
Windows power shell for sharepoint online & office 365
Windows power shell for sharepoint online & office 365Windows power shell for sharepoint online & office 365
Windows power shell for sharepoint online & office 365
 
Revisions
RevisionsRevisions
Revisions
 
HDinsight Workshop - Prerequisite Activity
HDinsight Workshop - Prerequisite ActivityHDinsight Workshop - Prerequisite Activity
HDinsight Workshop - Prerequisite Activity
 
Create a meteor chat app in 30 minutes
Create a meteor chat app in 30 minutesCreate a meteor chat app in 30 minutes
Create a meteor chat app in 30 minutes
 
Aspnet mvc tutorial_01_cs
Aspnet mvc tutorial_01_csAspnet mvc tutorial_01_cs
Aspnet mvc tutorial_01_cs
 
CIC_Manual.pdf
CIC_Manual.pdfCIC_Manual.pdf
CIC_Manual.pdf
 
How to Webpack your Django!
How to Webpack your Django!How to Webpack your Django!
How to Webpack your Django!
 
Getting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viiiGetting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viii
 
GIS.XL_manual
GIS.XL_manualGIS.XL_manual
GIS.XL_manual
 
Getting started-with-oracle-so a-9
Getting started-with-oracle-so a-9Getting started-with-oracle-so a-9
Getting started-with-oracle-so a-9
 

Similar to Orangescrum In App Chat Add-on User Manual

Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guide
vjvarenya
 
Orangescrum Invoice Pro Add-on user manual
Orangescrum Invoice Pro Add-on user manualOrangescrum Invoice Pro Add-on user manual
Orangescrum Invoice Pro Add-on user manual
Orangescrum
 
Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7
VCP Muthukrishna
 
A Complete Installation Guide for Orangescrum
A Complete Installation Guide for OrangescrumA Complete Installation Guide for Orangescrum
A Complete Installation Guide for Orangescrum
Orangescrum
 
BLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docxBLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docx
moirarandell
 
InstallationGuide.pdf
InstallationGuide.pdfInstallationGuide.pdf
InstallationGuide.pdf
sahirzakaria
 
Setting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntuSetting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntu
kesavan N B
 
OpenStack Murano introduction
OpenStack Murano introductionOpenStack Murano introduction
OpenStack Murano introduction
Victor Zhang
 
important DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And Interviewsimportant DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And Interviews
Rahul Jain
 
Django simplified : by weever mbakaya
Django simplified : by weever mbakayaDjango simplified : by weever mbakaya
Django simplified : by weever mbakaya
Mbakaya Kwatukha
 
How to configure PyCharm for Odoo development in Windows?
How to configure PyCharm for Odoo development in Windows?How to configure PyCharm for Odoo development in Windows?
How to configure PyCharm for Odoo development in Windows?
Celine George
 
manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48tutorialsruby
 
manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48tutorialsruby
 
How to install Open Atrium over LAMP stack
How to install Open Atrium over LAMP stackHow to install Open Atrium over LAMP stack
How to install Open Atrium over LAMP stack
cercer
 
Struts2 tutorial
Struts2 tutorialStruts2 tutorial
Struts2 tutorial
izdihara
 
Installing Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for WindowsInstalling Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for Windows
Jonathan Bloom
 
SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...
SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...
SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...
Sencha
 
BP501 - Building and deploying custom IBM sametime connect client installatio...
BP501 - Building and deploying custom IBM sametime connect client installatio...BP501 - Building and deploying custom IBM sametime connect client installatio...
BP501 - Building and deploying custom IBM sametime connect client installatio...
Carl Tyler
 
Oracle bi 10g_install_migration
Oracle bi 10g_install_migrationOracle bi 10g_install_migration
Oracle bi 10g_install_migrationMlx Le
 
1 app 2 developers 3 servers
1 app 2 developers 3 servers1 app 2 developers 3 servers
1 app 2 developers 3 servers
Mark Myers
 

Similar to Orangescrum In App Chat Add-on User Manual (20)

Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guide
 
Orangescrum Invoice Pro Add-on user manual
Orangescrum Invoice Pro Add-on user manualOrangescrum Invoice Pro Add-on user manual
Orangescrum Invoice Pro Add-on user manual
 
Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7
 
A Complete Installation Guide for Orangescrum
A Complete Installation Guide for OrangescrumA Complete Installation Guide for Orangescrum
A Complete Installation Guide for Orangescrum
 
BLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docxBLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docx
 
InstallationGuide.pdf
InstallationGuide.pdfInstallationGuide.pdf
InstallationGuide.pdf
 
Setting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntuSetting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntu
 
OpenStack Murano introduction
OpenStack Murano introductionOpenStack Murano introduction
OpenStack Murano introduction
 
important DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And Interviewsimportant DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And Interviews
 
Django simplified : by weever mbakaya
Django simplified : by weever mbakayaDjango simplified : by weever mbakaya
Django simplified : by weever mbakaya
 
How to configure PyCharm for Odoo development in Windows?
How to configure PyCharm for Odoo development in Windows?How to configure PyCharm for Odoo development in Windows?
How to configure PyCharm for Odoo development in Windows?
 
manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48
 
manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48manual-doc_inst_macosx-20-05-2004_00-24-48
manual-doc_inst_macosx-20-05-2004_00-24-48
 
How to install Open Atrium over LAMP stack
How to install Open Atrium over LAMP stackHow to install Open Atrium over LAMP stack
How to install Open Atrium over LAMP stack
 
Struts2 tutorial
Struts2 tutorialStruts2 tutorial
Struts2 tutorial
 
Installing Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for WindowsInstalling Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for Windows
 
SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...
SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...
SenchaCon 2016: Building Enterprise Ext JS Apps with Mavenized Sencha Cmd - F...
 
BP501 - Building and deploying custom IBM sametime connect client installatio...
BP501 - Building and deploying custom IBM sametime connect client installatio...BP501 - Building and deploying custom IBM sametime connect client installatio...
BP501 - Building and deploying custom IBM sametime connect client installatio...
 
Oracle bi 10g_install_migration
Oracle bi 10g_install_migrationOracle bi 10g_install_migration
Oracle bi 10g_install_migration
 
1 app 2 developers 3 servers
1 app 2 developers 3 servers1 app 2 developers 3 servers
1 app 2 developers 3 servers
 

More from Orangescrum

Agile Metrics and KPIs: Measuring Team Performance
Agile Metrics and KPIs: Measuring Team PerformanceAgile Metrics and KPIs: Measuring Team Performance
Agile Metrics and KPIs: Measuring Team Performance
Orangescrum
 
Advanced Scrum Master Techniques | Sprint Planning
Advanced Scrum Master Techniques | Sprint PlanningAdvanced Scrum Master Techniques | Sprint Planning
Advanced Scrum Master Techniques | Sprint Planning
Orangescrum
 
The Use of Story Point and Sprint Report in Agile Project Methodology.pdf
The Use of Story Point and Sprint Report in Agile Project Methodology.pdfThe Use of Story Point and Sprint Report in Agile Project Methodology.pdf
The Use of Story Point and Sprint Report in Agile Project Methodology.pdf
Orangescrum
 
Project management software for non-pofit organization.pdf
Project management software for non-pofit organization.pdfProject management software for non-pofit organization.pdf
Project management software for non-pofit organization.pdf
Orangescrum
 
What are the Top Project Management Trends in 2023_.pdf
What are the Top Project Management Trends in 2023_.pdfWhat are the Top Project Management Trends in 2023_.pdf
What are the Top Project Management Trends in 2023_.pdf
Orangescrum
 
Project Management Trends to Look for in 2023.pdf
Project Management Trends to Look for in 2023.pdfProject Management Trends to Look for in 2023.pdf
Project Management Trends to Look for in 2023.pdf
Orangescrum
 
Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...
Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...
Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...
Orangescrum
 
Top Project Management Best Practices.pdf
Top Project Management Best Practices.pdfTop Project Management Best Practices.pdf
Top Project Management Best Practices.pdf
Orangescrum
 
How to Streamline Your Workflow Using Orangescrum.pdf
How to Streamline Your Workflow Using Orangescrum.pdfHow to Streamline Your Workflow Using Orangescrum.pdf
How to Streamline Your Workflow Using Orangescrum.pdf
Orangescrum
 
On-Premises Project Management Software for Construction Companies.pdf
On-Premises Project Management Software for Construction Companies.pdfOn-Premises Project Management Software for Construction Companies.pdf
On-Premises Project Management Software for Construction Companies.pdf
Orangescrum
 
Project Management Software for Marketing and Advertising Agencies.pdf
Project Management Software for Marketing and Advertising Agencies.pdfProject Management Software for Marketing and Advertising Agencies.pdf
Project Management Software for Marketing and Advertising Agencies.pdf
Orangescrum
 
My Work - Feature Release Update.pdf
My Work - Feature Release Update.pdfMy Work - Feature Release Update.pdf
My Work - Feature Release Update.pdf
Orangescrum
 
Orangescrum for Marketing Agencies.pdf
Orangescrum for Marketing Agencies.pdfOrangescrum for Marketing Agencies.pdf
Orangescrum for Marketing Agencies.pdf
Orangescrum
 
What is Task Cycle and How to View in Orangescrum.pdf
What is Task Cycle and How to View in Orangescrum.pdfWhat is Task Cycle and How to View in Orangescrum.pdf
What is Task Cycle and How to View in Orangescrum.pdf
Orangescrum
 
Top 15 Project Management Tools in 2023.pdf
Top 15 Project Management Tools in 2023.pdfTop 15 Project Management Tools in 2023.pdf
Top 15 Project Management Tools in 2023.pdf
Orangescrum
 
Top Self-Hosted Project Mangement Software.pdf
Top Self-Hosted Project Mangement Software.pdfTop Self-Hosted Project Mangement Software.pdf
Top Self-Hosted Project Mangement Software.pdf
Orangescrum
 
Orangescrum’s New User-Onboarding - A Delightful Experience .pdf
Orangescrum’s New User-Onboarding - A Delightful Experience .pdfOrangescrum’s New User-Onboarding - A Delightful Experience .pdf
Orangescrum’s New User-Onboarding - A Delightful Experience .pdf
Orangescrum
 
Data Center Project Management Software and Its Benefits
Data Center Project Management Software and Its BenefitsData Center Project Management Software and Its Benefits
Data Center Project Management Software and Its Benefits
Orangescrum
 
Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...
Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...
Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...
Orangescrum
 
Why Planning Is Important in Project Management
Why Planning Is Important in Project ManagementWhy Planning Is Important in Project Management
Why Planning Is Important in Project Management
Orangescrum
 

More from Orangescrum (20)

Agile Metrics and KPIs: Measuring Team Performance
Agile Metrics and KPIs: Measuring Team PerformanceAgile Metrics and KPIs: Measuring Team Performance
Agile Metrics and KPIs: Measuring Team Performance
 
Advanced Scrum Master Techniques | Sprint Planning
Advanced Scrum Master Techniques | Sprint PlanningAdvanced Scrum Master Techniques | Sprint Planning
Advanced Scrum Master Techniques | Sprint Planning
 
The Use of Story Point and Sprint Report in Agile Project Methodology.pdf
The Use of Story Point and Sprint Report in Agile Project Methodology.pdfThe Use of Story Point and Sprint Report in Agile Project Methodology.pdf
The Use of Story Point and Sprint Report in Agile Project Methodology.pdf
 
Project management software for non-pofit organization.pdf
Project management software for non-pofit organization.pdfProject management software for non-pofit organization.pdf
Project management software for non-pofit organization.pdf
 
What are the Top Project Management Trends in 2023_.pdf
What are the Top Project Management Trends in 2023_.pdfWhat are the Top Project Management Trends in 2023_.pdf
What are the Top Project Management Trends in 2023_.pdf
 
Project Management Trends to Look for in 2023.pdf
Project Management Trends to Look for in 2023.pdfProject Management Trends to Look for in 2023.pdf
Project Management Trends to Look for in 2023.pdf
 
Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...
Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...
Revolutionizing Healthcare_ How Project Management Software Can Increase Effi...
 
Top Project Management Best Practices.pdf
Top Project Management Best Practices.pdfTop Project Management Best Practices.pdf
Top Project Management Best Practices.pdf
 
How to Streamline Your Workflow Using Orangescrum.pdf
How to Streamline Your Workflow Using Orangescrum.pdfHow to Streamline Your Workflow Using Orangescrum.pdf
How to Streamline Your Workflow Using Orangescrum.pdf
 
On-Premises Project Management Software for Construction Companies.pdf
On-Premises Project Management Software for Construction Companies.pdfOn-Premises Project Management Software for Construction Companies.pdf
On-Premises Project Management Software for Construction Companies.pdf
 
Project Management Software for Marketing and Advertising Agencies.pdf
Project Management Software for Marketing and Advertising Agencies.pdfProject Management Software for Marketing and Advertising Agencies.pdf
Project Management Software for Marketing and Advertising Agencies.pdf
 
My Work - Feature Release Update.pdf
My Work - Feature Release Update.pdfMy Work - Feature Release Update.pdf
My Work - Feature Release Update.pdf
 
Orangescrum for Marketing Agencies.pdf
Orangescrum for Marketing Agencies.pdfOrangescrum for Marketing Agencies.pdf
Orangescrum for Marketing Agencies.pdf
 
What is Task Cycle and How to View in Orangescrum.pdf
What is Task Cycle and How to View in Orangescrum.pdfWhat is Task Cycle and How to View in Orangescrum.pdf
What is Task Cycle and How to View in Orangescrum.pdf
 
Top 15 Project Management Tools in 2023.pdf
Top 15 Project Management Tools in 2023.pdfTop 15 Project Management Tools in 2023.pdf
Top 15 Project Management Tools in 2023.pdf
 
Top Self-Hosted Project Mangement Software.pdf
Top Self-Hosted Project Mangement Software.pdfTop Self-Hosted Project Mangement Software.pdf
Top Self-Hosted Project Mangement Software.pdf
 
Orangescrum’s New User-Onboarding - A Delightful Experience .pdf
Orangescrum’s New User-Onboarding - A Delightful Experience .pdfOrangescrum’s New User-Onboarding - A Delightful Experience .pdf
Orangescrum’s New User-Onboarding - A Delightful Experience .pdf
 
Data Center Project Management Software and Its Benefits
Data Center Project Management Software and Its BenefitsData Center Project Management Software and Its Benefits
Data Center Project Management Software and Its Benefits
 
Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...
Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...
Differences between On-Premise Vs Hosted Vs SaaS Project Management Software ...
 
Why Planning Is Important in Project Management
Why Planning Is Important in Project ManagementWhy Planning Is Important in Project Management
Why Planning Is Important in Project Management
 

Recently uploaded

Lecture 1 Introduction to games development
Lecture 1 Introduction to games developmentLecture 1 Introduction to games development
Lecture 1 Introduction to games development
abdulrafaychaudhry
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
Cyanic lab
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
Ortus Solutions, Corp
 
How to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good PracticesHow to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good Practices
Globus
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Globus
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
takuyayamamoto1800
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
vrstrong314
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
Tier1 app
 
Graphic Design Crash Course for beginners
Graphic Design Crash Course for beginnersGraphic Design Crash Course for beginners
Graphic Design Crash Course for beginners
e20449
 
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptxTop Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
rickgrimesss22
 
Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
Ortus Solutions, Corp
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
Paco van Beckhoven
 
RISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent EnterpriseRISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent Enterprise
Srikant77
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
informapgpstrackings
 
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdfDominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
AMB-Review
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
Globus
 
Navigating the Metaverse: A Journey into Virtual Evolution"
Navigating the Metaverse: A Journey into Virtual Evolution"Navigating the Metaverse: A Journey into Virtual Evolution"
Navigating the Metaverse: A Journey into Virtual Evolution"
Donna Lenk
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
kalichargn70th171
 

Recently uploaded (20)

Lecture 1 Introduction to games development
Lecture 1 Introduction to games developmentLecture 1 Introduction to games development
Lecture 1 Introduction to games development
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
 
How to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good PracticesHow to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good Practices
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
 
Graphic Design Crash Course for beginners
Graphic Design Crash Course for beginnersGraphic Design Crash Course for beginners
Graphic Design Crash Course for beginners
 
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptxTop Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
 
Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024Globus Compute wth IRI Workflows - GlobusWorld 2024
Globus Compute wth IRI Workflows - GlobusWorld 2024
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
 
RISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent EnterpriseRISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent Enterprise
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
 
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdfDominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
 
Navigating the Metaverse: A Journey into Virtual Evolution"
Navigating the Metaverse: A Journey into Virtual Evolution"Navigating the Metaverse: A Journey into Virtual Evolution"
Navigating the Metaverse: A Journey into Virtual Evolution"
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
 

Orangescrum In App Chat Add-on User Manual

  • 2. 2 Designed and Powered by Table of Contents How can I install chat add-on?............................................................................... 3 Requirements ..................................................................................................... 3 Installation.......................................................................................................... 3 Add-on Installation ............................................................................................. 5 For Upgrading AddonInstaller:-........................................................................... 6 For Install Node.js............................................................................................... 7 How can I use or start conversation with my users?.............................................. 9 What are the features in the chat? ...................................................................... 11 Chat with User:................................................................................................. 11 Chat with Team:................................................................................................ 13 Save as Task:..................................................................................................... 15 Share Files:........................................................................................................ 15 Real-time availability: ....................................................................................... 16 User Role: ......................................................................................................... 17 Which users will be available for chat? ................................................................ 18 Can I chat with my clients? .................................................................................. 18 How can I create a group in chat?........................................................................ 19 How can I check my recent conversation?........................................................... 21 How can a user know if I send a message? .......................................................... 21
  • 3. 3 Designed and Powered by How can I install chat add-on? Requirements * Apache with `mod_rewrite` * Enable curl in php.ini * Change the 'post_max_size' and `upload_max_filesize` to 200Mb in php.ini * PHP 5.4 or higher and less than PHP 7 * MySQL 4.1 or higher * If STRICT mode is On, turn it Off. Installation Below prerequisites need to be taken care of prior to installation. The most important thing is if you have already purchased any add-on before 16th July 2016, then contact us at "support@orangescrum.org" before you proceed to the following. Note: If you have already installed the AddonInstaller before then no need to install it again. Only exception is if you are finding any new version of installer or you have not installed before then follow the below steps for successful and seamless installation.  Make sure to keep a backup of your existing "app" folder of your current working directory.  Extract the zip file(AddonInstaller-V1.0.zip) to your desktop.  Remove the existing "app" folder from your working directory then copy and paste the extracted "app" folder inside "AddonInstaller-V1.0" to your working directory.
  • 4. 4 Designed and Powered by  If you are using local machine as storage (excluding Amazon S3), please replace the folder, named "files" inside the "app/webroot" folder from the back up to the current "app/webroot" folder.  Give write permission to "app/Config", "app/tmp", "app/Plugin" and "app/webroot" folders. For Example:-chmod -R 777 app/Config chmod -R 777 app/tmp chmod -R 777 app/Plugin chmod -R 777 app/webroot  Import the "installer.sql" files from the extracted files to your current database. If you have already imported installer.sql before then no need to import it again. Only exception is if you are finding any new version of installer.sql then import to your current database.  Do necessary changes to "constants.php" and "database.php" inside "app/Config" folder again as you have done earlier. For Example SMTP email credentials in constants.php and database credentials in database.php.  Run your website once. Ex. http://localhost/orangescrum (if you are using localhost) http://127.0.0.1/orangescrum (if you are using IP) http://myprojects.orangescrum.com (if you are using any valid domain) Note: if you are facing any issue or seeing any blank page after doing all the above steps, then just do the following once.
  • 5. 5 Designed and Powered by  Replace "Configure::write('debug',0);" with "Configure::write('debug',2);" in the app/Config/core.php. Run the web url once and restore the debug value to 0 again. i.eConfigure::write('debug',0); Congratulations!! Add-on Installation:-  Download the Add-on zip file.  Place the downloaded zip file(Ex. Timelog-V1.0.zip) in the "app/webroot" folder.  Log in to the application.  To install the add-on(Ex. Time log add-on) run below link once and follow the instructions. Ex. http://..../install/chat (for Chat add-on) http://..../install/timelog (for Time Log add-on) Note: http://.... means your Orangescrum access URL. Ex. http://localhost/orangescrum (if you are using localhost) http://127.0.0.1/orangescrum (if you are using IP) http://myprojects.orangescrum.com (if you are using any valid domain)  Do the same for other add-ons. Ex. http://..../install/invoice (for Invoice add-on) http://..../install/taskstatusgroup (for Task Status Group add- on) http://..../install/ganttchart (for GanttChart add-on)
  • 6. 6 Designed and Powered by http://..../install/recurringtask (for Recurring Task add-on) http://..../install/api (for API add-on) http://..../install/chat (for Chat add-on) http://..../install/clientmanagement (for Client Management add-on) http://..../install/projecttemplate (for Project Template add- on) Note: you can find notification.js, node-js-installation-linux.pdf, node-js- installation-windows.pdf file in app/plugin folder after install the chat plug-in. For Upgrading AddonInstaller:-  Download the AddonInstaller zip file.  Before installing updated AddonInstaller, make sure to keep a backup of your existing "app/Plugin" and "app/webroot/files" folders.  Then follow the steps written above to install AddonInstaller.  After installing the new AddonInstaller, Copy all the folders inside "app/plugin" backup folder to the new "app/Plugin" folder.  Also copy all the folders inside "app/webroot/files" backup folder to the new "app/webroot/files" folder.
  • 7. 7 Designed and Powered by For Installing Node.js There are 4 simple steps to install Node.js on your server. These are as follows: 1. Install Node.js and NPM 2. Install socket.io using NPM 3. Install Forever 4. Run the notification.js (given with the chat add-on) file forever using the “Forever”. (it should not stop) Note: You can find the notification.js file in app/plugin folder after install the chat plug-in. Download node.js from below URL https://nodejs.org/en/download/  Click on the downloaded Node.js "Windows Installer" (.msi package.) (32- bit/64-bit).  Double click on the "node-v4.4.7-x86.msi" file to start installation process and then follow the instructions.  After successful installation of Node.js open node command line interface. To open node command line:  Go to windows "Start Menu" and type "Node" in the search box.  Click on "Node.js command prompt".  It will open up a command prompt.  Now run the following command to install the socket.io npm install socket.io  After Install socket.io run following command to install forever npm install forever -g
  • 8. 8 Designed and Powered by  After installed all the above step please copy and paste the "notification.js" file (given with the chat add-on) in the same directory where the node_modules is installed (Ex. C:UsersAndolasoft). Run the below command to start node.js. forever notification.js Now node server is ready. You can test by checking the below url http://your-domain:3002 Ex. http://localhost:3002 http://127.0.0.1:3002 http://myorange.com:3002 If output is "Welcome to socket.io." then node.js is working fine and you can use that url in the constant.php as "NODE_HOST" Note: you can find notification.js,node-js-installation-linux.pdf,node-js- installation-windows.pdf file in app/plugin folder after install the chat plugin . If you’re still facing the installation problem, then feel free to reach us at support@orangescrum.com. * **Official website**: [http://www.orangescrum.com](http://www.orangescrum.com) * **Blog**: [http://blog.orangescrum.com](http://blog.orangescrum.com)
  • 9. 9 Designed and Powered by * **Downloads**: [http://www.orangescrum.org/free- download](http://www.orangescrum.org/free-download) * **Issue Tracker**: [https://github.com/Orangescrum/orangescrum/issues](https://github.com/Oran gescrum/orangescrum/issues) * **Google Group**: [https://groups.google.com/group/orangescrum- community-support](https://groups.google.com/group/orangescrum-community- support) How can I use or start conversation with my users?  Login to Orangescrum  Go on the chat icon (you can find it at the bottom right corner near the + icon)  Click on the chat icon  On the chat pop-up, go to the search bar & search the name of the user.
  • 10. 10 Designed and Powered by  Click on that user & type your message to start the chat or conversation with him or her.
  • 11. 11 Designed and Powered by What are the features in the chat? Chat with User:  Login to Orangescrum  Go to the chat icon (you can find it at the below right corner near the + icon)  Click on the chat icon  On the chat pop-up, go to the search bar & search the name of the user.
  • 12. 12 Designed and Powered by  Click on that user & type of your message to start the chat or conversation with him or her.
  • 13. 13 Designed and Powered by Chat with Team:  Click on the chat  Go to the Group icon  Search user & click on every user to add them to group
  • 14. 14 Designed and Powered by  Click on the Create Group  Edit the Group Name from the Group tab on the left side of the chat pop-up
  • 15. 15 Designed and Powered by Save as Task:  On the chat pop-up, go to the top right corner.  Click on the Save as Task  Select the Project & an existing task or create a new task from here  Click on Save to Create the conversation as Task or to add it to existing Task. Share Files:  Go to the message description box, click on the attach icon.  Attach the file & send it to the user or team
  • 16. 16 Designed and Powered by Real-time availability: If a user is logged in Orangescrum, then you can see the user is live/online as a green light on his or her profile icon or image.
  • 17. 17 Designed and Powered by User Role: You can see a user is admin or owner or client or a general user. If on the below of the user icon or image is not mentioned anything, then the user is a general user. Other users marked as client, admin or owner as role given by the owner or admin. You can see if a user is admin, then it will show you admin on the below of his or her profile icon or image.
  • 18. 18 Designed and Powered by Which users will be available for chat? With chat add-on, all users in your company added in Orangescrum will be available to your chat user list. You can chat with any user including your clients here. Can I chat with my clients? Yes, you can chat with your clients here. When you search the name it will show you at the below of user name whether he is the client or a general user in case you have user and client have same name.
  • 19. 19 Designed and Powered by How can I create a group in chat?  Click on the chat  Go to the Group icon  Search user & click on every user to add them to group  Click on the Create Group  Edit the Group Name from the Group tab on the left side of the chat pop-up
  • 20. 20 Designed and Powered by  Start your conversation with your team
  • 21. 21 Designed and Powered by How can I check my recent conversation? Go to the Left side of your chat pop-up & click on the Recent to check the recent conversation. How can a user know if I send a message? Once you send a message the user will get a desktop notification if he is signed in Orangescrum. If the user is logged out, (s)he can see themessage when (s)he can login to the system. The message count will show on the chat icon.