Sorting by facebook likes
duhol Offline
Junior Member
**
Posts: 34
Joined: Mar 2011
Post: #7
RE: Sorting by facebook likes
I change task

PHP Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
    global $mybb, $db, $lang;
    $threads = array();
    // Update thread likes
    $query = $db->query("
        SELECT tid
        FROM ".TABLE_PREFIX."threads
        GROUP BY tid
    ");
    while($thread = $db->fetch_array($query))
    {
            $source_url[] = "http://www.sentens.pl/showthread.php?tid=".$thread['tid'];
            $url = "http://api.facebook.com/restserver.php?method=links.getStats&urls=".implode( ',', $source_url );
            $xml = file_get_contents($url);
            $xml = simplexml_load_string($xml);

    }

            foreach( $xml -> link_stat as $l)
            {
                $s = $l -> url;
                $out = preg_replace("#[^0-9]*#" ,"", $s);
                $l -> total_count;
                $total = $l -> total_count;
                $db->update_query("threads", array('likes' => "{$total}"), "tid='{$out}'", 1, true);

            }

?>


but the problem is that facebook restserver has trouble with 1000 threads at once. My task ask him about all and then write data to DB.

Can you help me to change a task in way that it ask about first thread, then write data to table, ask about second thread and write data to table, ask about third thread and write data to table, etc.

Thanks

(This post was last modified: 10-15-2011 07:34 PM by duhol.)
10-15-2011 07:34 PM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
Sorting by facebook likes - duhol - 10-13-2011, 06:03 AM
RE: Sorting by facebook likes - duhol - 10-13-2011, 01:06 PM
RE: Sorting by facebook likes - duhol - 10-14-2011, 09:27 AM
RE: Sorting by facebook likes - duhol - 10-15-2011 07:34 PM
RE: Sorting by facebook likes - duhol - 10-16-2011, 05:05 AM
RE: Sorting by facebook likes - duhol - 10-16-2011, 06:01 AM
RE: Sorting by facebook likes - duhol - 10-16-2011, 08:58 PM

 Standard Tools
Forum Jump: