|
|
| |
11. Re: Returns PR for all URLs |
|
Reply |
|
|
| |
12. Re: Returns PR for all URLs |
|
Reply |
|
|
 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 |
|
|
 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 |
|
|
 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 |
|
|
 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 |
|
|
 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 |
|
|
 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 |
|
|
 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 |
|
|
 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 |
|
|
 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
|
|