Login   Register  
PHP Classes
elePHPant
Icontem

Returns PR for all URLs

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us

      Google Page Rank Checker  >  All threads  >  Returns PR for all URLs  >  (Un) Subscribe thread alerts  
Subject:Returns PR for all URLs
Summary:Returns the same PR value for all domains being checked
Messages:23
Author:Charles Nullens
Date:2006-01-07 14:54:24
Update:2008-03-10 17:23:28
 
  1 - 10   11 - 20   21 - 23  

  11. Re: Returns PR for all URLs   Reply  
Picture of zipiomega
zipiomega
2006-08-28 17:15:23 - In reply to message 10 from GUNNING Sky

Bug in php 4.4.2 in fonction XOR !!!!
return bad checksum
-----------------------------
another bug not php see
this url return pr=0 is wrong (normaly pr=3 for this url)
http://www.logement-saisonnier.com/location-provence-alpes-c ...

the problem is the ' in url.






  12. Re: Returns PR for all URLs   Reply  
Picture of R Glider
R Glider
2007-01-04 22:53:23 - In reply to message 11 from zipiomega
Same here, tried on 3 different servers. Worked on 2 w/php4 but on another w/php5 only returned result of pr1 for all urls. Not sure it has anything to do with php5 though, because I saw example of it running on php5 in another forum. Are there any other scripts that do this correctly? thanks

  13. Re: Returns PR for all URLs   Reply  
Picture of Alex Roman
Alex Roman
2007-01-05 19:53:53 - In reply to message 10 from GUNNING Sky
May be problem is in your IP, but not in your server?

I test this script at some hosting. 10-20 times it works... But later results were wrong (pr=1 for any site).

  14. Re: Returns PR for all URLs   Reply  
Picture of fatfreddy
fatfreddy
2007-02-08 14:06:00 - In reply to message 13 from Alex Roman
Same Problem here. I think it's G* who causes the faulty results.

To solve this problem I made a small script running on a different server where the request isn't blocked yet.
This sript sends the request to G* and echoes only the PR-value. PR can be imported in any other script using file_get_contents().




  15. Re: Returns PR for all URLs   Reply  
Picture of Barter
Barter
2007-02-12 18:28:25 - In reply to message 10 from GUNNING Sky
hi,

it`s a php problem, installed on server with php4 it works fine!

Then I changed the script to a server with php5 and the script only shows pr1 for all domains.

problem with php5, but I can`t identify wich part of the script is responsible for the problem.

regards

barter


  16. Re: Returns PR for all URLs   Reply  
Picture of oceaniana
oceaniana
2007-06-02 06:12:54 - In reply to message 15 from Barter
No

Its not php problem.

I have php 5.21 on my pc here, it all works fine.

Online server runs PHP Version 4.4.4 does not work, all results with a page rank of 1

  17. Re: Returns PR for all URLs   Reply  
Picture of oceaniana
oceaniana
2007-06-02 06:13:43 - In reply to message 15 from Barter
No

Its not php problem.

I have php 5.21 on my pc here, it all works fine.

Online server runs PHP Version 4.4.4 does not work, all results with a page rank of 1


  18. Re: Returns PR for all URLs   Reply  
Picture of Tran Tuan
Tran Tuan
2007-07-09 17:48:20 - In reply to message 17 from oceaniana
I am too, work fine on php5 but on server with php4, it not work true.
Any idea for this prob!

  19. Re: Returns PR for all URLs   Reply  
Picture of Syed Asif Iqbal
Syed Asif Iqbal
2007-10-08 04:54:41 - In reply to message 18 from Tran Tuan
Hello,

I am having the same problem getting pr 1 for all sites. Although somebody mentioned about ban IP, I changed my IP to a new one But still it gives me the same problem. I was jut wondering, is there any PHP setting on the server needs to be done to make it work. I am using php 4.4.7. However, if it's not the PHp problem , Does someone squred up the problem yet.

Thanks.


  20. Re: Returns PR for all URLs   Reply  
Picture of matthew bagley
matthew bagley
2007-10-30 14:37:43 - In reply to message 19 from Syed Asif Iqbal
To clear this up it IS a PHP problem but also the Server as well!

Here is why... the script uses the ord() function which is returning different results depending on the server.

function strord($string) {
for($i = 0; $i < strlen($string); $i++) {
$result[$i] = ord($string{$i});
}
return $result;
}

without knowing what format (UTF-8 ISO9blahblahblah) it is then we will all be going round in circles but this is why some servers it works on but others it does not it is the way the server is configured and php uses that information for the function ord


 
  1 - 10   11 - 20   21 - 23