
Contact the Orangescrum team
We will be glad to help you out. Get in touch with the creators of Orangescrum. We always welcome feedback as it helps us to bring out the best within us. We would like to hear your thoughts or you want to share an idea or simply say Hello!

Submit Your Testimonial
We want to hear from you! Submit your experience below and we will share it with others. Your Testimonial will get published on the front page of our website.
1. What is open-source project management software?
Open-source project management software is a type of software used for planning, tracking, and organizing projects. It is developed collaboratively by a community of volunteers or organizations, and the source code is made freely available to the public. Users can view, modify, and distribute the software according to open-source licenses.
2. How does open-source project management software differ from proprietary alternatives?
Open-source project management software differs from proprietary alternatives in that its source code is openly accessible and can be modified by anyone. Proprietary software, on the other hand, is owned and controlled by a single entity, and its source code is usually not available for modification.
3. What are the key advantages of using open-source project management software?
Cost-effectiveness: Open-source software is often free to use, reducing licensing and subscription costs.
Customization: Users can tailor the software to meet their specific needs.
Transparency: The source code is open for inspection, enhancing security and trust.
Community support: A community of developers and users can provide assistance and contribute to ongoing development.
4. Is Orangescrum open-source project management software free to use?
Many open-source project management software options are indeed free to use. However, some may offer paid versions with additional features or support options. Users can typically choose between free and paid versions based on their requirements.
5. Are there any limitations to using open-source project management software?
Some limitations of open-source project management software can include a potentially steeper learning curve, limited official support, and fewer integrated features compared to some proprietary alternatives. However, these limitations can vary depending on the specific software chosen.
6. Is open-source project management software suitable for both small and large teams?
Yes, open-source project management software can be suitable for both small and large teams. Many open-source options offer scalability and flexibility to accommodate the needs of various team sizes.
7. Can I customize open-source project management software to meet my specific needs?
Yes, one of the significant advantages of open-source software is its customizability. Users or developers can modify the source code to tailor the software to their unique project management requirements.
8. Are there any licensing restrictions associated with open-source project management software?
Open-source project management software is typically released under open-source licenses like the GNU General Public License (GPL) or the Apache License. These licenses typically grant users the freedom to use, modify, and distribute the software, often with the requirement to share any modifications made to the source code.
9. Is open-source project management software secure?
Open-source software can be highly secure when properly maintained. The transparency of the source code allows for extensive peer review and identification of security vulnerabilities. However, security also depends on factors like regular updates and best practices in server and network configurations.
10. How do open-source project management tools compare to paid project management tools in terms of features?
Open-source project management tools vary in features, and their offerings can be on par with or comparable to paid tools. However, the feature set may differ depending on the specific software. Users should evaluate open-source options against their project requirements.
11. What types of projects are best suited for open-source project management software?
Open-source project management software can be suitable for a wide range of projects, including software development, construction, event planning, and more. Its versatility allows for adaptation to various project types and industries.
12. Can I integrate open-source project management software with other software or services?
Yes, many open-source project management software options offer integrations or APIs that allow them to connect with other tools and software, such as version control systems, email clients, and collaboration platforms.
13. What support and documentation resources are available for Orangescrum open-source project management software users?
Users can typically find support through community forums, official documentation, and user guides provided by the open-source project. Some projects may offer paid support or consulting services as well.
14. Do I need programming or technical skills to use open-source project management software?
While some technical skills can be beneficial, many open-source project management software options are designed to be user-friendly, and non-technical users can utilize them effectively. Technical skills may be required if you plan to modify the software's source code or perform advanced configurations.
15. Are there any user communities or forums where I can get help or collaborate with other users?
Yes, most open-source project management software options have active user communities and forums where users can seek help, share experiences, and collaborate on solving issues or enhancing the software.
16. Can I host open-source project management software on my own server?
Yes, many open-source project management software options can be hosted on your own server or infrastructure. This provides control over data and security.
17. How frequently are Orangescrum open-source updates released?
Orangescrum open-source actively develops, with regular releases to improve functionality, security, and stability.
18. What are some key features to look for when evaluating open-source project management software?
Key features to consider include task management, collaboration tools, reporting and analytics, customization options, integrations, and scalability.
19. Are there any hidden costs associated with open-source project management software?
While the software itself may be free, there can be associated costs, such as hosting, customization, support, and training. These costs should be considered when evaluating the total cost of ownership.
20. Can I contribute to the development of open-source Orangescrum?
Yes, Orangescrum welcomes contributions from the community. Users with programming skills can contribute code, while others can contribute by reporting issues, providing feedback, or assisting with documentation.
21. What are the best practices for implementing open-source project management software within an organization?
Best practices include thorough evaluation of software options, ensuring data security and privacy, user training, regular updates and maintenance, and fostering a culture of collaboration and knowledge sharing.
22. Is there any training available for open-source Orangescrum users?
Training resources, tutorials, and documentation are provided by Orangescrum. Additionally, businesses can also acquire various support materials for the Orangescrum open-source community.
23. Can I migrate data from my existing project management tool to open-source Orangescrum?
Data migration is possible, but the process can vary depending on the systems. Orangescrum open source options provide tools or guidance for data migration.
24. How can I ensure data privacy and security when using open-source project management software?
Ensuring data privacy and security involves implementing secure server configurations, applying regular software updates, and following best practices for access control and encryption. Users should also review and adhere to data protection regulations applicable to their organization and region.
1. Why am I getting "Error in creating Company Name" in quick sign up page?
For this, we need to disable "mysql strict mode"
Open phpMyAdmin.Look at the top and towards the right for variables. Click on that then either scroll down to sql mode or use the filter. Hover over the row that says sql mode and an edit button should appear.
STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
Change to:
NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
And save it
Note: For "shared hosting",we need root permission to disable mysql strict mode.
2. Why am I not able to invite user and/or receive any Orangescrum emails?
If you are using own mail server:
Due to some security reason, maximum shared hosting providers (e.g godaddy, hostgator etc.) do not allow configuring outgoing mail server. We need to ask them to give access to the particular mail server for outgoing mail.
If you are using Gmail:
Need to disable two step verification and "enable less secure apps" and also "enable POP and IMAP" in Gmail settings.
Ensure to provide correct Gmail credentials to SMTP configuration. You can configure your SMTP credentials at app/config/constants.php
3. Why my email replies are not being posted in the Orangescrum tasks?
For this, you need to give proper IMAP hostname and other credential in EmailReply.php file in app/webroot folder.
If you are using Gmail then :
hostname = '{imap.gmail.com:993/ssl}INBOX';
e.g.
/* Email server connection */
$username = FROM_EMAIL_NOTIFY;
$password = 'test@1234'; //(Password of "FROM_EMAIL_NOTIFY" email id )
$hostname = '{imap.gmail.com:993/ssl}INBOX';
If you are using own mail server then
hostname = '{Your IMAP Server hostname:993/ssl}';
e.g.
/* Email server connection */
$password = '**************'; //;(Password of "FROM_EMAIL_NOTIFY" email id )
$hostname = '{imap.test.com:993/ssl}';
4. Why am I facing 500 internal server issue?
Most of the shared hosting users provide 777 permission to "tmp", "webroot" and "Config" folder. This is the reason you get 500 internal server issue.
Orangescrum webroot folder doesn't require complete permission for hosting. However, you need to give 755 permission to all above folders.
Not ready to start your free trial yet?
See why teams prefer Orangescrum
-
Founder, Hailstorm Development