CSS文件修改为服务器中的临时php文件(joomla)

发布于 2024-11-30 21:23:34 字数 382 浏览 1 评论 0原文

我添加了下面的代码以供 css 参考。

JHTML::_('stylesheet', 'example.css', 'components/'._THISCOMPONENT.'/assets/css/');

它在本地工作正常。但是当我尝试在服务器中运行它时,CSS 由于这个原因无法工作 输出 html css 链接

<link rel="stylesheet" href="/components/com_fms/assets/css/css-3391b7d3949af1560b9927c0c3a672b2.php" type="text/css" />

有人知道解决这个问题吗?

I have added this below code for css reference.

JHTML::_('stylesheet', 'example.css', 'components/'._THISCOMPONENT.'/assets/css/');

It is working fine in local.But when i try to run it in the server, the css is not working due to this
output html css link

<link rel="stylesheet" href="/components/com_fms/assets/css/css-3391b7d3949af1560b9927c0c3a672b2.php" type="text/css" />

Do anyone have idea on solving this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栖迟 2024-12-07 21:23:34
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />

默认情况下,如果将代码添加到模板文件(templates/my_fantastic_template/index.php)中,则该代码可以正常工作。

尝试此代码:

$document =& JFactory::getDocument();
$document->addStyleSheet('components/'._THISCOMPONENT.'/assets/css/example.css');

我希望它会有所帮助。

<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />

By default this code work correct if it is added in template-file (templates/my_fantastic_template/index.php)

Try this code:

$document =& JFactory::getDocument();
$document->addStyleSheet('components/'._THISCOMPONENT.'/assets/css/example.css');

I hope it will be helpfull.

扮仙女 2024-12-07 21:23:34

尝试使用

<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />

完整的

JHTML::_('stylesheet', 'example.css', 'components/'._THISCOMPONENT.'/assets/css/');

/templates/system/css/system.css 以及 css 文件的 url

Try using

<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />

instead

JHTML::_('stylesheet', 'example.css', 'components/'._THISCOMPONENT.'/assets/css/');

complet /templates/system/css/system.css with your url to the css file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文