Results 1 to 2 of 2

Thread: What does this error message mean?

  1. #1
    reidnunn is offline Registered User
    Join Date
    Jan 2005
    Posts
    25

    Default What does this error message mean?

    Warning: file(/home/tipsonli/public_html/copywriting/templates/admin/message.html): failed to open stream: No such file or directory in /home/tipsonli/public_html/copywriting/application.php on line 159

    Warning: implode(): Bad arguments. in /home/tipsonli/public_html/copywriting/application.php on line 159

    I have received this at setup panel and also when adding categories.

    I can see what it points to, but don't know what it would mean. Any ideas?

    I looked up the code in the file, and here it is, starting on line 158.

    function DisplayTemplate($templatefile, $vars) {
    $line=implode(file($templatefile), "");
    eval( "global $vars;");
    $vars = str_replace(",","",$vars);
    $var_list = explode("\$",$vars);
    $i=0;
    while($i<=sizeof($var_list)) {
    $line = str_replace("<%$var_list[$i]%>",$$var_list[$i],$line);
    $i++;
    }
    print $line;
    }
    Last edited by reidnunn; 01-04-2005 at 12:07 AM.

  2. #2
    esm's Avatar
    esm
    esm is offline Active Member
    Join Date
    Apr 2003
    Location
    Atlanta GA
    Posts
    3,395

    Default

    Quote Originally Posted by reidnunn
    Warning: file(/home/tipsonli/public_html/copywriting/templates/admin/message.html): failed to open stream: No such file or directory in /home/tipsonli/public_html/copywriting/application.php on line 159
    Usually the first error that prints out is the only meaningful error msg, even it you were to receive 100 pages of errors.

    In this case, No such file or directory is the key. Either the file/directory does not exist in the path as shown or the path is just not correct.

    For example, this is the lite version and as such, the admin folder is not located in the templates folder as shown in your path. They actually are on the same level. Well, that is where I would start, anyway.


    .
    esm
    "The older I get, the more I admire competence, just simple competence, in any field from adultery to zoology."

    .

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •