English 中文(简体)
Zend simplexml_load_file()路径在Ubuntu中的Apache中不起作用
原标题:Zend simplexml_load_file() path not working in Apache in Ubuntu

我正在尝试从脚本文件夹中的helper方法加载一个xml文件

$styleData=新的Zend_Config_Xml($this->;视图->;baseUrl()/styles/style1/style.xml);

And i am getting error Uncaught exception Zend_Config_Exception with message simplexml_load_file(): I/O warning : failed to load external entity "/my_blog/public/styles/style1/style.xml" in /usr/share/php/libzend-framework-php/Zend/Config/Xml.php:98

Now if i do $styleData = new Zend_Config_Xml( localhost/ .$this->view->baseUrl(). /styles/style1/style.xml ); Then everything works fine Could you please help

最佳回答

你能试试这个吗

$styleData = new Zend_Config_Xml($this->view->baseUrl("/styles/style1/style.xml"));

I usually use it to add styles , javascript files another example

  $this->headLink()->appendStylesheet($this->baseUrl("css/reset.css"))
                ->appendStylesheet($this->baseUrl("css/text.css"))
                ->appendStylesheet($this->baseUrl("css/960.css"))
                ->appendStylesheet($this->baseUrl("css/demo.css"));
        echo $this->headLink();

希望对你有所帮助

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签