hagiga wrote:
...
The problem is with TinyMCE menu, it just won't work even when i install a different menu like JCE it still gives me an error from the TinyMCE.js file, this also disables the "save" button and the TinyMCE menu does not show.
This is the error i am getting:
Error: missing ) after argument list
Source File: http://localhost/mambots/editors/tinymc ... mce_src.js
Line: 1930, Column: 1
Source Code:
};...
I was having the EXACT same problem and couldn't find anything on it. I could only deduce that my version of WAMP Server was either screwed up somehow or there was some feature that doesn't work with Joomla! all that well.
Long story short, I had a computer at home running Wamp Server version 1.6.6 and it works perfect. I don't know if this will work for you 100%, but you could give it a shot. Go to:
http://sourceforge.net/project/download ... e&10191187 to download wamp server direct or you could also go to:
http://sourceforge.net/project/showfile ... _id=116092After you install the new version of WAMP, you could add in fancy features like register a subdomain at some hosting company and point off the A records in DNS to your local IP address. This way, you could fake out a subdomain and use Absolute URLS such as:
LinkIf you get your subdomain, say: "mydomain.something.com" pointing to your root wamp server, add the following into your C:\wamp\Apache\httpd.conf right at the bottom (back this file up too in case you make a boo boo)
Code:
#START............ADDITION TO http.conf
NameVirtualHost *
#Setup the local side host ip such as: http://192.168.0.100/
<VirtualHost *>
ServerName 192.168.0.100
DocumentRoot C:\wamp\www
</VirtualHost>
#setup local hosting for a sub-domain: mydomain.something.com
<VirtualHost *>
ServerName mydomain.something.com
DocumentRoot C:\wamp\www\mydomain.something
</VirtualHost>
#END............ADDITION TO http.conf
This way, you can remember your local hosted Joomla website better too! Of course, you could get fancier and do local DNS instead of a hosting provider such as:
http://www.dyndns.com or
http://www.zoneedit.comHey man, be careful with that junk, I'm not exactly an expert with Apache. Local servers are a good place to start messing with files though, at least it's easy to just re-install WAMP Server if you mess it up. Let me know how bumpy your travels are after you try some stuff out.