Google image search > high server load issue

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Google image search > high server load issue

    Hello

    I am now using google image search script on my site, its creating high loads on my server
    Any one please suggest me how can i fix this issue.
    or please suggest any other better image search script.


    Thank You.
    Buying mobile traffic, PM me with your traffic details

    #2
    if it is using file_get_contents you may want to swap it over to curl

    Comment


      #3
      i m not a good coder so i don't know how to do it
      Buying mobile traffic, PM me with your traffic details

      Comment


        #4
        its not hard to do .... here a curl script to help you out:
        PHP Code:
        $url 'http://google.com';
        $ch curl_init();
        curl_setopt($chCURLOPT_URL$url);  
        curl_setopt($chCURLOPT_RETURNTRANSFER1);  
        $page curl_exec($ch);  
        curl_close($ch);
        echo 
        $page

        Comment


          #5
          Many thanks for your help bro but I don't know where to place this code i mean on which file of the script
          Buying mobile traffic, PM me with your traffic details

          Comment


            #6
            Originally posted by razib View Post
            Many thanks for your help bro but I don't know where to place this code i mean on which file of the script
            if you own a php site then it is a good idea to learn php. i have no idea where to place it as i dont have that script

            Comment

            Working...
            X