Setting AJAX URL for custom module
I have a JavaScript file in /js/mds/mds_collivery.js. In it I have an AJAX call that should go to magento_install_url/collivery/ajax/cptypes. It will only be used in /checkout/onepage/.
However, if I set the URL to be:
url : "/collivery/ajax/cptypes",
it tries to access
http://localhost/collivery/ajax/cptypes
and if I set the URL to:
url : "collivery/ajax/cptypes",
it tries to access
http://localhost/magento/index.php/checkout/onepage/collivery/ajax/cptypes
I currently hard coded it to
http://localhost/magento/index.php/collivery/ajax/cptypes
but this isn't ideal as the setup procedure for my module would require users to edit this file before it can work.
Is there a JS variable or another way to get the Magento Install Location inside JavaScript?
module javascript url ajax
add a comment |
I have a JavaScript file in /js/mds/mds_collivery.js. In it I have an AJAX call that should go to magento_install_url/collivery/ajax/cptypes. It will only be used in /checkout/onepage/.
However, if I set the URL to be:
url : "/collivery/ajax/cptypes",
it tries to access
http://localhost/collivery/ajax/cptypes
and if I set the URL to:
url : "collivery/ajax/cptypes",
it tries to access
http://localhost/magento/index.php/checkout/onepage/collivery/ajax/cptypes
I currently hard coded it to
http://localhost/magento/index.php/collivery/ajax/cptypes
but this isn't ideal as the setup procedure for my module would require users to edit this file before it can work.
Is there a JS variable or another way to get the Magento Install Location inside JavaScript?
module javascript url ajax
1
I don't believe it is possible to get a Magento Base URL into a .js file. If its only going to be used in one area, the following should work: url : "../../collivery/ajax/cptypes", One thought. When working with Magento locally, you should always make it as a subdomain (like www.magento.localhost), else you will run into cookie issues. In fact, Magento won't install without it being in a subdomain. If you setup Magento as a subdomain, your first answer, url : "/collivery/ajax/cptypes", would work.
– kab8609
May 8 '13 at 20:53
Thank you for your response! I don't think I have enough rep to upvote your answer yet. So sorry about that. I'm assuming the best solution is then to use ../../ instead of just /? This is already a huge step forward in the right direction, can't believe I didn't think of this! So thanks. :)
– Xethron
May 8 '13 at 21:02
1
@kab8609 The ../../ works perfectly! Going to use that for the time being.
– Xethron
May 8 '13 at 21:12
add a comment |
I have a JavaScript file in /js/mds/mds_collivery.js. In it I have an AJAX call that should go to magento_install_url/collivery/ajax/cptypes. It will only be used in /checkout/onepage/.
However, if I set the URL to be:
url : "/collivery/ajax/cptypes",
it tries to access
http://localhost/collivery/ajax/cptypes
and if I set the URL to:
url : "collivery/ajax/cptypes",
it tries to access
http://localhost/magento/index.php/checkout/onepage/collivery/ajax/cptypes
I currently hard coded it to
http://localhost/magento/index.php/collivery/ajax/cptypes
but this isn't ideal as the setup procedure for my module would require users to edit this file before it can work.
Is there a JS variable or another way to get the Magento Install Location inside JavaScript?
module javascript url ajax
I have a JavaScript file in /js/mds/mds_collivery.js. In it I have an AJAX call that should go to magento_install_url/collivery/ajax/cptypes. It will only be used in /checkout/onepage/.
However, if I set the URL to be:
url : "/collivery/ajax/cptypes",
it tries to access
http://localhost/collivery/ajax/cptypes
and if I set the URL to:
url : "collivery/ajax/cptypes",
it tries to access
http://localhost/magento/index.php/checkout/onepage/collivery/ajax/cptypes
I currently hard coded it to
http://localhost/magento/index.php/collivery/ajax/cptypes
but this isn't ideal as the setup procedure for my module would require users to edit this file before it can work.
Is there a JS variable or another way to get the Magento Install Location inside JavaScript?
module javascript url ajax
module javascript url ajax
edited Jul 28 '17 at 17:09
Prince Patel
13.3k54776
13.3k54776
asked May 8 '13 at 20:34
XethronXethron
14626
14626
1
I don't believe it is possible to get a Magento Base URL into a .js file. If its only going to be used in one area, the following should work: url : "../../collivery/ajax/cptypes", One thought. When working with Magento locally, you should always make it as a subdomain (like www.magento.localhost), else you will run into cookie issues. In fact, Magento won't install without it being in a subdomain. If you setup Magento as a subdomain, your first answer, url : "/collivery/ajax/cptypes", would work.
– kab8609
May 8 '13 at 20:53
Thank you for your response! I don't think I have enough rep to upvote your answer yet. So sorry about that. I'm assuming the best solution is then to use ../../ instead of just /? This is already a huge step forward in the right direction, can't believe I didn't think of this! So thanks. :)
– Xethron
May 8 '13 at 21:02
1
@kab8609 The ../../ works perfectly! Going to use that for the time being.
– Xethron
May 8 '13 at 21:12
add a comment |
1
I don't believe it is possible to get a Magento Base URL into a .js file. If its only going to be used in one area, the following should work: url : "../../collivery/ajax/cptypes", One thought. When working with Magento locally, you should always make it as a subdomain (like www.magento.localhost), else you will run into cookie issues. In fact, Magento won't install without it being in a subdomain. If you setup Magento as a subdomain, your first answer, url : "/collivery/ajax/cptypes", would work.
– kab8609
May 8 '13 at 20:53
Thank you for your response! I don't think I have enough rep to upvote your answer yet. So sorry about that. I'm assuming the best solution is then to use ../../ instead of just /? This is already a huge step forward in the right direction, can't believe I didn't think of this! So thanks. :)
– Xethron
May 8 '13 at 21:02
1
@kab8609 The ../../ works perfectly! Going to use that for the time being.
– Xethron
May 8 '13 at 21:12
1
1
I don't believe it is possible to get a Magento Base URL into a .js file. If its only going to be used in one area, the following should work: url : "../../collivery/ajax/cptypes", One thought. When working with Magento locally, you should always make it as a subdomain (like www.magento.localhost), else you will run into cookie issues. In fact, Magento won't install without it being in a subdomain. If you setup Magento as a subdomain, your first answer, url : "/collivery/ajax/cptypes", would work.
– kab8609
May 8 '13 at 20:53
I don't believe it is possible to get a Magento Base URL into a .js file. If its only going to be used in one area, the following should work: url : "../../collivery/ajax/cptypes", One thought. When working with Magento locally, you should always make it as a subdomain (like www.magento.localhost), else you will run into cookie issues. In fact, Magento won't install without it being in a subdomain. If you setup Magento as a subdomain, your first answer, url : "/collivery/ajax/cptypes", would work.
– kab8609
May 8 '13 at 20:53
Thank you for your response! I don't think I have enough rep to upvote your answer yet. So sorry about that. I'm assuming the best solution is then to use ../../ instead of just /? This is already a huge step forward in the right direction, can't believe I didn't think of this! So thanks. :)
– Xethron
May 8 '13 at 21:02
Thank you for your response! I don't think I have enough rep to upvote your answer yet. So sorry about that. I'm assuming the best solution is then to use ../../ instead of just /? This is already a huge step forward in the right direction, can't believe I didn't think of this! So thanks. :)
– Xethron
May 8 '13 at 21:02
1
1
@kab8609 The ../../ works perfectly! Going to use that for the time being.
– Xethron
May 8 '13 at 21:12
@kab8609 The ../../ works perfectly! Going to use that for the time being.
– Xethron
May 8 '13 at 21:12
add a comment |
2 Answers
2
active
oldest
votes
in app/design/frontend/{interface}/{theme}/template/checkout/onepage.phtml
add this code somewhere at the top of the template:
<script type="text/javascript">
var baseUrl = '<?php echo Mage::getUrl('');?>';
</script>
now you should be able to use in your js file this:
url : baseUrl + "/collivery/ajax/cptypes",
Actually you can add the script anywhere in the template (header, footer, ...) just make sure it's in the page you need. Since the checkout page is the only one you need, I suggested adding it in the onepage template.
Awesome! But, how do plugins usually do this? I mean, there has to be a "right" way of doing this?
– Xethron
May 8 '13 at 21:06
Oh, and I seem to require 15 rep to upvote an answer. If you and @kab8609 upvotes my question, I could upvote your answers as I do believe in giving credit where credit is due. :)
– Xethron
May 8 '13 at 21:08
1
I learn something new everyday. Good catch!
– kab8609
May 8 '13 at 21:11
2
The right way if doing this I think it is to pass the base url (or full URL) to your js function that does the ajax request.
– Marius♦
May 8 '13 at 21:31
3
Why not putting the full url into thegetUrl
call? Then if you change the frontname, the link is still correct.Mage::getUrl('collivery/ajax/cptype')
– Fabian Blechschmidt
May 9 '13 at 6:45
add a comment |
you can get your base URL as
var baseUrl = window.location.origin;
and then use an ajax call as
url : baseUrl + "/collivery/ajax/cptypes",
New contributor
add a comment |
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%2f3565%2fsetting-ajax-url-for-custom-module%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
in app/design/frontend/{interface}/{theme}/template/checkout/onepage.phtml
add this code somewhere at the top of the template:
<script type="text/javascript">
var baseUrl = '<?php echo Mage::getUrl('');?>';
</script>
now you should be able to use in your js file this:
url : baseUrl + "/collivery/ajax/cptypes",
Actually you can add the script anywhere in the template (header, footer, ...) just make sure it's in the page you need. Since the checkout page is the only one you need, I suggested adding it in the onepage template.
Awesome! But, how do plugins usually do this? I mean, there has to be a "right" way of doing this?
– Xethron
May 8 '13 at 21:06
Oh, and I seem to require 15 rep to upvote an answer. If you and @kab8609 upvotes my question, I could upvote your answers as I do believe in giving credit where credit is due. :)
– Xethron
May 8 '13 at 21:08
1
I learn something new everyday. Good catch!
– kab8609
May 8 '13 at 21:11
2
The right way if doing this I think it is to pass the base url (or full URL) to your js function that does the ajax request.
– Marius♦
May 8 '13 at 21:31
3
Why not putting the full url into thegetUrl
call? Then if you change the frontname, the link is still correct.Mage::getUrl('collivery/ajax/cptype')
– Fabian Blechschmidt
May 9 '13 at 6:45
add a comment |
in app/design/frontend/{interface}/{theme}/template/checkout/onepage.phtml
add this code somewhere at the top of the template:
<script type="text/javascript">
var baseUrl = '<?php echo Mage::getUrl('');?>';
</script>
now you should be able to use in your js file this:
url : baseUrl + "/collivery/ajax/cptypes",
Actually you can add the script anywhere in the template (header, footer, ...) just make sure it's in the page you need. Since the checkout page is the only one you need, I suggested adding it in the onepage template.
Awesome! But, how do plugins usually do this? I mean, there has to be a "right" way of doing this?
– Xethron
May 8 '13 at 21:06
Oh, and I seem to require 15 rep to upvote an answer. If you and @kab8609 upvotes my question, I could upvote your answers as I do believe in giving credit where credit is due. :)
– Xethron
May 8 '13 at 21:08
1
I learn something new everyday. Good catch!
– kab8609
May 8 '13 at 21:11
2
The right way if doing this I think it is to pass the base url (or full URL) to your js function that does the ajax request.
– Marius♦
May 8 '13 at 21:31
3
Why not putting the full url into thegetUrl
call? Then if you change the frontname, the link is still correct.Mage::getUrl('collivery/ajax/cptype')
– Fabian Blechschmidt
May 9 '13 at 6:45
add a comment |
in app/design/frontend/{interface}/{theme}/template/checkout/onepage.phtml
add this code somewhere at the top of the template:
<script type="text/javascript">
var baseUrl = '<?php echo Mage::getUrl('');?>';
</script>
now you should be able to use in your js file this:
url : baseUrl + "/collivery/ajax/cptypes",
Actually you can add the script anywhere in the template (header, footer, ...) just make sure it's in the page you need. Since the checkout page is the only one you need, I suggested adding it in the onepage template.
in app/design/frontend/{interface}/{theme}/template/checkout/onepage.phtml
add this code somewhere at the top of the template:
<script type="text/javascript">
var baseUrl = '<?php echo Mage::getUrl('');?>';
</script>
now you should be able to use in your js file this:
url : baseUrl + "/collivery/ajax/cptypes",
Actually you can add the script anywhere in the template (header, footer, ...) just make sure it's in the page you need. Since the checkout page is the only one you need, I suggested adding it in the onepage template.
answered May 8 '13 at 21:04
Marius♦Marius
164k28313666
164k28313666
Awesome! But, how do plugins usually do this? I mean, there has to be a "right" way of doing this?
– Xethron
May 8 '13 at 21:06
Oh, and I seem to require 15 rep to upvote an answer. If you and @kab8609 upvotes my question, I could upvote your answers as I do believe in giving credit where credit is due. :)
– Xethron
May 8 '13 at 21:08
1
I learn something new everyday. Good catch!
– kab8609
May 8 '13 at 21:11
2
The right way if doing this I think it is to pass the base url (or full URL) to your js function that does the ajax request.
– Marius♦
May 8 '13 at 21:31
3
Why not putting the full url into thegetUrl
call? Then if you change the frontname, the link is still correct.Mage::getUrl('collivery/ajax/cptype')
– Fabian Blechschmidt
May 9 '13 at 6:45
add a comment |
Awesome! But, how do plugins usually do this? I mean, there has to be a "right" way of doing this?
– Xethron
May 8 '13 at 21:06
Oh, and I seem to require 15 rep to upvote an answer. If you and @kab8609 upvotes my question, I could upvote your answers as I do believe in giving credit where credit is due. :)
– Xethron
May 8 '13 at 21:08
1
I learn something new everyday. Good catch!
– kab8609
May 8 '13 at 21:11
2
The right way if doing this I think it is to pass the base url (or full URL) to your js function that does the ajax request.
– Marius♦
May 8 '13 at 21:31
3
Why not putting the full url into thegetUrl
call? Then if you change the frontname, the link is still correct.Mage::getUrl('collivery/ajax/cptype')
– Fabian Blechschmidt
May 9 '13 at 6:45
Awesome! But, how do plugins usually do this? I mean, there has to be a "right" way of doing this?
– Xethron
May 8 '13 at 21:06
Awesome! But, how do plugins usually do this? I mean, there has to be a "right" way of doing this?
– Xethron
May 8 '13 at 21:06
Oh, and I seem to require 15 rep to upvote an answer. If you and @kab8609 upvotes my question, I could upvote your answers as I do believe in giving credit where credit is due. :)
– Xethron
May 8 '13 at 21:08
Oh, and I seem to require 15 rep to upvote an answer. If you and @kab8609 upvotes my question, I could upvote your answers as I do believe in giving credit where credit is due. :)
– Xethron
May 8 '13 at 21:08
1
1
I learn something new everyday. Good catch!
– kab8609
May 8 '13 at 21:11
I learn something new everyday. Good catch!
– kab8609
May 8 '13 at 21:11
2
2
The right way if doing this I think it is to pass the base url (or full URL) to your js function that does the ajax request.
– Marius♦
May 8 '13 at 21:31
The right way if doing this I think it is to pass the base url (or full URL) to your js function that does the ajax request.
– Marius♦
May 8 '13 at 21:31
3
3
Why not putting the full url into the
getUrl
call? Then if you change the frontname, the link is still correct. Mage::getUrl('collivery/ajax/cptype')
– Fabian Blechschmidt
May 9 '13 at 6:45
Why not putting the full url into the
getUrl
call? Then if you change the frontname, the link is still correct. Mage::getUrl('collivery/ajax/cptype')
– Fabian Blechschmidt
May 9 '13 at 6:45
add a comment |
you can get your base URL as
var baseUrl = window.location.origin;
and then use an ajax call as
url : baseUrl + "/collivery/ajax/cptypes",
New contributor
add a comment |
you can get your base URL as
var baseUrl = window.location.origin;
and then use an ajax call as
url : baseUrl + "/collivery/ajax/cptypes",
New contributor
add a comment |
you can get your base URL as
var baseUrl = window.location.origin;
and then use an ajax call as
url : baseUrl + "/collivery/ajax/cptypes",
New contributor
you can get your base URL as
var baseUrl = window.location.origin;
and then use an ajax call as
url : baseUrl + "/collivery/ajax/cptypes",
New contributor
edited Jan 16 at 13:12
Rama Chandran M
2,71181430
2,71181430
New contributor
answered Jan 16 at 12:52
user76257user76257
1
1
New contributor
New contributor
add a comment |
add a comment |
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%2f3565%2fsetting-ajax-url-for-custom-module%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
1
I don't believe it is possible to get a Magento Base URL into a .js file. If its only going to be used in one area, the following should work: url : "../../collivery/ajax/cptypes", One thought. When working with Magento locally, you should always make it as a subdomain (like www.magento.localhost), else you will run into cookie issues. In fact, Magento won't install without it being in a subdomain. If you setup Magento as a subdomain, your first answer, url : "/collivery/ajax/cptypes", would work.
– kab8609
May 8 '13 at 20:53
Thank you for your response! I don't think I have enough rep to upvote your answer yet. So sorry about that. I'm assuming the best solution is then to use ../../ instead of just /? This is already a huge step forward in the right direction, can't believe I didn't think of this! So thanks. :)
– Xethron
May 8 '13 at 21:02
1
@kab8609 The ../../ works perfectly! Going to use that for the time being.
– Xethron
May 8 '13 at 21:12