We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Phalcon render not finish page

I start my project on new computer. I got blank page, when i open source code of the page i saw it

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
        <title>Phalcon PHP Framework is down</title>
        <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
        <link rel="shortcut icon" type="image/x-icon" href="

It is all. I don't know do further



8.4k

phalcon version? php version? did you use phalcon devtools?

phalcon version? 3.4 php version? 7.3 did you use phalcon devtools? No



8.4k

in this case it could be alot of things

first install phalcon devTools and create a new project and we will go from there

edited Jan '20

There is a clue for you: the page stops rendering right at the url attribute of the favicon link tag.

I would check the PHP code responsible for generating that URL.

EDIT: Also, enable error logging:

ini_set('display_errors', 1);
error_reporting(E_ALL);

There is a clue for you: the page stops rendering right at the url attribute of the favicon link tag.

I would check the PHP code responsible for generating that URL.

EDIT: Also, enable error logging:

ini_set('display_errors', 1);
error_reporting(E_ALL);

Very valuable information, it is not at all blogs that we find this, congratulations I was looking for something like that and found it here.