• Jeff Young Jr.
  • NEWBIE
  • 5 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
Good morning,

Our Salesforce Community Support site is not being indexed by Google. We recently switched to Salesoforce community. We are in the process of updating/indexing our Knowledge Base articles. We have successfully uploaded the articles, and they can be viewed by our customers.

The problem is Google is indicating our pages are not being indexed. There are two instances of this problem. The first, is the 503 errors that come directly from our Salesforce articles. When using "Fetch" or "Fetch and Render" within Google Webmaster tools, it shows our pages as "Unreachable". All of these pages are in fact viewable though. (i.e. http://support.codeware.com/s/article/928 )

The second issue is for pages that we are redirecting to our new Salesforce Knowledge Base. We use a Visualforce page for "Page not found" requests. This will look at the URL, see if it matches our previous Knowledge Base's syntax, then redirect accordingly. (i.e https://support.codeware.com/link/portal/9185/9191/Article/854/How-do-I-resolve-the-message-quot-Unable-to-start-aksfridge-quot-or-quot-Unable-to-start-hardlock-quot-when-trying-to-install-COMPRESS-INSPECT) is redirected to its respective Salesforce page (https://support.codeware.com/s/article/854)

If not, then it will show a "Page not found" page. The entries are coming back as 404. When using "Fetch" it comes back as "Not Found". When using "Fetch and Render" it shows as redirected.

We have "Allow All" in our Robots.txt file.

Please let us know if there is a better way, if you need more information or what could possible be going wrong with our current implementation.

We look forward to your response.

Thank you kindly,
Jeff

Good morning,

Our Salesforce Community Support site is not being indexed by Google. We recently switched to Salesoforce community. We are in the process of updating/indexing our Knowledge Base articles. We have successfully uploaded the articles, and they can be viewed by our customers.

The problem is Google is indicating our pages are not being indexed. There are two instances of this problem. The first, is the 503 errors that come directly from our Salesforce articles. When using "Fetch" or "Fetch and Render" within Google Webmaster tools, it shows our pages as "Unreachable". All of these pages are in fact viewable though. (i.e. http://support.codeware.com/s/article/928 )

The second issue is for pages that we are redirecting to our new Salesforce Knowledge Base. We use a Visualforce page for "Page not found" requests. This will look at the URL, see if it matches our previous Knowledge Base's syntax, then redirect accordingly. (i.e https://support.codeware.com/link/portal/9185/9191/Article/854/How-do-I-resolve-the-message-quot-Unable-to-start-aksfridge-quot-or-quot-Unable-to-start-hardlock-quot-when-trying-to-install-COMPRESS-INSPECT) is redirected to its respective Salesforce page (https://support.codeware.com/s/article/854)

If not, then it will show a "Page not found" page. The entries are coming back as 404. When using "Fetch" it comes back as "Not Found". When using "Fetch and Render" it shows as redirected.

We have "Allow All" in our Robots.txt file.

Please let us know if there is a better way, if you need more information or what could possible be going wrong with our current implementation.

We look forward to your response.

Thank you kindly,
Jeff

Hi, I am having trouble with the "Attributes and Expressions" module from trailhead.

Here is the challenge:
Create a Lightning Component to display a single item for your packing list.
  • Create a component called campingListItem that displays the name (ui:outputText) and the three custom fields using the appropriate output components.
  • Add an attribute named 'item' for type Camping_Item__c.
I created an component named campingListItem and this is the code:
<aura:component >
    <aura:attribute name="item" type="<my_domain>__Camping_Item__c"/>
    
    <ui:outputText value="{!v.item.Name}"/>
    <ui:outputCheckbox value="{!v.item.<my_domain>__Packed__c}"/>
    <ui:outputCurrency  value="{!v.item.<my_domain>__Price__c}"/>
    <ui:outputNumber value="{!v.item.<my_domain>__Quantity__c}"/>
</aura:component>

The error that I am getting is: "Challenge Not yet complete... here's what's wrong: 
The packingListItem Lightning Component's attribute tag doesn't exist or its attributes are not set correctly."

With this, I tried to create another component, with the name "packingListItem", but It didn't work.

Can anyone help me?

Thanks,
Greetings:

I have been trying to do check the challenge of the the first part of the "Apex Basics & Database" module. I have been restructuring my apex code but nothing seems to work. This is the error that I'm getting:
User-added image