How to Activate Enterprise?

I just got my trial copy of Corona Enterprise.
In the readme.html, it says
[text]
To activate, type the following:

/path/to/CoronaBuilder.app/Contents/MacOS/CoronaBuilder authorize email password
where email and password are associated with the Enterprise account subscription.

This will activate a computer to use CoronaBuilder. Every account is allowed one computer.
[/text]

Where exactly do I enter that? In the terminal? It just says path not found if I do that…

I have copied my CoronaBuilder.app into the /Applications folder but I’m lost on how to Activate that… I don’t much use the mac for development so please help! [import]uid: 64174 topic_id: 34052 reply_id: 334052[/import]

With your setup start Terminal and type:

/Applications/CoronaBuilder.app/Contents/MacOS/CoronaBuilder authorize {email} {password}

{email} and {password} is your Corona account info. [import]uid: 70847 topic_id: 34052 reply_id: 135414[/import]

Thanks @ingemar
Now the terminal says “Permission Denied”…
Do I need to use sudo or something? [import]uid: 64174 topic_id: 34052 reply_id: 135417[/import]

Yeah I tried using sudo… terminal says
[text]sudo: /Applications/CoronaBuilder.app/Contents/MacOS/CoronaBuilder: command not found[/text]:frowning:

Any ideas? [import]uid: 64174 topic_id: 34052 reply_id: 135419[/import]

I don’t remember if I needed to do that. Did you give it a try? [import]uid: 70847 topic_id: 34052 reply_id: 135418[/import]

Yeah, I don’t think sudo should be necessary.

I’m starting to suspect that the permissions on the executable are not correct.
In Terminal type

cd /Applications/CoronaBuilder.app/Contents/MacOS

then type

ls -al

You should see a file called CoronaBuilder, and the permissions should be something like this

-rwxr-xr-x@ 1 ingemar admin 1068992 9 12 02:27 CoronaBuilder

The above is my output, and as you see the file is owned by me, in your case the file should be owned by you.

Another important thing is that the permissions should be -rwxr-xr-x
[import]uid: 70847 topic_id: 34052 reply_id: 135422[/import]

Ah the file permission was off… mine was -rw-r–r--…

So I went into the folder and entered

chmod 755 CoronaBuilder  

Now everything works well… After I gave authorize I got the message
[text]
This computer is registered with the ‘Enterprise (Native extensions)’ subscription.
[/text]

Thank a lot ingemar! [import]uid: 64174 topic_id: 34052 reply_id: 135424[/import]

Great!
Happy Enterprising :slight_smile: [import]uid: 70847 topic_id: 34052 reply_id: 135426[/import]

With your setup start Terminal and type:

/Applications/CoronaBuilder.app/Contents/MacOS/CoronaBuilder authorize {email} {password}

{email} and {password} is your Corona account info. [import]uid: 70847 topic_id: 34052 reply_id: 135414[/import]

Thanks @ingemar
Now the terminal says “Permission Denied”…
Do I need to use sudo or something? [import]uid: 64174 topic_id: 34052 reply_id: 135417[/import]

Yeah I tried using sudo… terminal says
[text]sudo: /Applications/CoronaBuilder.app/Contents/MacOS/CoronaBuilder: command not found[/text]:frowning:

Any ideas? [import]uid: 64174 topic_id: 34052 reply_id: 135419[/import]

I don’t remember if I needed to do that. Did you give it a try? [import]uid: 70847 topic_id: 34052 reply_id: 135418[/import]

Yeah, I don’t think sudo should be necessary.

I’m starting to suspect that the permissions on the executable are not correct.
In Terminal type

cd /Applications/CoronaBuilder.app/Contents/MacOS

then type

ls -al

You should see a file called CoronaBuilder, and the permissions should be something like this

-rwxr-xr-x@ 1 ingemar admin 1068992 9 12 02:27 CoronaBuilder

The above is my output, and as you see the file is owned by me, in your case the file should be owned by you.

Another important thing is that the permissions should be -rwxr-xr-x
[import]uid: 70847 topic_id: 34052 reply_id: 135422[/import]

Ah the file permission was off… mine was -rw-r–r--…

So I went into the folder and entered

chmod 755 CoronaBuilder  

Now everything works well… After I gave authorize I got the message
[text]
This computer is registered with the ‘Enterprise (Native extensions)’ subscription.
[/text]

Thank a lot ingemar! [import]uid: 64174 topic_id: 34052 reply_id: 135424[/import]

Great!
Happy Enterprising :slight_smile: [import]uid: 70847 topic_id: 34052 reply_id: 135426[/import]