dreamsxin / cphalcon7

Dao7 - Web framework for PHP,QQ群 316911641 & 515414530
https://dreamsxin.github.io/phalcon7-docs/
247 stars 66 forks source link

make: warning: Clock skew detected. Your build may be incomplete. #487

Closed DoATrulyPhper closed 4 years ago

DoATrulyPhper commented 4 years ago

I encountered a problem in install cphalcon7 appear ‘make: warning: Clock skew detected. Your build may be incomplete.‘

env.config php7.2.2 centos7.0 gcc4.8.5

dreamsxin commented 4 years ago

View system date

date
DoATrulyPhper commented 4 years ago

系统时间和当前时间不一致,需要调整一下重新安装吗?

dreamsxin commented 4 years ago

把系统系统调整到当前时间,大于源码文件的修改时间

Aha233Unravel commented 4 years ago

不报错了,但是php扩展还是没有,重启了已经

dreamsxin commented 4 years ago

fpm,编写 test.php

<?php
phpinfo();

浏览器中打开 http://localhost/test.php,看加载的配置文件列表,是否有你添加 extension=phalcon.so 的文件。

cli,执行php --ini,看加载的配置文件列表,是否有你添加 extension=phalcon.so 的文件。

Aha233Unravel commented 4 years ago

/usr/local/php/lib/php/extensions/no-debug-non-zts-20170718/已经有phalcon.so,php.ini中也加了extension=phalcon.so,phpinfo()还是读不到扩展

dreamsxin commented 4 years ago

如果没有错误,就是加的位置有问题,按照我上面的方式检查,一般都能发现。 cli 下 php -m 如果加载失败会直接输出错误信息。 fpm,模式,应该也会在log中输出错误。

dreamsxin commented 4 years ago

phpinfo 会输出加载了哪些配置文件,fpm和cli默认一般使用不同的配置文件。

Aha233Unravel commented 4 years ago

All right, thanks

DoATrulyPhper commented 4 years ago

@dreamsxin 3Q