Sponsored Content
The Lounge What is on Your Mind? SEO Update: Back On Page 1 for Google SERPs (between #6 and #8) Post 303028659 by Neo on Saturday 12th of January 2019 02:02:11 AM
Old 01-12-2019
Hey Ravinder!

Thanks for the SEO research.

The biggest changes I made recently were:

Fixed the meta data for the threads and the posts.
  • Reactivated the "showposts" function in threads.
  • Fixed the meta (but not completely) in the man pages.
  • Fixed (bandaid fixed only) a redirect issue in our DragonByte SEO PHP code.

TODO:
  • Fix meta on mobile.
  • Fix meta on all man pages (descriptions are too short).

Before, there was some fancy script which tried to do all the meta data in one single global page. That did not work; so I changed it to do the meta based on the page, and it works better, but not yet perfect.

It is on my TODO list to fix the remaining meta, but have been busy with the badging system.
This User Gave Thanks to Neo For This Post:
 

5 More Discussions You Might Find Interesting

1. Web Development

Search Engine Optimization (SEO) - Google v. Yahoo.

Over 95 percent of our web site traffic somes from Google search referrals, and less than 1 percent from Yahoo search referrals. We submit site maps daily to both Yahoo and Google. Any idea why Google is so strong and Yahoo is so weak? (7 Replies)
Discussion started by: Neo
7 Replies

2. Web Development

How to auto update html page

is there any way to auto update html page. I created html page entry.html, whenever i change in html script i need to refresh my page. If not in html, can we do this in any other language and how? (2 Replies)
Discussion started by: RohitKJ
2 Replies

3. Web Development

Fix For Google Page Rank: Wordpress List Rank Dashboard Widget

Here is the fix for the recent Google changes to their pagerank API. For example, in the List Rank Dashboard Widget Wordpress Plugin (Version 1.7), in this plugin file: list-rank-dashboard-widget/wp-list-rank-class.php in this function: function getGooglePR($url) Change this line: ... (0 Replies)
Discussion started by: Neo
0 Replies

4. Linux

Rolling Back an Update

I am writing a software product and hope that it will work on a variety of Linux distributions. At the moment, I am trying to create some kind of Linux version of patches/upgrades of installed software. Gathering information on available updates isn't hard, nor is installation of updates, but I... (27 Replies)
Discussion started by: Brandon9000
27 Replies

5. What is on Your Mind?

Any Google SEO Expert to Help UNIX.COM?

I checked (again) and it seems like we lost 70% of our Google indexed links starting in March 2018. So far, I do not know what caused this drop: https://www.unix.com/members/1-albums215-picture904.png As mentioned, I have done a lot of checking, and we did not make any changes in March of... (2 Replies)
Discussion started by: Neo
2 Replies
PHAR.GETMETADATA(3)							 1						       PHAR.GETMETADATA(3)

Phar::getMetadata - Returns phar archive meta-data

SYNOPSIS
public mixed Phar::getMetadata (void ) DESCRIPTION
Retrieve archive meta-data. Meta-data can be any PHP variable that can be serialized. PARAMETERS
No parameters. RETURN VALUES
any PHP variable that can be serialized and is stored as meta-data for the Phar archive, or NULL if no meta-data is stored. EXAMPLES
Example #1 A Phar.getMetadata(3) example <?php // make sure it doesn't exist @unlink('brandnewphar.phar'); try { $p = new Phar(dirname(__FILE__) . '/brandnewphar.phar', 0, 'brandnewphar.phar'); $p['file.php'] = '<?php echo "hello";'; $p->setMetadata(array('bootstrap' => 'file.php')); var_dump($p->getMetadata()); } catch (Exception $e) { echo 'Could not modify phar:', $e; } ?> The above example will output: array(1) { ["bootstrap"]=> string(8) "file.php" } SEE ALSO
Phar.setMetadata(3), Phar.delMetadata(3), Phar.hasMetadata(3). PHP Documentation Group PHAR.GETMETADATA(3)
All times are GMT -4. The time now is 11:18 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy