Author |
|
Briesmi Newbie
Joined: 02 September 2015 Location: Germany
Online Status: Offline Posts: 10
|
Posted: 28 October 2015 at 7:00am | IP Logged
|
|
|
Hello,
I got issues with the external services.
1. I removed the folders in the plugins directory to deal with the about-i18n plugin (not working). Now I copied the folders for the external services back, but i'm not able to setup the external services in the adminpanel again.
Error: "Data required for integration with external services:
This information can be found in control panel of the respective external service."
How can i get back the services ?
2. How can I translate the external services to another language like english or russian? I tried to translate the English.ini but it doesn't worked, it always shows the english translation.
Thanks so much!
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 29 October 2015 at 4:25am | IP Logged
|
|
|
Quote:
How can i get back the services ? |
|
|
You need to make sure data/settings/settings.xml file contain the data block regarding external services. Based on the issue description, I would assume you have <Socials> block there empty. And if that's the case, replace the empty block with the following:
Code:
<Socials>
<Google>
<Allow>Off</Allow>
<Name>Google</Name>
<Id />
<Secret />
<Scopes>auth filestorage</Scopes>
<ApiKey />
</Google>
<Dropbox>
<Allow>Off</Allow>
<Name>Dropbox</Name>
<Id />
<Secret />
<Scopes>filestorage</Scopes>
<ApiKey />
</Dropbox>
<Facebook>
<Allow>Off</Allow>
<Name>Facebook</Name>
<Id />
<Secret />
<Scopes>auth</Scopes>
<ApiKey />
</Facebook>
<Twitter>
<Allow>Off</Allow>
<Name>Twitter</Name>
<Id />
<Secret />
<Scopes>auth</Scopes>
<ApiKey />
</Twitter>
</Socials> |
|
|
Quote:
2. How can I translate the external services to another language like english or russian? |
|
|
Not sure about what translation specifically you're referring to. Updating main translation files is described here, but translations for lower-level texts such as AdminPanel texts, error messages, etc. are located elsewhere, under libraries/afterlogic/common/i18n directory. You can create a file for a different language there, by copying en.ini file, and specify the language by adding the following item to array defined in data/settings/config.php file:
Upon making any changes to translations, be sure to purge content of data/cache/ directory.
Hope this helps!
|
Back to Top |
|
|
Briesmi Newbie
Joined: 02 September 2015 Location: Germany
Online Status: Offline Posts: 10
|
Posted: 12 November 2015 at 1:40am | IP Logged
|
|
|
Thanks, it works!
|
Back to Top |
|
|