warning message on uploading my website files to hosting server

Discussion in 'PHP' started by pr_abhat, Jan 20, 2009.

  1. #1
    I am new to this forum and dont know much about webhosting. I have uploaded my website files on the server laima fo lunarpages.com. The temporary name of my website given to me by lunarpages is http://laima.lunarbreeze.com/~* username/ and i have complete the DNS propogation as directed on the namecheap server from whom i have purchased the domain www.easyincomeonnet.info. On uploading my webfiles through Ipswitch WS_FTP and searching my website in my browser I got the following message -

    Warning: file_get_contents(auto.txt) [function.file-get-contents]: failed to open stream: No such file or directory in /home/easyi10/public_html/rotator.php on line 30


    The contents of the rotator.php file on my website as followed. kindly check it and guide me what to do so that i can open my website in my browser. Thanks is advance -

    <?php
    //Had to add for PHP versions older than 4.3.11
    srand();

    if(!isset($Filename))
    {
    echo "Error: no filename specified.";
    exit();
    }

    if(!isset($Number))
    {
    $Number = 1000000;
    }

    if($RunType == 1 && isset($Snippet_Array))
    {
    $Item_Array = $Snippet_Array;
    }
    else if($RunType == 2 && isset($SnippetTag_Array))
    {
    $Item_Array = $SnippetTag_Array;
    }
    else if($RunType == 3 && isset($SitemapTag_Array))
    {
    $Item_Array = $SitemapTag_Array;
    }
    else
    {
    $File_Contents = file_get_contents($Filename);
    $Item_Array = explode("#BREAK#", $File_Contents);
    array_pop($Item_Array);
    }


    for($ctr = 0; $ctr < count($Item_Array); $ctr++)
    {
    if(strpos($Item_Array[$ctr], $Page))
    unset($Item_Array[$ctr]);
    }

    $Item_Array = array_values($Item_Array);


    if($Number > count($Item_Array))
    {
    $Number = count($Item_Array);
    }

    if($Number == 0)
    {
    exit();
    }

    $Output_Keys = array_rand($Item_Array, $Number);
    if(!is_array($Output_Keys))
    $Output_Keys = array($Output_Keys);

    $LeftOver_Array = $Item_Array;

    for($ctr=0; $ctr < count($Output_Keys); $ctr++)
    {
    unset($LeftOver_Array[$Output_Keys[$ctr]]);
    }

    $LeftOver_Array = array_values($LeftOver_Array);

    unset($File_Contents);

    $Page = substr($Page, strrpos($Page, "/")+1);

    $File_Contents = file_get_contents($Page);

    $ctr=0;
    while($ctr < count($Output_Keys))
    {
    if(strpos($File_Contents, $Item_Array[$Output_Keys[$ctr]]))
    {
    unset($Output_Keys[$ctr]);
    $Output_Keys = array_values($Output_Keys);
    if(count($LeftOver_Array) > 0)
    {
    $Item = array_rand($LeftOver_Array, 1);
    array_push($Output_Keys, $Item[0]);
    unset($LeftOver_Array[$Item[0]]);
    $LeftOver_Array = array_values($LeftOver_Array);
    }
    }
    else
    {
    $ctr++;
    }
    }

    $ctr = 0;
    while(count($Output_Keys) != 0)
    {
    echo $Item_Array[array_shift($Output_Keys)];
    }


    if($RunType == 1)
    {
    $Snippet_Array = $LeftOver_Array;
    }
    else if($RunType == 2)
    {
    $SnippetTag_Array = $LeftOver_Array;
    }
    else
    {
    $SitemapTag_Array = $LeftOver_Array;
    }

    unset($RunType);
    unset($Number);
    unset($Page);
    unset($Filename);

    ?>
     
    pr_abhat, Jan 20, 2009 IP
  2. WPGLamour

    WPGLamour Active Member

    Messages:
    30
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    95
    #2
    What the scrips says is that you don't have a file named auto.txt in the same directory as rotator.php
     
    WPGLamour, Jan 20, 2009 IP
  3. GreatMetro

    GreatMetro Peon

    Messages:
    117
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    GreatMetro, Jan 20, 2009 IP