1
A
回答
0
既然你有XAMPP,這樣做:
- 停止Apache。
- 運行
composer update
這應該修復它!
namespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
class DefaultController extends Controller
{
/**
* @Route("/", name="homepage")
*/
public function indexAction(Request $request)
{
return $this->render('default/index.html.twig', [
'base_dir' => realpath($this->getParameter('kernel.project_dir')).DIRECTORY_SEPARATOR,
]);
}
}
到:
0
例如,在你的appbundle /的Controler/DefaultController
剛從刪除陣列通過
參數
namespace AppBundle\Controller;
...所有使用說明
class DefaultController extends Controller
{
/**
* @Route("/", name="homepage")
*/
public function indexAction(Request $request)
{
return $this->render('default/index.html.twig', [
]);
}
}
0
解決錯誤只是停止你的apache服務器並運行作曲家更新並再次啓動Apache服務器和錯誤消失。我相信這會幫助你
相關問題
- 1. Git錯誤:致命:無法連接套接字(無效參數)
- 2. 致命:無法連接套接字(無錯誤)
- 3. SOAP:致命錯誤..無法連接到主機
- 4. 致命錯誤 - 無法連接到數據庫
- 5. 致命錯誤:'無法連接到主機'! (Facebook的API)
- 6. PHP連接致命錯誤
- 7. cqlsh連接錯誤:無法連接到
- 8. 致命錯誤:無法在/
- 9. 由連接方法造成的JRE檢測到致命錯誤
- 10. 錯誤致命錯誤:無法在
- 11. 內部錯誤:github.com [0:192.30.252.130]:errno =沒有錯誤致命:無法連接套接字(無錯誤)
- 12. Mysqli PHP連接致命錯誤
- 13. System.InvalidOperationException:內部連接致命錯誤
- 14. C#SQL內部連接致命錯誤
- 15. 使用git bash下載lexandera/Aardwolf.git(Windows);致命錯誤 - 無法連接到github.com
- 16. PHP致命錯誤:未捕獲HTTP_Request2_ConnectionException:無法連接到tls://bingapis.azure-api.net:443
- 17. 致命錯誤:未捕獲CurlException:7:無法連接到拋出的主機
- 18. deliver_later與Sidekiq導致500錯誤,當無法連接到Redis的
- 19. 由於錯誤導致無法連接到SQL Server 2014
- 20. 致命錯誤「無效數據接收」
- 21. python3 unotools連接錯誤無法連接
- 22. PHPMailer的錯誤:「無法連接到:25」
- 23. heroku錯誤:無法連接到heroku API
- 24. 錯誤「無法連接到github.com」
- 25. Mysql2 ::錯誤:無法連接到'127.0.0.1'(61)
- 26. 無法連接到本地錯誤:500
- 27. 錯誤:無法找到模塊'連接'
- 28. RCurl,錯誤:無法連接到主機
- 29. 錯誤 - 無法連接到服務器
- 30. curl錯誤:無法連接到主機
如果你嘗試'php作曲者更新'這是否有所作爲? –
Hi @Alvin,no。隨着PHP作曲家更新,發生相同。 –
看起來像你正在使用xampp。你可以嘗試停止Apache,然後做'作曲者更新'?看看這是否有所作爲? –