• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

RunAbove storage

Last edited:
So , i need to run a app for owncloud and then connected to a container ?

Of course not... The idea was to point out which data you need to provide (they code box) Well, check this code, it has the key pairs for the required data.

Code:
'objectstore' => array(
    'class' => 'OC\\Files\\ObjectStore\\Swift',
    'arguments' => array(
        'username' => 'myusername@mymail.com', // Runabove username
        'password' => 'mypassword', // Runabove password
        'container' => 'owncloud', // Container name. Ownclound store files using it's own metadata,
        // so, keep a container only for Owncloud use.
        'autocreate' => true, // Create the container if it does not exist. default is false
        'region' => 'SBG-1', // Region where you want to store files
        'url' => 'https://auth.Runabove.io/v2.0', // Runabove identity endpoint
        'tenantName' => '1234567', // project name
        'serviceName' => 'swift', // service name, should be 'swift' on Runabove[
    ),
)

As you may notice you need the projet name, url, region, container, password and username. The whole point is that you need to provide those on Chevereto. Is not that hard.
 
Last edited:
Of course not... The idea was to point out which data you need to provide (they code box) Well, check this code, it has the key pairs for the required data.

Code:
'objectstore' => array(
    'class' => 'OC\\Files\\ObjectStore\\Swift',
    'arguments' => array(
        'username' => 'myusername@mymail.com', // Runabove username
        'password' => 'mypassword', // Runabove password
        'container' => 'owncloud', // Container name. Ownclound store files using it's own metadata,
        // so, keep a container only for Owncloud use.
        'autocreate' => true, // Create the container if it does not exist. default is false
        'region' => 'SBG-1', // Region where you want to store files
        'url' => 'https://auth.Runabove.io/v2.0', // Runabove identity endpoint
        'tenantName' => '1234567', // project name
        'serviceName' => 'swift', // service name, should be 'swift' on Runabove[
    ),
)

As you may notice you need the projet name, url, region, container, password and username. The whole point is that you need to provide those on Chevereto. Is not that hard.
Always the first time is hard xD
 
Back
Top