I suspect this is something to do with URL rewriting but I'm a little stuck.
I'm using the cakeDC tinyMCE plugin which works fine on my local web server but when I upload the whole cakeapp onto a testing url (I'm going from localhost/knowledgebase to intranet/knowledgebase) everything works apart from the TinyMCE JS include.
Heres the problem line -
<script type="text/javascript" src="/knowledgebase/TinyMCE/js/tiny_mce/tiny_mce.js"></script>
When I click this in dev tools it can't load the file. Other script src's work fine such as:
<script type="text/javascript" src="/knowledgebase/js/respond.min.js"></script>
The difference is I'm using the CakeDC TinyMCE helper to produce the link from the view, the other links all point to files in the webroot/js folder.
Can anyone point me in the right direction?
Thanks in advance.