Hello everyone, Im using Linux, and created phalcon project via terminal with the command : "phalcon project phalconBlog --enable-webtools" but when I try localhost/phalconBlog/webtools.php, I see just a blank, empty page. The project is in my desktop. Any idea about that?
My webtools.php file:
<?php
use Phalcon\Web\Tools;
require 'webtools.config.php';
require PTOOLSPATH . '/scripts/Phalcon/Web/Tools.php';
Tools::main(PTOOLSPATH, PTOOLS_IP);
My webtools.config.php file:
<?php
define('PTOOLS_IP', '192.168.');
define('PTOOLSPATH', '/home/myname/phalconBlog/app/library/vendor/phalcon/devtools');
Note:in my project folder, there is no such a folder named app/library.