Read a Book 54 Light Poster

But i am generating the JSON code dynamically. If there is no video than i hide the VideoObject tag with if statement.
Should i just remove the itemscope itemtype="http://schema.org/VideoObject"

KomalBhatt -3 Light Poster

You can try directly contacting the police department they claim to represent. Also, genuine police communications typically come from official government domains, not common email services like Gmail. If the emails contains poor grammar, urgent language, or requests for personal information then it's very likely to be spam. And to confirm you can search the email address online or check scam reporting websites to see if others have reported similar issues.

Dani 4,084 The Queen of DaniWeb Administrator Featured Poster Premium Member

Make sure the backlinks are on pages that are not noindexed (they neither have a meta noindex tag nor a noindex http header), as well as the pages’ URLs not matching any rule on their website’s robots.txt file.

Additionally, make sure that the page on your own website the backlink points to doesn’t match a rule on your site’s own robots.txt

If all that checks out, you can go to Ahrefs.com and set up a free account and see if Ahrefs can detect the backlink.

Something else to check out is DaniWeb’s SEO backlink checker at https://www.daniweb.com/tools/backlinks

To use the tool, enter your own domain name as well as a list of URLs that you expect your backlinks to appear on. It will check each of the URLs and make sure that there are no meta noindex tags, http noindex, robots.txt rules, etc., and if there’s any technical reason why the backlink shouldn’t be found, so you don’t have to do all of that manually.

james1221 0 Newbie Poster

How can I indexed backlink instantly. I am building backlinks, but the backlinks are not being indexed. Please give positive feedback.

AndyBeohar 0 Newbie Poster

On-page SEO can be more beneficial. The following tips will definitely help you boost traffic.

  • Create high-quality, relevant content
  • Optimize for mobile devices
  • Engage in strategic link-building activities
polles 0 Newbie Poster

nice post!

KomalBhatt -3 Light Poster

Use keywords in anchor text. Commit to regular link building. Build links from relevant websites. Create infographics and other visual assets.

rproffitt 2,580 "Nothing to see here." Moderator

You may wish to edit or delete your post above since it LEAKED your gmail address and more.

Puterwiz82 commented: Yes I realized it included my Gmail address so I edited the screen shot. +0
Puterwiz82 17 Newbie Poster

Thank you. It seems based on the email on Friday, they got mad I reposted it to spam.

The same supposed police department has contacted previously. I attached the recent emails.

IMG_3185.jpeg

rproffitt commented: I recall same many times in r/Scams. Mark as spam, block, etc. Never reply or show signs you read their scam. +0
Puterwiz82 17 Newbie Poster

I have blocked the email on my Gmail account, any new emails get sent to spam. I received one Friday afternoon. I know I can just delete my spam emails but would like to have it deleted. Would I need to unblock the email address and set a rule that emails from that address get deleted and not sent to spam or can I leave it blocked and do a rule so that these emails get deleted from spam so I don’t see that they sent new replies? This is regarding gmail, and the email I’m receiving is from a gmail email address.

rproffitt commented: I mark it as spam. And then I'm done. However some don't like any spam. Long discussions follow. +17
Dani 4,084 The Queen of DaniWeb Administrator Featured Poster Premium Member

You have the itemtype set to a VideoObject but, as you point out, only sometimes is there actually an .mp4 file. The rest of the time, it's a static image such as a png, jpg, or jpeg. Google probably doesn't trust your meta tags since they are inaccurate half the time.

Dani 4,084 The Queen of DaniWeb Administrator Featured Poster Premium Member

I’ll take a look at this tomorrow. I’m currently in bed :)

Read a Book 54 Light Poster

BUMP. Anyone can help with this issue ? :/

Dani 4,084 The Queen of DaniWeb Administrator Featured Poster Premium Member

There is no way of determining the owner of an email address, especially from a free service such as GMail. Anyone can sign up for a free gmail account and purport to be anyone. However, if you're getting emails from a scammer, forward them to abuse@gmail.com so that GMail can follow up and take the appropriate action (e.g. shut down the GMail account).

Puterwiz82 commented: Thank you. I tried searching online but no luck with results. I forwarded the emails and I’ll delete them. I have them in spam and blocked the email +0
rproffitt 2,580 "Nothing to see here." Moderator

The police email scam is well known. That's about all you need to know that it's the scam of note.
Example: https://www.reddit.com/r/Scams/comments/1b592gr/is_this_real/ r/Scams has many other scams of note.

Worth noting:

  1. Do not track them down.
  2. Ignore, block and report as spam.
  3. No police use a Gmail account.
Puterwiz82 commented: Thank you for the information. I forwarded the emails, blocked the email and deleted them +0
Puterwiz82 17 Newbie Poster

I have been receiving emails from a gmail email address, I tried doing reverse searches on it but not coming up anything. I have a feeling it may be the scammers posing as a police department. Is there anyway I can determine the owner of the email address or its validity?

AndyBeohar 0 Newbie Poster

I would say

  1. Create high-quality, valuable content that naturally attracts backlinks from authoritative websites in your industry.
  2. Engage in strategic outreach, guest blogging, and participate in relevant communities can also help build quality links.
KomalBhatt -3 Light Poster

Google has, however, noted that they simply don't follow nofollow links. So while nofollow links likely don't have a direct impact on your SEO, they can affect your website traffic

toneewa 81 Junior Poster in Training

The first thing that comes to mind is that Google doesn't, because they don't have to. They can save all the nofollows for a third party, and still be telling the truth.

Google -> follow -> done.
Google -> nofollow -> save -> done.
save <- NSA -> done.
NSA -> follow -> done.
NSA -> Google -> done.

Read a Book 54 Light Poster

Hello everyone, i am not able to fix this issue in the Search Console Video is not the main content of the page but actually it is!

When you enter in my product page the first thing that appears is the video it self! (hosted on imgur platform)

I even added additional Schema video tags but that seems is useless.

here is the code i am using:

P.S: $image4 variable sometimes can contain video link or image link.

<?php if (!empty($image4)): ?>
    <div class="swiper-slide">
        <div class="dz-media" itemscope itemtype="http://schema.org/VideoObject">
            <?php
            if (pathinfo($image4, PATHINFO_EXTENSION) === 'mp4') {
                // Display a video if the link points to an MP4 file
                echo '<meta itemprop="thumbnailUrl" content="' . $image1 . '">';
                echo '<meta itemprop="contentUrl" content="' . $image4 . '">';
                echo '<video controls width="100%" height="auto" poster="' . $image1 . '" itemprop="video">';
                echo '<source src="' . $image4 . '" type="video/mp4">';
                echo 'Your browser does not support the video tag.';
                echo '</video>';
            } elseif (in_array(pathinfo($image4, PATHINFO_EXTENSION), array('png', 'jpg', 'jpeg'))) {
                // Display an image if the link points to a PNG, JPG, or JPEG file
                echo '<img src="' . $image4 . '" alt="' . $product_tags . '">';
            }
            ?>
            <meta itemprop="name" content="<?php echo htmlspecialchars($product_name); ?>">
            <meta itemprop="description" content="<?php echo htmlspecialchars($product_description); ?>">
            <meta itemprop="uploadDate" content="<?php echo date('c', strtotime($upload_date)); ?>">
        </div>
    </div>
<?php endif; ?>

please anyone with the knowledge how to fix this problem

here is a link to a product page on my website
https://www.kupisi.mk/product/за-дома/сунгер-за-чистење-прашина/48

@Dani please remove the backlinks if possible, so my site doesn't get indexed …

jofrachalya142 10 Newbie Poster Banned

This doesn't matter as much in terms of SEO and as per my experience it ain't a ranking signal, it just help the users to open the website if they search it using "www". Adding on, it just help you in technical aspects.

AndyBeohar 0 Newbie Poster

Changing your website from non-www to www can have benefits for SEO consistency and branding, but the impact may vary depending on your specific circumstances. It's generally considered a good practice for long-term SEO, as it can help standardize your URL structure and improve domain authority. However, it's important to implement proper redirects and inform search engines of the change to avoid any negative effects on existing rankings. Overall, if done correctly, the change can be beneficial for your website's SEO in the long run.

Digital_39 0 Newbie Poster

You've nailed it! Effective link building involves high-quality content, guest blogging, broken link opportunities, social media promotion, and influencer collaboration. Quality beats quantity, and staying updated on search engine algorithm changes is essential.

webhostingworld 0 Newbie Poster

One effective approach is to create valuable and informative content that others will want to link to, such as blog posts, infographics, or videos. By consistently producing top-notch content, you can attract organic backlinks.

KomalBhatt -3 Light Poster

Yes. always focus on quality and not on quantity. creating a link is important but always follow the algorithm. Do organic SEO. Or else it will considered in black hat seo. You can focus on doing blog submissions, Question and answers for getting a backlink, always remember to check DA and PA of the website

ani03 0 Newbie Poster

If you using the permanent redirection then there is No problem, when the user enter your non www version it redirects to www version. As Dani told you have to change your Google Analytics property and google Search Console property from non www to www version.

Read a Book commented: Got it! On it! BIG THANKS +0
Dani 4,084 The Queen of DaniWeb Administrator Featured Poster Premium Member

I guess that’s changed since I submitted my site what I feel like is at least a decade ago.

bijutoha 42 Junior Poster

I've noticed this: We can locate the solution when I submit my website to GSC.

www-non-www-bijutoha.png

Dani 4,084 The Queen of DaniWeb Administrator Featured Poster Premium Member

You are correctly implementing 301 redirects in an .htaccess file. Ensure that the redirects point to the exact same URL as you have in the canonical.

Additionally, ensure that all internal links throughout your site point to that same URL as well.

Dani 4,084 The Queen of DaniWeb Administrator Featured Poster Premium Member

Is that what you want your preferred URLs to look like?

Read a Book commented: Yes, thats correct way of displaying and reading in my language +0