Hi guys,
du you know why my Safari (3.1.1 under OSX) does not open the dialoges correctly?
The dialoges work in Firefox (osx) and InternetExplorer (win) correctly, I’ve not been able to test KDE Konqueror
When I click a button which opens a dialoge (eg. Image or Link or Help), an empty window with the title:
#advimage_dlg.dialog_title or
#advlink_dlg.dialog_title or
#media_dlg.dialog_title or
#advanced_dlg.about_title
appears (first for image, second for link etc.)
how can I fix that? Can you share the same problems?
My TinyMCE is the latest (3.08), my ModX version is 0.9.6.1p2
Greets,
Steffen
EDIT:
Opera does open the first dialoges, but the whole MCpuk window stays empty
www.steffen-uhlmann.de
Found it. I was using domain.tld/manager to login to my backend, while .htaccess redirects to www.domain.tld. As a result some paths in TinyMCE where broken, I guess. Using www.domain.tld/manager works like a charm.
So I moved a website between servers, created/deleted manager users, turned on/off countless server settings, recorded video tutorials how to clear cache and delete cookies. Made my client install new browsers, get his network support to turn off a firewall and had him access the manager from his phone. Then I found this thread. A whole day of our life is now gone...
manager/index.php:
//mrhaw remove www
if (substr($_SERVER['HTTP_HOST'], 0, 4) === 'www.') {
header('Location: http'.(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on' ? 's':'').'://' . substr($_SERVER['HTTP_HOST'], 4).$_SERVER['REQUEST_URI']);
exit;
}
[ed. note: mrhaw last edited this post 10 years, 11 months ago.]