Soluții

How to enable Steam family sharing

Steam Families is a feature in Valve’s Steam game distribution client that allows you to share your personal game library (the games you have purchased from the Steam service) with friends and family.
The system is not without limitations, however. Only one device or user can access the library at one time. The account owner is always given preference, but that means if you share your account with your child, only one of you can use the library at a time.

[mai mult...]

How to configure Ryver

To configure Ryver, you need to set up both your user preferences and, if you are an admin, manage team, forum, and integration settings. Ryver is largely cloud-based, so most configuration is done from within its web or desktop app.

Basic User Configuration:

  • Go to the “My Settings” section by clicking your user avatar or the “^” icon at the bottom of the navbar.

  • In “My Settings”, you can:

    • Change notification preferences (e.g., enable/disable email notifications).

    • Set your display name, profile picture, and contact details.

    • Adjust language, timezone, and interface settings.

Team and Forum Setup (Admins):

  • Create Teams and Forums to structure your organization’s communication:

    • Teams: Smaller, focused groups for private discussions and task management.

    • Forums: Organization-wide spaces for open communication with selected guests.

  • In the left sidebar, click “Teams” or “Forums” to add or manage them.

Task and Communication Management:

  • Use chat for group or private conversations.

  • Use “Topics” inside forums and teams for focused threaded discussions.

  • Use the task manager to assign or track tasks; you can turn any conversation into a task.

Integrations:

  • Ryver supports integration with other tools via Zapier, Make, or Boost.space for automating workflows (e.g., connecting email, file storage, or project management apps).

  • To set up an integration, follow the third-party service’s connection process (e.g., enter your Ryver subdomain, admin credentials, and grant API permissions as needed).

News/Alert (Watches):

  • Set up Watches to monitor keywords, RSS feeds, or social media mentions; these alerts can post directly into a designated Team or Forum.

Tips:

  • You may pin your favorite Teams, Forums, and People for quick access.

  • Adjust notification settings under “My Settings” to manage alerts and reduce email volume.

  • Ryver apps are available for Windows, Mac, iOS, and Android for easy access anywhere.

[mai mult...]

How to configure Redmine

To configure Redmine, you need to follow a series of steps that involve installing dependencies, setting up the database, configuring the application, and preparing your web server. These steps are similar across most installations, whether you use Ubuntu or another supported platform.

Basic Redmine Configuration Steps:

  1. Install Required Dependencies

    • Install necessary packages such as Ruby, Rails, a web server (Apache or Nginx with Passenger), and a database (MySQL, MariaDB, or PostgreSQL).

  2. Install Redmine

    • You can install Redmine from the package manager or download it from the official website.

  3. Set Up the Database

    • Create a new database and database user for Redmine. Grant the required permissions.

  4. Configure the Database Connection

    • Copy the sample database configuration file and edit it with your database credentials:

      text
      cp config/database.yml.example config/database.yml
      nano config/database.yml

      Fill in the username, password, and database name you created.

  5. Generate a Secret Token

    • This is necessary for session security:

      text
      bundle exec rake generate_secret_token
  6. Create the Database Schema

    • Initialize the Redmine database with the required tables:

      text
      RAILS_ENV=production bundle exec rake db:migrate
      • On Windows:

        text
        set RAILS_ENV=production bundle exec rake db:migrate
  7. Load Default Data (Optional but Recommended)

    • This step populates the database with default configuration data, including languages:

      text
      RAILS_ENV=production bundle exec rake redmine:load_default_data
  8. Set File System Permissions

    • Ensure the web server or Redmine user owns and can write to the necessary directories like fileslogtmp, and relevant asset directories.

  9. Configure Your Web Server

    • For Apache:

      • Edit Apache config files, set up Passenger, and create needed symlinks.

      • Restart the web server after changes:

        text
        sudo service apache2 restart
  10. Start Redmine

    • Start the application server (e.g., Puma or Passenger). Verify access via a web browser.

  11. Log In as Administrator

    • Default credentials are usually:

      • Username: admin

      • Password: admin

    • Change the password after the first login.

  12. Adjust Redmine Settings

    • Go to Administration > Settings in the web interface to customize notification, email, attachment, issue tracking, and integration settings.

[mai mult...]