[eluser]brianw1975[/eluser]
I'm going to take a different approach to your problem and, maybe stupidly, assume that you have not edited the main index.php file, but instead have your main view file named index.php
With that assumption out of the way, I am going to ask this: if you use a .htaccess file to remove index.php from the URL, did you update/edit your .htaccess file so that the browser can get access to /assets
If you don't use a .htaccess, have you CTRL-SHIFT-Reloaded the site in your browser? Sometimes things like this aren't updated because of browser cache.
Next, have you verified that your browser can get to the tinyMCE.js file directly through the address bar?
[quote author="Packe" date="1252424274"]Here is my index.php which I have stripped of unnecessary HTML code:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link rel="stylesheet" href="<?php echo base_url()."assets/css/styles.css"?>" type="text/css" media="screen, projection, tv" />
<!-- TinyMCE -->
[removed][removed]
[removed]
tinyMCE.init({
mode : "textareas"
});
[removed]
</head>
<body>
<?=$content."\n"?>
</body>
</html>
The variable $content is used by views to show different content. for example a form with textareas. I have it this way in order to only have 1 file with the site layout.[/quote]