You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static.phalconphp.com is not accessible via HTTPS.
For a workaround I just copied all assets to own server and rebuilt Phalcon with different URI to static content.
Debug component HTML output is broken when opened on HTTPS url, because browser doesn't allow insecure content on HTTPS page.
phalcon.c (1.2.1) line 87233:
zend_declare_property_string(phalcon_debug_ce, SL("_uri"), "http://static.phalconphp.com/debug/1.2.0/", ZEND_ACC_PUBLIC TSRMLS_CC);
should be:
zend_declare_property_string(phalcon_debug_ce, SL("_uri"), "//static.phalconphp.com/debug/1.2.0/", ZEND_ACC_PUBLIC TSRMLS_CC);
The text was updated successfully, but these errors were encountered: