erro de sintaxe próximo ao token inesperado ''

1

Eu configurei o arquivo php na tarefa cron no plesk 10.4.4 server paralelo. No e-mail de notificação, ele está mostrando os erros.

      syntax error near unexpected token '<' 
     syntax error near unexpected token 'newline'
     /newsletter_auto.php: line 2: '<html>'

o código do arquivo newsletter_auto.php está abaixo

        <title>Market Trend Newsletter</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><scripttype="text/javascript">
$(document).ready(function(){
var abc=encodeURIComponent($("#newsletter").html());
    $.ajax({
            type:'POST',
            url:'newsletter_automation.php?abc='+abc,
            success:function(data){
             }
        });
});
</script>
    </head>
    <body>
<?php
    function checkForNULLString($str)
    {
        if($str == "" || $str == " " || $str == "  " || $str == "   " || $str == "    " || $str == "     " || $str == "       " || $str == null)
        {
            return false;
        }
        else 
        {
            return true;
        }
    }

    function cleanForDatabase($str)
    {
        $str =  preg_replace('/[^a-zA-Z0-9\s-_#@.,]/', '', $str);
        $str = mysql_real_escape_string($str);

        return $str;
    }

    function runSQLQuery($query,$mysqlConnect)
    {
        $result = mysql_query($query,$mysqlConnect);

        if(mysql_errno($mysqlConnect) != 0){
            echo "\n !<u>!ERROR:</u>mysqlConnect:".$mysqlConnect." <br/>query:".$query."<br/> Query.result:" . mysql_errno($mysqlConnect) . ": " . mysql_error($mysqlConnect) . "\n";

            //Log the Query Error
            $result = mysql_query($query,$mysqlConnect); exit();

        }

        return($result);
    }

    function insertIconAdminLink($link,$name,$type,$text=NULL,$target="_self")
    {
        //print"<a href=\"".$link."\" onmouseout=\"Javascript:roll_over_switch('".$name."',false);\" onmouseover=\"Javascript:roll_over_switch('".$name."',true);\"><img name=\"".$name."\" id=\"".$name."\" border=\"0\" src=\"/images/".$type.".gif\" />".$text."</a>";

        print" <a class=\"iconLinkText\" href=\"".$link."\" target=\"".$target."\"><img name=\"".$name."\" id=\"".$name."\" border=\"0\" src=\"/images/".$type.".gif\" width=\"24\" height=\"24\" />".$text."</a> ";
    }

    <div id="newsletter"> <p>Stocks traded <?php echo $stock_direction; ?> today with the <?php echo $stock_index; ?> closing at <?php echo $stock_index_close; ?>, <?php echo $stock_direction; ?> <?php echo $stock_index_difference; ?> or <?php echo $stock_index_percentage_difference; ?> from the previous close. The number of NYSE advances were <?php echo $nyse_advances; ?>, the number of decliners was </div>
      </body>
      </html>

Por favor, deixe-me saber como posso resolver isso?

    
por Rohan Kapoor 25.05.2012 / 23:45

1 resposta

1

Esse é o erro que você esperaria se você executasse um arquivo de modelo php, por exemplo. test.php sob o intérprete do script bash, por exemplo, se você criar um arquivo básico de script php;

$ echo -e "<html>\n</body><?php echo 'test'?></body></html>" > ~/test.php
$ cat test.php 
<html>
</body><?php echo 'test'?></body></html>

e torná-lo executável, e tente executá-lo diretamente ...

$ chmod +x test.php 
$ ./test.php 
./test.php: line 1: syntax error near unexpected token 'newline'
./test.php: line 1: '<html>'

Isso ocorre porque o shell está tentando executar o script no interpretador de script padrão, ou seja, bash, o equivalente a ele;

$ bash test.php 
test.php: line 1: syntax error near unexpected token 'newline'
test.php: line 1: '<html>'

pelo menos, algo como isto, pelo menos, executar o script php sob o php;

$ /usr/bin/php test.php
<html>
</body>test</body></html>
    
por 26.05.2012 / 02:35

Tags