Google update in January effect anyone?

Post all bugs here
kenhirai
Posts: 330
Joined: Wed Jan 02, 2013 4:25 am

Re: Google update in January effect anyone?

Post by kenhirai »

they may pump back, hosted tube sites got hit last month same thing and all hosted tube just died, then back up after 7 days... its similar result... so hold tight and be hopeful
admin
Site Admin
Posts: 37994
Joined: Wed Sep 10, 2008 11:43 am

Re: Google update in January effect anyone?

Post by admin »

May be google doesn't like images like rot_in.php outside visible area.
Try to move it to somewhere 'on screen'.
Don't forget to run script update
Ricky B
Posts: 78
Joined: Sat Nov 24, 2012 12:39 am

Re: Google update in January effect anyone?

Post by Ricky B »

i have find this website who tracking google update http://algoroo.com/
admin
Site Admin
Posts: 37994
Joined: Wed Sep 10, 2008 11:43 am

Re: Google update in January effect anyone?

Post by admin »

How to move rot_in.php to visible area, example

We have to replace rot_in.php?crc=<!--PAGE_CRC--> code a bit


1. Copy any image, site logo for example to scj/cgi or copy rot_in + common.php to where logo is
2. create file, for example, logo.php or counter.php , whatever

<?
include('rot_in.php');
header('Content-Type: image/jpeg');
readfile('logo.jpg');

where logo.jpg - is your image


3. change default string to <img src='logo.php?crc=<!--PAGE_CRC-->'>

That's it.
Don't forget to run script update
Ricky B
Posts: 78
Joined: Sat Nov 24, 2012 12:39 am

Re: Google update in January effect anyone?

Post by Ricky B »

i need to try it thats look really cool
admin
Site Admin
Posts: 37994
Joined: Wed Sep 10, 2008 11:43 am

Re: Google update in January effect anyone?

Post by admin »

Ok
Don't forget to run script update
vrocks
Posts: 22
Joined: Tue Mar 05, 2013 10:32 pm

Re: Google update in January effect anyone?

Post by vrocks »

Also giving this one a try.
tubeman
Posts: 534
Joined: Sat Mar 02, 2013 11:33 am

Re: Google update in January effect anyone?

Post by tubeman »

admin wrote:How to move rot_in.php to visible area, example

We have to replace rot_in.php?crc=<!--PAGE_CRC--> code a bit


1. Copy any image, site logo for example to scj/cgi or copy rot_in + common.php to where logo is
2. create file, for example, logo.php or counter.php , whatever

<?
include('rot_in.php');
header('Content-Type: image/jpeg');
readfile('logo.jpg');

where logo.jpg - is your image


3. change default string to <img src='logo.php?crc=<!--PAGE_CRC-->'>

That's it.

Hi,
Do we have to do this in the root directory or in scj/cgi directory, for example if
I copy abc.jpg into the scj/cgi folder then I create file abc.php with this code:

<?
include('rot_in.php');
header('Content-Type: image/jpeg');
readfile('abc.jpg');
?> (Do we need to put the closing tag as you have not included it in your example)

abc.php must be uploaded to root or scj/cgi directory ?

And then :

<img src='abc.php?crc=<!--PAGE_CRC-->'>

Is it correct way?

Regards,
tubeman
Posts: 534
Joined: Sat Mar 02, 2013 11:33 am

Re: Google update in January effect anyone?

Post by tubeman »

admin wrote:How to move rot_in.php to visible area, example

We have to replace rot_in.php?crc=<!--PAGE_CRC--> code a bit


1. Copy any image, site logo for example to scj/cgi or copy rot_in + common.php to where logo is
2. create file, for example, logo.php or counter.php , whatever

<?
include('rot_in.php');
header('Content-Type: image/jpeg');
readfile('logo.jpg');

where logo.jpg - is your image


3. change default string to <img src='logo.php?crc=<!--PAGE_CRC-->'>

That's it.
Hi

1.) If I don't add this "border=0 width=0 height=0 alt="" to the img tag it will display the image, do I have to add it also?
2.) Is it safe if we just delete the line from the code:
<img src="/scj/cgi/rot_in.php?crc=<!--PAGE_CRC-->" border=0 width=0 height=0 style="position: absolute; top: -100; left: -100" alt="" />

Thanks.
vrocks
Posts: 22
Joined: Tue Mar 05, 2013 10:32 pm

Re: Google update in January effect anyone?

Post by vrocks »

What you need to do:

Copy your logo file to /scj/cgi directory.

Create a file called logo.php and put it in /scj/cgi directory.

Put inside it this code:

Code: Select all

<?
include('rot_in.php');
header('Content-Type: image/jpeg');
readfile('logo.jpg');
?>
In the above example readfile('logo.jpg'); should be changed to the actual name of your logo file that you copied into the /scj/cgi directory. example: mysitelogo.jpg

Now open the header template editor and look for the code that is currently loading your logo image.

example:

Code: Select all

<img src="/images/mysitelogo.jpg" border="0" height="250" width="1000" alt="my logo">


Modify it so that it matches below.

Code: Select all

<img src="/scj/cgi/logo.php?crc=<!--PAGE_CRC-->" border="0" height="250" width="1000" alt="my logo">
ALSO remove the old code from the header file:

Code: Select all

<img src="/scj/cgi/rot_in.php?crc=<!--PAGE_CRC-->" border=0 width=0 height=0 style="position: absolute; top: -100; left: -100">
It is no longer needed...

What you are doing is removing that code because it uses a height, width size that looks spammy and bad to google. It also uses CSS to locate itself outside of the viewable area. Another spammy looking thing to google. Instead you are doing the referrer detection and other information through your logo which will still show just like before.
Post Reply