1

I Created a project by this command:

phalcon create-project invo --enable-webtools

But when i open this page:

localhost/phalcon/invo/webtools.php

webtools without any css or js

What is the problem?!

Makyen
  • 31,849
  • 12
  • 86
  • 121
Omid Ebrahimi
  • 1,150
  • 2
  • 20
  • 38

2 Answers2

2

Change the base uri in your config.php baseUri = "/phalcon/invo/"

twistedxtra
  • 2,699
  • 1
  • 18
  • 13
1

I encountered this type of error after creating a project with phalcon command line tool. So to resolve this issue try the following steps:

  1. In app/config/config.php add an entry under [application] staticUri = /projectname/
  2. Replace projectname with your project name.
Bimal
  • 865
  • 10
  • 18