gpt4 book ai didi

css - WooCommerce 图标未显示在 GAE 下的后端

转载 作者:太空宇宙 更新时间:2023-11-04 13:42:52 24 4
gpt4 key购买 nike

当我在 MAMP 下本地运行 WooCommerce 2.1.6 和 WordPress 3.8.1 时,一切都按预期工作,但是当我使用 GoogleAppEngineLauncher v1.9.0 运行相同版本时,WooCommerce 字体的 WooCommerce 图标没有显示。既不在菜单项 WooCommerce 和产品旁边,也不在 WooCommerce 欢迎屏幕上。

所有字体都在

wp-content/plugins/woocommerce/assets/fonts/
├── WooCommerce.eot
├── WooCommerce.svg
├── WooCommerce.ttf
├── WooCommerce.woff
├── star.eot
├── star.svg
├── star.ttf
└── star.woff

我不确定这是否是 GAE 特有的。为了测试无济于事,我已经将所有文件和目录权限设置为777。将其部署到云端时,问题仍然存在。

我现在还在 app.yaml 中为字体文件扩展名添加了一个新部分,但在 App Engine 日志中我现在看到一个 301 后跟一个 200。结果看起来仍然和以前一样,即字体未呈现图标。

2014-03-26 23:40:28.993 301    327B 317ms   /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf
93.209.186.52 - - [26/Mar/2014:15:40:28 -0700] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf HTTP/1.1" 301 327 - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36" "elaborate-chess-531.appspot.com" ms=317 cpu_ms=208 cpm_usd=0.000037 instance=00c61b117c3b43b5a1b35e0b88932df4bf005ee7 app_engine_release=1.9.1

2014-03-26 23:40:29.715 200 4KB 509ms /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf/
93.209.186.52 - - [26/Mar/2014:15:40:29 -0700] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf/ HTTP/1.1" 200 4589 - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36" "elaborate-chess-531.appspot.com" ms=509 cpu_ms=292 cpm_usd=0.000513 instance=00c61b117c3b43b5a1b35e0b88932df4bf005ee7 app_engine_release=1.9.1

有什么想法我可能在这里遗漏了什么吗?

WordPress backend screenshot

最佳答案

毫无疑问,您的 app.yaml 没有定义这些文件的路由。你可能有一个这样定义的处理程序

- url: /wp-content/(.*\.(ico|jpg|png|gif))$
static_files: wordpress/wp-content/\1
upload: wordpress/wp-content/.*\.(ico|jpg|png|gif)$
application_readable: true

在它下面添加另一个部分来覆盖字体等。类似

- url: /wp-content/(.*\.(eot|svg|ttf|woff))$
static_files: wordpress/wp-content/\1
upload: wordpress/wp-content/.*\.(eot|svg|ttf|woff)$
application_readable: true

查看返回 404 的任何其他路径,并确保它们也定义了处理程序。

关于css - WooCommerce 图标未显示在 GAE 下的后端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22655858/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com