localhost 和 VPS 之间 CSS 的差异
从我的私人 VPS 上的本地主机移动网站后,我在 CSS 方面存在差异,
主要是:
- 某些地方较大的字体
- 无法对齐
在 VPS 之前,我的网站已取出托管,一切正常。
在 VPS 上,我自己安装了所有东西 - apache、php、mysql、ftp 服务器。 差异在于所有浏览器(FF、IE、Opera)
服务器详细信息: Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 与 Suhosin-Patch
我不知道搜索什么...在哪里。为什么所有内容在 localhost 上都显示正确,而在 VPS 上则不同。相同的文件!
请帮我 :)
After move website from localhost on my private VPS I have differences in CSS
Mainly:
- bigger font in some places
- doesn't work align
Before VPS I had website on taked out hosting and there everything was ok.
On VPS I installed everything myself - apache, php, mysql, ftp server.
The differences are on all browsers (FF,IE,Opera)
Server details:
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 with Suhosin-Patch
I don't know what search... where. Why all on localhost displays correctly and on VPS differently. The same files!
Please help me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用萤火虫。检查你的 css 是否有 404ing。
确保在两种情况下缩放设置相同。
除此之外我没有太多的想法...
Use firebug. Check for 404ing of your css.
Make sure you have zoom set the same in both instances.
Other than that I don't have too many ideas...
我发现出了什么问题。
在索引文件中,我有:
session_start() 出错,这就是原因。
更改后:
一切正常。
I found what was wrong.
In index file i had:
session_start() makes error and that was the reason.
After change on:
Everything is ok.