Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a file called script.php, this is some php and some javascript mixed together. The mime type of this file is forced to javascript, so this is a normal javascript file, but extension php.

I'm tryng to insert this inside my layout throuh script function. If write:

echo $this->Html->script('rsravenna/script.php'); 

cakephp will try to insert script.php.js, how can avoid the append of .js?

share|improve this question

2 Answers

The appending of .js is hardcoded in the HtmlHelper->script() function. Is there anything in your app, that keeps you from just including your script manually?

<script type="text/javascript" src="myscript.php"></script>

Otherwise you could extend the HtmlHelper to pass the variable ext as part of the options array to HtmlHelper->assetUrl.

You could also do it the other way around, tell your server to parse .js-files in a specific folder as php to preserve the extension. If you're using apache, put this in your .htaccess:

AddType application/x-httpd-php .js

Now you should be able to rename your myscript.php to myscript.js and still get it parsed. This would enable you to use the standard script()-function.

share|improve this answer

It's really not clear to me what you're trying to do. script is an HTML Helper used to include javascript not PHP.

You can do something like:

echo $this->Html->url('/rsravenna/script.php', true);

or

echo $this->Html->url(array(
    "controller" => "foo",
    "action" => "bar",
    "ext" => "php"
));

Why are you forcing the MIME type to .js ?

share|improve this answer
I assumed what he's trying to accomplish is dynamically generating Javascript with PHP. – boundaryfunctions Aug 22 '12 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.