Dolphin Groups and Orca

RESOLVED! Going to \groups\orca as Admin then recompiling Lang=en there, solved the issue

 

so...

 

Dolphin needs a compile

Orca needs a compile

AND group\orca needs a compile

 

During our UAT testing our testers came up with an issue thats got us stumped. We need to get this out of test an into production. Any help would be awesome.

 

~johnny

Monterey CA.

 

  1. Test user logs on (result = success)
  2. Test user creates group under "Animals & Pets" called Cats (result=success)
  3. Test User Clicks Post Topic (result=success)(URLhttp://www.xxxxxxx.com/groups/entry/Cats)
  4. Test user Presented with post topic enty form at URL (http://www.xxxxxx.com/groups/orca/forum/Cats-0.htm#action=goto&new_topic=Cats)
  5. Form Entry fields contain improper syntax (ex.L[Topic subject:]] etc. (result=STOP and escalate)

Level 2 steps taken

  1. search for strings in lanq. in Dolphin - result (not Found)
  2. Recompile Lanq "en" in Dolphin Admin (result=success
  3. Recompile Lanq. "en" in Orca Admin (result=success)

Repeat UAT steps 1-5 = Same result STOP escalate.

 

testers note " A google of the string |Orca L[Topic subject:]] | shows hundreds of forums with these string. Most likely from not recompiling the lang. However, we have done that on "Dolphin" and "Orca" 

 Note #2 "Creating a forum in "Orca" shows no issues and Posting also is OK directly in "Orca", It seems that when "Dolphin 6.1.4" shells out to create the post, something is missing in the translation"

Quote · 20 Feb 2009

I just added Groups and came up with the same language compile issue: brackets everywhere in groups.

-

When you are in admin there is not a link to groups per se so you must type in http://yoursite.com/orca/groups .

-

This is where you will find the en link to compile language!

-

Good one! Thanks for this yyyh412!

-

Lorren

Quote · 24 Feb 2009

 

I just added Groups and came up with the same language compile issue: brackets everywhere in groups.

-

When you are in admin there is not a link to groups per se so you must type in http://yoursite.com/orca/groups .

 

-

This is where you will find the en link to compile language!

-

Good one! Thanks for this yyyh412!

-

Lorren

 

Glad it helped!

Quote · 24 Feb 2009

I just added Groups and came up with the same language compile issue: brackets everywhere in groups.

-

When you are in admin there is not a link to groups per se so you must type in http://yoursite.com/orca/groups .

-

This is where you will find the en link to compile language!

-

Good one! Thanks for this yyyh412!

-

Lorren

Lorren

-

Sorry just a small correction:  The address for compiling groups orca is as follows: http://yoursite.com/groups/orca/

-

you had it back to front

-

no biggie, just don't want people getting stuck, saying there is no such page..lol

Quote · 25 Feb 2009

You are correct on that...sorry.

-

Lorren

I just added Groups and came up with the same language compile issue: brackets everywhere in groups.

-

When you are in admin there is not a link to groups per se so you must type in http://yoursite.com/orca/groups .

-

This is where you will find the en link to compile language!

-

Good one! Thanks for this yyyh412!

-

Lorren

Lorren

-

Sorry just a small correction:  The address for compiling groups orca is as follows: http://yoursite.com/groups/orca/

-

you had it back to front

-

no biggie, just don't want people getting stuck, saying there is no such page..lol

Quote · 25 Feb 2009

Thank you so much for that everyone - I was tearing my hair out.

Talk about hidden functionality.

But wait a minute?

Is this how you get to moderate all of thos group forums too - by a backdoor. yep seems it is.

so to moderate all of your groups forums you need to remember the url

mysite/groups/orca/index.php

because no link exists anywhere.

makes me wonder how many people have link farms that they are unaware of - with loads of forums that they dont know how to access.

And it seems if you dont like the words "Orca :: Interactive Forum Script" plastered across the top of the page & the browser window. You have to go and remove the hardcoded name in the header file. seems that Orca was a rush job to me.

(the file is at mysite/groups/orca/inc/header.inc.php - if you need to do that)

Quote · 15 Mar 2009

And it seems if you dont like the words "Orca :: Interactive Forum Script" plastered across the top of the page & the browser window. You have to go and remove the hardcoded name in the header file. seems that Orca was a rush job to me.

(the file is at mysite/groups/orca/inc/header.inc.php - if you need to do that)

This didn't work on the install I'm working on.

More suggestion here >

http://www.boonex.com/unity/forums/topic/orca-groups-.htm

Quote · 16 Mar 2009

Ok, it worked after doing this>

Look for Changed TITLE Forum(Give your title here......) in groups/orca/layout/uni_en/xsl/canvas.xsl

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">

<xsl:include href="canvas_includes.xsl" />
<xsl:include href="../../base_en/xsl/canvas_init.xsl" />

<xsl:template match="root">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
<xsl:choose>
<xsl:when test="string-length(/root/page/posts/topic/title) &gt; 0">
<xsl:value-of select="/root/page/posts/topic/title" /> :: Changed TITLE Forum
</xsl:when>
<xsl:when test="string-length(/root/page/topics/forum/title) &gt; 0">
<xsl:value-of select="/root/page/topics/forum/title" /> :: Changed TITLE Forum
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="title" />
</xsl:otherwise>
</xsl:choose>
</title>

<xsl:element name="base">
<xsl:attribute name="href"><xsl:value-of select="base"/></xsl:attribute>
</xsl:element>

<xsl:call-template name="canvas_includes" />

</head>
<xsl:element name="body">
<xsl:attribute name="onload">if(!document.body) { document.body = document.getElementById('body'); }; h = new BxHistory(); document.h = h; return h.init('h'); </xsl:attribute>
<xsl:attribute name="id">body</xsl:attribute>

<xsl:call-template name="canvas_init" />


<xsl:value-of select="/root/header" disable-output-escaping="yes" />

<div id="orca_main">

<xsl:if test="not(string-length(page/onload))">
<xsl:apply-templates select="page" />
</xsl:if>

</div>

</xsl:element>
</html>
</xsl:template>

</xsl:stylesheet>

-

-

Thanks to siroydolphin

Quote · 16 Mar 2009

Hi,

I still have an issue. I was seeing L[Topic subject:]] etc. whenever I was trying to post a topic to a group. So, I compiled Orca|Groups language by logging in as admin, navigating to http://yoursite.com/groups/orca/ and then clicking on 'en'.

Now, the L{Topic subject:]] etc. tags are gone but there is a message box in the middle of the box with the text: 'LOADING POST TOPIC PAGE...' but the page never gets loaded.

Any help is greatly appreciated. Dolphin seems to be such a nice product, but Orca is proving to be a nightmare!

Thanks

Sean

Quote · 14 Apr 2009
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.