• Bala Egambaram 9
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 3
    Replies
Hi All,
I packaged all the components in one package and 
I am getting fatal error when I ran 'ANT deploy'.But the same worked when I ran 'ANT validate'. The error shows when it runs test classes.
Any idea? very urgent.


C:\ANT\CTEC\PKG\build.xml:61: Failed to process the request successfully. Cause(UNKNOWN_EXCEPTION): UNKNOWN_EXCEPTION: An unexpected error occurred. Please include this ErrorId if you contact support: 178313464-1029582 (772089828)
Hi All,
I implemented 'Insert Article Content into Emails' functionality in Lightning few months before and it was working fine. Now we are not seeing the option in any snadboxes that we implemented when we create a case now. 

https://help.salesforce.com/articleView?id=knowledge_insert_article_content_email.htm&type=5

Any idea?

Thanks
Bala
 
Hi,
I am trying to implement Live Chat button in Napili Community Builder Home page.

I have lightning component with live chat deployment code in static resoureces as below:
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global" >
    <ltng:require scripts="{!$Resource.TrailChat}" />
    <ltng:require scripts="{!$Resource.Deployment}" /> 
    <img id="liveagent_button_online_57341000000CzRV" style="display: none; border: 0px none; cursor: pointer"                           onclick="liveagent.startChat('57341000000CzRV')" src="https://bala-trailhead1-developer-edition.na35.force.com/resource/1481731369000/OnlineButton" />
    <img id="liveagent_button_offline_57341000000CzRV" style="display: none; border: 0px none; " src="https://bala-trailhead1-developer-edition.na35.force.com/resource/1481731401000/OfflineButton" />
</aura:component>

In the TrailChat.js file, I have below code:

liveagent.init('https://d.la2-c1-phx.salesforceliveagent.com/chat', '57241000000Cx1z', '00D41000001hJ6b');
if (!window._laq) { window._laq = []; }
window._laq.push(function(){liveagent.showWhenOnline('57341000000CzRV', document.getElementById('liveagent_button_online_57341000000CzRV'));
liveagent.showWhenOffline('57341000000CzRV', document.getElementById('liveagent_button_offline_57341000000CzRV'));


I am getting following error if I add the lightning component in the Home or custom page in the community builder:

"Uncaught SyntaxError: Unexpected end of input throws at https://playful-bear-281399-dev-ed--livepreview.na35.force.com/sfsites/c/resource/1481921103000/TrailChat:4:114"

The same Live Chat code works fine in the classic Salesforce page.

Any help?

Thanks
Bala


 
I have created the code via the Chat Button design, but am unable to add it to the current Communities page. Community Builder does not allow anything be added in, and Site.com does not allow the template to be edited (as it mentions the page is a Lightning template.) Lightning Components can be built, but do not allow for this sort of scripting. How does something scripted get added via Community Builder or Site.com Studio?
Hi all,
I'm trying to load a set of knolewdge article from sandbox to production environment (using the import articles), but I have a problem with the special characters: I found the articles uploaded correctly, but in the description field (reach text) I found special characters corroded.
I also tried to use different encoding parameters (UTF8,ISO8859_15_FDIS) in the import.properties file, but no luck!

Can anyone help me please?