Announcement

Collapse
No announcement yet.

error in Google indexing missing field ‘name’ (in ‘author’)

Collapse
This topic has been answered.
X
X
Collapse
First Prev Next Last
 
  • Filter
  • Time
  • Show
Clear All
new posts

    error in Google indexing missing field ‘name’ (in ‘author’)


    Dears

    kindly I'm receiving this error in google indexing for some pages


    Click image for larger version

Name:	Screen Shot 2024-03-07 at 1.36.42 AM.png
Views:	790
Size:	92.8 KB
ID:	29140

    missing field ‘name’ (in ‘author’)

    is is an issue with the script or from my customization

    one of the pages affected https://www.ienajah.com/vb/node/106777
    using Version 5.7.5

    advice please​
  • Answer selected by HaMooooDi at 03-07-2024, 08:59 PM.

    You can use Google Rich Text Result tool and enter a URL to find more details of the issue.



    The tool says it is missing the field 'name' for the 'Comment' type.
    HTML Code:
    <div class="userinfo b-userinfo b-post__hide-when-deleted"
        itemprop="author" itemscope itemtype="http://schema.org/Person">
        ...
        <a href="https://www.ienajah.com/vb/member/1-hamoooodi"
            class="" data-vbnamecard="1"><font color="#FF1515">HaMooooDi</font></a>
    In the above HTML code from the link you posted, it has:
    HTML Code:
    itemprop="author" itemscope itemtype="http://schema.org/Person"
    but it's missing the corresponding field called 'name' of that Person object in:
    HTML Code:
    <a href="https://www.ienajah.com/vb/member/1-hamoooodi"
        class="" data-vbnamecard="1"><font color="#FF1515">HaMooooDi</font></a>


    This issue seems to be happening in vB5 only and seems to be fixed in vB6. To fix this issue, the username part should have itemprop="name" like this:
    HTML Code:
    <a href="https://www.ienajah.com/vb/member/1-hamoooodi"
        class="" data-vbnamecard="1"><span itemprop="name"><font color="#FF1515">HaMooooDi</font></span></a>

    I recommend you to upgrade to vB6 if you have a vB6 license. If not, you can fix it in vB5 by editing the userlink template in the Style Manager.

    Find and eplace 2 instances of this code below:
    Code:
    {vb:raw displayname_safe}

    with:
    HTML Code:
    <span itemprop="name">{vb:raw displayname_safe}</span>
    Last edited by glennrocksvb; 03-07-2024, 03:47 PM.

    Comment


      #2
      You can use Google Rich Text Result tool and enter a URL to find more details of the issue.



      The tool says it is missing the field 'name' for the 'Comment' type.
      HTML Code:
      <div class="userinfo b-userinfo b-post__hide-when-deleted"
          itemprop="author" itemscope itemtype="http://schema.org/Person">
          ...
          <a href="https://www.ienajah.com/vb/member/1-hamoooodi"
              class="" data-vbnamecard="1"><font color="#FF1515">HaMooooDi</font></a>
      In the above HTML code from the link you posted, it has:
      HTML Code:
      itemprop="author" itemscope itemtype="http://schema.org/Person"
      but it's missing the corresponding field called 'name' of that Person object in:
      HTML Code:
      <a href="https://www.ienajah.com/vb/member/1-hamoooodi"
          class="" data-vbnamecard="1"><font color="#FF1515">HaMooooDi</font></a>


      This issue seems to be happening in vB5 only and seems to be fixed in vB6. To fix this issue, the username part should have itemprop="name" like this:
      HTML Code:
      <a href="https://www.ienajah.com/vb/member/1-hamoooodi"
          class="" data-vbnamecard="1"><span itemprop="name"><font color="#FF1515">HaMooooDi</font></span></a>

      I recommend you to upgrade to vB6 if you have a vB6 license. If not, you can fix it in vB5 by editing the userlink template in the Style Manager.

      Find and eplace 2 instances of this code below:
      Code:
      {vb:raw displayname_safe}

      with:
      HTML Code:
      <span itemprop="name">{vb:raw displayname_safe}</span>
      Last edited by glennrocksvb; 03-07-2024, 03:47 PM.
      Helpful? Donate. Thanks!
      Buy me a coffeePayPal QR Code
      Fast VPS Host for vBulletin:
      A2 Hosting & IONOS

      Comment


        #3
        thanks very much glennrocksvb

        this solved the issue

        there is another 3 warning see attached screen shot is there any modification can solve this

        Click image for larger version

Name:	Screen Shot 2024-03-08 at 6.58.17 AM.png
Views:	79
Size:	82.9 KB
ID:	29146

        Comment


          #4
          What is the URL? Please send the link to the Google Rich Text result.
          Helpful? Donate. Thanks!
          Buy me a coffeePayPal QR Code
          Fast VPS Host for vBulletin:
          A2 Hosting & IONOS

          Comment


            #5
            Originally posted by glennrocksvb View Post
            he URL? Please send the link to the Google Rich Text result.
            the same link these are warnings

            اعرف معنى درجتك +d - +c - a عادةً ما يتخذ الدرجات الأكاديمية شكل خمسة أو ستة أو سبعة درجات من الحروف. تقليديا ، الدرجات هي A + ، A ، A− ، B + ، B ، B− ، C + ، C ، C− ، D + ، D ، D− و F ، مع A + هي الأعلى و F هي الأدنى. في بعض الحالات ، يمكن أن تكون التقديرات عددية أيضًا. تختلف التحويلات من رقم إلى حرف بشكل عام من نظام إلى

            Comment


              #6
              You have to click the retest button to let Google re-crawl the page and get the latest results. When I did that, I don't see any errors or warnings.

              Click image for larger version

Name:	image.png
Views:	58
Size:	103.3 KB
ID:	29150
              Helpful? Donate. Thanks!
              Buy me a coffeePayPal QR Code
              Fast VPS Host for vBulletin:
              A2 Hosting & IONOS

              Comment


                #7
                If you are referring to the warnings, those are just warnings and they are optional and you are not required to fix them.

                Helpful? Donate. Thanks!
                Buy me a coffeePayPal QR Code
                Fast VPS Host for vBulletin:
                A2 Hosting & IONOS

                Comment


                • HaMooooDi
                  HaMooooDi commented
                  Editing a comment
                  Yes im refering to the warnings, as you said these are optional, thanks for your reply

                #8
                If you click the Validate Fix button in Google Search Console, you should see the errors gone after Google is done re-crawling and re-testing the page.
                Helpful? Donate. Thanks!
                Buy me a coffeePayPal QR Code
                Fast VPS Host for vBulletin:
                A2 Hosting & IONOS

                Comment


                  #9
                  Originally posted by glennrocksvb View Post
                  you click the Validate Fix button in Google Search Console, you should see the errors gone after Google is done re-crawling and re-testing the page.
                  did that and every thing is going well now, waitting for google to re-crawling the pages and validate the fix

                  However one more question is their any way to speed the indexing of pages in google, i have around 90 K links showing errors and i requested re-crawling after fixing the errors but it is too slow

                  Comment


                    #10
                    It's not instant. It may take days, weeks or months. That's up to Google.
                    Helpful? Donate. Thanks!
                    Buy me a coffeePayPal QR Code
                    Fast VPS Host for vBulletin:
                    A2 Hosting & IONOS

                    Comment


                      #11
                      Hi Glenn, this issue has also VB 6.0.3. I could fix it with your help here!

                      But I am also getting "Missing field "text"​" now. Can you help me here?

                      Comment


                        #12
                        quattro123, please provide the link to the Google Rich Text result so that I can see the HTML tags where the error is pointing to.

                        Use this Google Rich Results Text tool and then enter the URL on your forum with the "Missing field text" error.

                        Helpful? Donate. Thanks!
                        Buy me a coffeePayPal QR Code
                        Fast VPS Host for vBulletin:
                        A2 Hosting & IONOS

                        Comment


                          #13
                          Hi Glenn, see for example this link:
                          Hallo, Ist es möglich am Leon 5F FR 2.0TDI 184Ps Baujahr 2014 die Sport-Informationen vom Cupra freizuschalten? Außerdem möchte ich gerne wissen ob und wie ich bei meinem Nacigationssystem die Video/ und

                          Comment


                            #14
                            quattro123, I investigated the issue on the provided link using Google's Rich results Text tool and found out that the issue is caused by post #3 having no text and just image.

                            Hallo, Ist es möglich am Leon 5F FR 2.0TDI 184Ps Baujahr 2014 die Sport-Informationen vom Cupra freizuschalten? Außerdem möchte ich gerne wissen ob und wie ich bei meinem Nacigationssystem die Video/ und


                            The required field "text" (denoted by itemprop="text" attribute) is actually present in the HTML but it only contains <img> tag and no text content in it. Please see excerpt of the HTML code for reference. Other parts removed for brevity.
                            HTML Code:
                            <div class="js-post__content-text restore h-wordwrap" itemprop="text">
                                <img itemprop="image" src="filedata/fetch?id=13692&amp;d=1528134547" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" />
                            </div>
                            Notice itemprop="text" attribute in the <div> tag. It doesn't have any text content in it. It only has <img> tag with itemprop="image". If it had a text content in it, then the issue would not occur.

                            It seems you are allowing a post without text and just image. Did you set the Minimum Characters Per Post setting to 0?
                            Helpful? Donate. Thanks!
                            Buy me a coffeePayPal QR Code
                            Fast VPS Host for vBulletin:
                            A2 Hosting & IONOS

                            Comment


                              #15
                              Hi Glenn, many thanks for your help, that's the issue! Changed this setting now!

                              Comment

                              Users Viewing This Page

                              Collapse

                              There is 1 user viewing this forum topic.

                              • Guest Guest

                              Latest Posts

                              Collapse

                              Working...
                              X
                              Searching...Please wait.
                              An unexpected error was returned: 'Your submission could not be processed because you have logged in since the previous page was loaded.

                              Please push the back button and reload the previous window.'
                              An unexpected error was returned: 'Your submission could not be processed because the token has expired.

                              Please push the back button and reload the previous window.'
                              An internal error has occurred and the module cannot be displayed.
                              There are no results that meet this criteria.
                              Search Result for "|||"