如何安装新的oracle apex主题?
我正在尝试安装新的 apex 主题,但问题是我不知道将主题图像文件夹放在 apache 网络服务器中的哪里?
我尝试将其放在 apache/images 上,但这不起作用
有人知道将 images 文件夹放在哪里吗 注意:我已成功导入 .sql 文件并已将主题切换为新主题。
I'm trying to install new apex theme but the problem is that I don't know where to put theme images folder in apache webserver?
I tried to put it on the apache/images but this doesn't work
So does anybody know where to put the images folder
Note: I have successfuly imported the .sql file and already switched the theme to the new one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于模板如何引用图像文件。
默认情况下,在 Apex 中,有一个名为 #IMAGE_PREFIX# 的替换值,它指向名为 /i/ 的文件夹。反过来,该文件夹只是在 Apache 配置中设置的别名(请参阅 bads.conf 文件以确定实际位置)。
您的模板应使用 #IMAGE_PREFIX#some_folder_name/some_file_name 引用图像,在这种情况下,您需要将图像放入 /i/ 别名指向的目录下名为“some_folder_name”的文件夹中。
It depends on how the template references the image files.
By default in Apex, there is a substitution value called #IMAGE_PREFIX# that points to a folder called /i/. This folder, in turn, is just an alias set up in the Apache config (see the dads.conf file to determine the actual location).
Your template should reference images using #IMAGE_PREFIX#some_folder_name/some_file_name, in which case you need to put the images in a folder called "some_folder_name" beneath the directory that the /i/ alias points to.