无法在cpanel上上传phpunit Laravel文件

时间:2016-11-06 08:40:45

标签: php laravel phpunit cpanel virus

我无法在cpanel上传phpunit文件。我扫描我的电脑,Laravel文件,phpunit但仍然收到错误。

85%之后我收到了错误。你能帮帮我吗? 提前致谢

enter image description here

1 个答案:

答案 0 :(得分:0)

最后我找到了解决方案。 eval-stdin.php中存在一些问题

C:\ XAMPP \ htdocs中\ myfirstlarvelproject \厂商\ PHPUnit的\ PHPUnit的\ SRC \的Util \ PHP \ EVAL-stdin.php

代码前

<?phpeval('?>' . file_get_contents('php://input'));

替换代码

<?php 
eval('?>' . file_get_contents('php://input'));
?>

I added space between <?php and eval and closed php tag ?>

它对我有用。