Trac
 
 

General Orca FAQ

How can I re-register Orca with a different license?

How can I add other languages in Orca

How can I rename folder "orca" into "forum"?

How can I re-register Orca with a different license?

You can do it this way:

1) Delete the file:

orca/conf/params.conf

2) Register Orca by navigating to Admin Panel -> Plugins -> Orca -> Manage Forum and specifying your new license number in the red area.


How can I add other languages in Orca

To add other languages, you need to open the file orca/xml/langs/en.php and translate the values of the $GLOBALS array, for example:

the English version looks like this:

'Search' => 'Search',

the French version would be

'Search' => 'Chercher',

Then you need to save this file with a different name consisting of the two-lettered code of the language, e.g. fr and the php extension: fr.php and place it in the same directory where en.php is located.

Now you only need to recompile your languages the way it is described here.


How can I rename folder orca into forum

1) Do not rename the folder itself. Just make this change in Builders -> Navigation Menu Builder. Click on Forums and in the URL field replace orca/ with forum/.

2) Run this query in phpMyAdmin:

update `TopMenu` set `Link` = replace( `Link` , 'orca', 'forum' ) where `Link`='orca/#action=goto&my_flags=1' OR `Link`='orca/#action=goto&my_threads=1' OR `Link`='orca/#action=goto&search=1'

3) Recompile Navigation Menu by moving one of its elements.

4) Then you need to add the following lines to the .htaccess file which is located in Dolphin installation directory (you can add them at the bottom of the file before the </IfModule> line):

RewriteRule ^forum$ orca/ [QSA,L]
RewriteRule ^forum/$ orca/ [QSA,L]