tinyMCE always changes URL after edit configurable article and save Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Could not login to admin of my magento store403 error on WYSIWYG image previewsForms stop working after start using HTTPSFrontend assests have no base url404 page without index.php in urlMagento 1.9 https ERR_TOO_MANY_REDIRECTSMagento 500 Internal Server - No Log Files?Mangeto Admin and website display changed after changing web section in config, Magento 1.XCan't edit value of WYSIWYG Editor after first saveMagento 1.9 Storefront in subfolder not quite working
What is the proper term for etching or digging of wall to hide conduit of cables
New Order #6: Easter Egg
French equivalents of おしゃれは足元から (Every good outfit starts with the shoes)
How can I list files in reverse time order by a command and pass them as arguments to another command?
IC on Digikey is 5x more expensive than board containing same IC on Alibaba: How?
Twin's vs. Twins'
Can I cut the hair of a conjured korred with a blade made of precious material to harvest that material from the korred?
As a dual citizen, my US passport will expire one day after traveling to the US. Will this work?
Why is there so little support for joining EFTA in the British parliament?
Why not use the yoke to control yaw, as well as pitch and roll?
Is honorific speech ever used in the first person?
How to ask rejected full-time candidates to apply to teach individual courses?
By what mechanism was the 2017 UK General Election called?
How do Java 8 default methods hеlp with lambdas?
.bashrc alias for a command with fixed second parameter
Vertical ranges of Column Plots in 12
Why does BitLocker not use RSA?
Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?
Flight departed from the gate 5 min before scheduled departure time. Refund options
Where did Ptolemy compare the Earth to the distance of fixed stars?
Did pre-Columbian Americans know the spherical shape of the Earth?
calculator's angle answer for trig ratios that can work in more than 1 quadrant on the unit circle
Did any compiler fully use 80-bit floating point?
"Destructive power" carried by a B-52?
tinyMCE always changes URL after edit configurable article and save
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Could not login to admin of my magento store403 error on WYSIWYG image previewsForms stop working after start using HTTPSFrontend assests have no base url404 page without index.php in urlMagento 1.9 https ERR_TOO_MANY_REDIRECTSMagento 500 Internal Server - No Log Files?Mangeto Admin and website display changed after changing web section in config, Magento 1.XCan't edit value of WYSIWYG Editor after first saveMagento 1.9 Storefront in subfolder not quite working
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
If I edit a configurable product and save then it loads and if load finisihed then URL changes from:
https://www.example.com/index.php/login/catalog_product/edit/id/4
to
https://www.example.com/index.php/login/catalog_product/edit/id/4/back/edit/tab/product_info_tabs_customer_options/key/70b9f407554ea83f8daecaf99f6b9b6d/
and the images in the tinyMCE Editor are not loading anymore because the path is changed from e.g. /media/xy/example.jpg
to ../../../../../media/xy/example.jpg
and there are many requests made because the image can't get loaded.
Why is the URL changed and why does tinyMCE Editor change the URL?
UPDATE
I found the bug which leaded to the unecessary requests:
var tinyMCEival = setInterval(function()
tinyMCE.triggerSave();
, 500);
It stopped doing the requests when I removed this code. Everything is still working, so It is not even necessary.
magento-1.9 magento-1
add a comment |
If I edit a configurable product and save then it loads and if load finisihed then URL changes from:
https://www.example.com/index.php/login/catalog_product/edit/id/4
to
https://www.example.com/index.php/login/catalog_product/edit/id/4/back/edit/tab/product_info_tabs_customer_options/key/70b9f407554ea83f8daecaf99f6b9b6d/
and the images in the tinyMCE Editor are not loading anymore because the path is changed from e.g. /media/xy/example.jpg
to ../../../../../media/xy/example.jpg
and there are many requests made because the image can't get loaded.
Why is the URL changed and why does tinyMCE Editor change the URL?
UPDATE
I found the bug which leaded to the unecessary requests:
var tinyMCEival = setInterval(function()
tinyMCE.triggerSave();
, 500);
It stopped doing the requests when I removed this code. Everything is still working, so It is not even necessary.
magento-1.9 magento-1
add a comment |
If I edit a configurable product and save then it loads and if load finisihed then URL changes from:
https://www.example.com/index.php/login/catalog_product/edit/id/4
to
https://www.example.com/index.php/login/catalog_product/edit/id/4/back/edit/tab/product_info_tabs_customer_options/key/70b9f407554ea83f8daecaf99f6b9b6d/
and the images in the tinyMCE Editor are not loading anymore because the path is changed from e.g. /media/xy/example.jpg
to ../../../../../media/xy/example.jpg
and there are many requests made because the image can't get loaded.
Why is the URL changed and why does tinyMCE Editor change the URL?
UPDATE
I found the bug which leaded to the unecessary requests:
var tinyMCEival = setInterval(function()
tinyMCE.triggerSave();
, 500);
It stopped doing the requests when I removed this code. Everything is still working, so It is not even necessary.
magento-1.9 magento-1
If I edit a configurable product and save then it loads and if load finisihed then URL changes from:
https://www.example.com/index.php/login/catalog_product/edit/id/4
to
https://www.example.com/index.php/login/catalog_product/edit/id/4/back/edit/tab/product_info_tabs_customer_options/key/70b9f407554ea83f8daecaf99f6b9b6d/
and the images in the tinyMCE Editor are not loading anymore because the path is changed from e.g. /media/xy/example.jpg
to ../../../../../media/xy/example.jpg
and there are many requests made because the image can't get loaded.
Why is the URL changed and why does tinyMCE Editor change the URL?
UPDATE
I found the bug which leaded to the unecessary requests:
var tinyMCEival = setInterval(function()
tinyMCE.triggerSave();
, 500);
It stopped doing the requests when I removed this code. Everything is still working, so It is not even necessary.
magento-1.9 magento-1
magento-1.9 magento-1
edited Apr 17 at 15:06
Black
asked Apr 17 at 14:21
BlackBlack
448420
448420
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f270522%2ftinymce-always-changes-url-after-edit-configurable-article-and-save%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f270522%2ftinymce-always-changes-url-after-edit-configurable-article-and-save%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown