Cakephp3 strato installation

随声附和 提交于 2019-12-11 19:36:48

问题


i want to write a little Cakephp3 application for a friend. Now i developed a part of the application locally and i want to install this on his server. He got a managed server at strato.de. I have no access to a shell or something like this to configure everything by myself.

What i did already to solve the problem:

  • I googled around and found several things about some definitions in the htaccess-files: .htaccess for cakephp but it didn't solve my problem.
  • I also read the installation-guide of cakephp.

The problem:

I can't access the application. If i try to open the url i only get a complete white page. So what do i have to do to access the application?

Thanks for help!


回答1:


Put this lines in you root index.php file to show all errors

error_reporting(E_ALL);
ini_set("display_errors", "on");

(overhead this line)

require 'webroot' . DIRECTORY_SEPARATOR . 'index.php';

But I imagine a message like this...

Fatal error: You must enable the intl extension to use CakePHP in ... cakephp/config/bootstrap.php on line 38

I talked with Strato about it, but they didn't give me any solution for shared hostings...

If it's any info, I checked hostings strato and its support laravel5



来源:https://stackoverflow.com/questions/32218957/cakephp3-strato-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!