Page 2 of 8

Re: Google update in January effect anyone?

Posted: Sat Jan 18, 2014 9:52 pm
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

Re: Google update in January effect anyone?

Posted: Sun Jan 19, 2014 7:02 pm
by admin
May be google doesn't like images like rot_in.php outside visible area.
Try to move it to somewhere 'on screen'.

Re: Google update in January effect anyone?

Posted: Mon Jan 20, 2014 4:04 am
by Ricky B
i have find this website who tracking google update http://algoroo.com/

Re: Google update in January effect anyone?

Posted: Mon Jan 20, 2014 12:23 pm
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.

Re: Google update in January effect anyone?

Posted: Tue Jan 21, 2014 3:01 am
by Ricky B
i need to try it thats look really cool

Re: Google update in January effect anyone?

Posted: Tue Jan 21, 2014 3:33 am
by admin
Ok

Re: Google update in January effect anyone?

Posted: Tue Jan 21, 2014 7:12 am
by vrocks
Also giving this one a try.

Re: Google update in January effect anyone?

Posted: Tue Jan 21, 2014 9:22 am
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,

Re: Google update in January effect anyone?

Posted: Tue Jan 21, 2014 9:40 am
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.

Re: Google update in January effect anyone?

Posted: Tue Jan 21, 2014 9:53 am
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.