Redirects found on these forums are cuasing errors in JCE please help - Joomla! Forum - community, help and support
moderators, please read before move wysiwig category....all listed below related issues following suggestions various posters in these forums. @ least please read in entirty , not glance assume.
i have 4 problems relalted...
1: live site domain address without http://www....as in http://mysite.com
i wanted redirect make using www, redirected non www address, live site address, because when using www , ie, cannot log in, refreshes page without logging in.
2: have been having issues when using jce editor , ie, when doing so, error comes saying tinymce undefined , jce icons not appear , cannot save content.
i have followed instructions on various posts regarding jce problem, no avail.
regarding redirect? someone, here provided me redirect script wanted...i told put in .htaccess file
rewritecond %{http_host} ^www.yourdomain.tld$
rewriterule ^(.*)$ http://yourdomain.tld [r=301,l]
and did.
now, happens...
1: redirect not work..in ie when use www, go www. case front end , end.
2: when using ff, if type in address without www, puts in anyway. when out, puts in. cannot use non www ff...but, jce works should in ff.this case front end , end.
3: when using ie, can either (non or www) mentioned above...however, when log end, , try access jce editor put new content, not load...i new error message instead....is:
line 328
char 2
error: 'document.adminform.hidemainmenu' null or not object
only joomla backend menus load..nothing in editor @ all.
so, can please me to...
1: proper redirect using www redirected non www live site set to
2: fix jce editor problem, regarding tinymce not defined when using ie, instructions in other threads not working resolve this
thank you- appreciated
i have 4 problems relalted...
1: live site domain address without http://www....as in http://mysite.com
i wanted redirect make using www, redirected non www address, live site address, because when using www , ie, cannot log in, refreshes page without logging in.
2: have been having issues when using jce editor , ie, when doing so, error comes saying tinymce undefined , jce icons not appear , cannot save content.
i have followed instructions on various posts regarding jce problem, no avail.
regarding redirect? someone, here provided me redirect script wanted...i told put in .htaccess file
rewritecond %{http_host} ^www.yourdomain.tld$
rewriterule ^(.*)$ http://yourdomain.tld [r=301,l]
and did.
now, happens...
1: redirect not work..in ie when use www, go www. case front end , end.
2: when using ff, if type in address without www, puts in anyway. when out, puts in. cannot use non www ff...but, jce works should in ff.this case front end , end.
3: when using ie, can either (non or www) mentioned above...however, when log end, , try access jce editor put new content, not load...i new error message instead....is:
line 328
char 2
error: 'document.adminform.hidemainmenu' null or not object
only joomla backend menus load..nothing in editor @ all.
so, can please me to...
1: proper redirect using www redirected non www live site set to
2: fix jce editor problem, regarding tinymce not defined when using ie, instructions in other threads not working resolve this
thank you- appreciated
as advised in other message, need use same url in browser have defined in variable. see if makes difference. if does, can set-up redirect in .htaccess file (assuming have mod_rewrite enabled) follows:
code:
########## begin - redirecting www request non-www
# uncomment line below if not in use in htaccess
#rewriteengine on
#
rewritecond %{http_host} ^www.mysite.com [nc]
rewriterule (.*) http://mysite.com/$1 [l,r=301]
#
########## end - redirecting www request non-www
code:
########## begin - redirecting www request non-www
# uncomment line below if not in use in htaccess
#rewriteengine on
#
rewritecond %{http_host} ^www.mysite.com [nc]
rewriterule (.*) http://mysite.com/$1 [l,r=301]
#
########## end - redirecting www request non-www
Comments
Post a Comment