Admin controller is not being called in Magento AjaxTrying to run an AJAX script from the admin area in magentoCustom ajax not working in magento adminAdmin Button with Ajax RequestFresh install, no plug ins, fatal error on category management pageMagento modules with only Ajax ControllerMagento 2 - Ajax is not calling ControllerController action is not being called?Ajax Controller Not Redirect to login pageController observer is not triggered using ajax requestAJAX call to controller returns admin dashboard html

How to determine what difficulty is right for the game?

Is it inappropriate for a student to attend their mentor's dissertation defense?

What does the "remote control" for a QF-4 look like?

Is it possible to run Internet Explorer on OS X El Capitan?

How much of data wrangling is a data scientist's job?

What typically incentivizes a professor to change jobs to a lower ranking university?

infared filters v nd

What would happen to a modern skyscraper if it rains micro blackholes?

What is the word for reserving something for yourself before others do?

Approximately how much travel time was saved by the opening of the Suez Canal in 1869?

Can I make popcorn with any corn?

Maximum likelihood parameters deviate from posterior distributions

Did Shadowfax go to Valinor?

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

Paid for article while in US on F-1 visa?

High voltage LED indicator 40-1000 VDC without additional power supply

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

Which country benefited the most from UN Security Council vetoes?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Horror movie about a virus at the prom; beginning and end are stylized as a cartoon

What's that red-plus icon near a text?

What's the output of a record needle playing an out-of-speed record

Does detail obscure or enhance action?



Admin controller is not being called in Magento Ajax


Trying to run an AJAX script from the admin area in magentoCustom ajax not working in magento adminAdmin Button with Ajax RequestFresh install, no plug ins, fatal error on category management pageMagento modules with only Ajax ControllerMagento 2 - Ajax is not calling ControllerController action is not being called?Ajax Controller Not Redirect to login pageController observer is not triggered using ajax requestAJAX call to controller returns admin dashboard html






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am calling admin controller via ajax, but it is not being called.
Here is the controller file-



Assel/Allstock/controllers/Adminhtml/AllstockController



<?php 
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action

protected function _isAllowed()

return true;


protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));

return $this;


public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();


public function productStockAction()

return "hello";


// Used for AJAX loading
public function gridAction()

$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);


?>


Here is my config.xml-



 <?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>


Here is the template file --



adminhtml/base/default/template/assel/allstock.phtml



 <script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>


I am getting this value in url variable in ajax-



"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"



I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.










share|improve this question
















bumped to the homepage by Community 2 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Which magento version are you using?

    – Rohit Kundale
    Jan 30 '16 at 10:10











  • Using magento v1.9

    – Shashank Kumrawat
    Jan 30 '16 at 10:11











  • Please tell full version?

    – Rohit Kundale
    Jan 30 '16 at 11:08

















0















I am calling admin controller via ajax, but it is not being called.
Here is the controller file-



Assel/Allstock/controllers/Adminhtml/AllstockController



<?php 
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action

protected function _isAllowed()

return true;


protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));

return $this;


public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();


public function productStockAction()

return "hello";


// Used for AJAX loading
public function gridAction()

$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);


?>


Here is my config.xml-



 <?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>


Here is the template file --



adminhtml/base/default/template/assel/allstock.phtml



 <script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>


I am getting this value in url variable in ajax-



"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"



I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.










share|improve this question
















bumped to the homepage by Community 2 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Which magento version are you using?

    – Rohit Kundale
    Jan 30 '16 at 10:10











  • Using magento v1.9

    – Shashank Kumrawat
    Jan 30 '16 at 10:11











  • Please tell full version?

    – Rohit Kundale
    Jan 30 '16 at 11:08













0












0








0








I am calling admin controller via ajax, but it is not being called.
Here is the controller file-



Assel/Allstock/controllers/Adminhtml/AllstockController



<?php 
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action

protected function _isAllowed()

return true;


protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));

return $this;


public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();


public function productStockAction()

return "hello";


// Used for AJAX loading
public function gridAction()

$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);


?>


Here is my config.xml-



 <?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>


Here is the template file --



adminhtml/base/default/template/assel/allstock.phtml



 <script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>


I am getting this value in url variable in ajax-



"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"



I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.










share|improve this question
















I am calling admin controller via ajax, but it is not being called.
Here is the controller file-



Assel/Allstock/controllers/Adminhtml/AllstockController



<?php 
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action

protected function _isAllowed()

return true;


protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));

return $this;


public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();


public function productStockAction()

return "hello";


// Used for AJAX loading
public function gridAction()

$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);


?>


Here is my config.xml-



 <?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>


Here is the template file --



adminhtml/base/default/template/assel/allstock.phtml



 <script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>


I am getting this value in url variable in ajax-



"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"



I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.







magento-1.9 ajax






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 4 '18 at 3:00









user63352

31




31










asked Jan 30 '16 at 9:26









Shashank KumrawatShashank Kumrawat

1,3161343




1,3161343





bumped to the homepage by Community 2 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 2 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • Which magento version are you using?

    – Rohit Kundale
    Jan 30 '16 at 10:10











  • Using magento v1.9

    – Shashank Kumrawat
    Jan 30 '16 at 10:11











  • Please tell full version?

    – Rohit Kundale
    Jan 30 '16 at 11:08

















  • Which magento version are you using?

    – Rohit Kundale
    Jan 30 '16 at 10:10











  • Using magento v1.9

    – Shashank Kumrawat
    Jan 30 '16 at 10:11











  • Please tell full version?

    – Rohit Kundale
    Jan 30 '16 at 11:08
















Which magento version are you using?

– Rohit Kundale
Jan 30 '16 at 10:10





Which magento version are you using?

– Rohit Kundale
Jan 30 '16 at 10:10













Using magento v1.9

– Shashank Kumrawat
Jan 30 '16 at 10:11





Using magento v1.9

– Shashank Kumrawat
Jan 30 '16 at 10:11













Please tell full version?

– Rohit Kundale
Jan 30 '16 at 11:08





Please tell full version?

– Rohit Kundale
Jan 30 '16 at 11:08










1 Answer
1






active

oldest

votes


















0














Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:




app/code/community/Pulsestorm/Adminhello/etc/config.xml




<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>


Source: Alan Storm






share|improve this answer

























  • @Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"

    – Shashank Kumrawat
    Jan 30 '16 at 11:27











  • Login/Logout, ACL is loaded on login

    – Fabian Blechschmidt
    Jan 30 '16 at 12:00











  • I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.

    – Shashank Kumrawat
    Jan 30 '16 at 12:12











  • Can you edit your question and add the new config.xml?

    – Fabian Blechschmidt
    Jan 30 '16 at 12:15











  • yes I have edited my config.xml, please check

    – Shashank Kumrawat
    Jan 30 '16 at 12:22











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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f99674%2fadmin-controller-is-not-being-called-in-magento-ajax%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:




app/code/community/Pulsestorm/Adminhello/etc/config.xml




<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>


Source: Alan Storm






share|improve this answer

























  • @Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"

    – Shashank Kumrawat
    Jan 30 '16 at 11:27











  • Login/Logout, ACL is loaded on login

    – Fabian Blechschmidt
    Jan 30 '16 at 12:00











  • I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.

    – Shashank Kumrawat
    Jan 30 '16 at 12:12











  • Can you edit your question and add the new config.xml?

    – Fabian Blechschmidt
    Jan 30 '16 at 12:15











  • yes I have edited my config.xml, please check

    – Shashank Kumrawat
    Jan 30 '16 at 12:22















0














Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:




app/code/community/Pulsestorm/Adminhello/etc/config.xml




<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>


Source: Alan Storm






share|improve this answer

























  • @Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"

    – Shashank Kumrawat
    Jan 30 '16 at 11:27











  • Login/Logout, ACL is loaded on login

    – Fabian Blechschmidt
    Jan 30 '16 at 12:00











  • I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.

    – Shashank Kumrawat
    Jan 30 '16 at 12:12











  • Can you edit your question and add the new config.xml?

    – Fabian Blechschmidt
    Jan 30 '16 at 12:15











  • yes I have edited my config.xml, please check

    – Shashank Kumrawat
    Jan 30 '16 at 12:22













0












0








0







Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:




app/code/community/Pulsestorm/Adminhello/etc/config.xml




<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>


Source: Alan Storm






share|improve this answer















Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:




app/code/community/Pulsestorm/Adminhello/etc/config.xml




<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>


Source: Alan Storm







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 30 '16 at 11:14









saravanavelu

3,05562145




3,05562145










answered Jan 30 '16 at 11:13









Fabian BlechschmidtFabian Blechschmidt

33.5k764174




33.5k764174












  • @Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"

    – Shashank Kumrawat
    Jan 30 '16 at 11:27











  • Login/Logout, ACL is loaded on login

    – Fabian Blechschmidt
    Jan 30 '16 at 12:00











  • I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.

    – Shashank Kumrawat
    Jan 30 '16 at 12:12











  • Can you edit your question and add the new config.xml?

    – Fabian Blechschmidt
    Jan 30 '16 at 12:15











  • yes I have edited my config.xml, please check

    – Shashank Kumrawat
    Jan 30 '16 at 12:22

















  • @Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"

    – Shashank Kumrawat
    Jan 30 '16 at 11:27











  • Login/Logout, ACL is loaded on login

    – Fabian Blechschmidt
    Jan 30 '16 at 12:00











  • I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.

    – Shashank Kumrawat
    Jan 30 '16 at 12:12











  • Can you edit your question and add the new config.xml?

    – Fabian Blechschmidt
    Jan 30 '16 at 12:15











  • yes I have edited my config.xml, please check

    – Shashank Kumrawat
    Jan 30 '16 at 12:22
















@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"

– Shashank Kumrawat
Jan 30 '16 at 11:27





@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"

– Shashank Kumrawat
Jan 30 '16 at 11:27













Login/Logout, ACL is loaded on login

– Fabian Blechschmidt
Jan 30 '16 at 12:00





Login/Logout, ACL is loaded on login

– Fabian Blechschmidt
Jan 30 '16 at 12:00













I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.

– Shashank Kumrawat
Jan 30 '16 at 12:12





I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.

– Shashank Kumrawat
Jan 30 '16 at 12:12













Can you edit your question and add the new config.xml?

– Fabian Blechschmidt
Jan 30 '16 at 12:15





Can you edit your question and add the new config.xml?

– Fabian Blechschmidt
Jan 30 '16 at 12:15













yes I have edited my config.xml, please check

– Shashank Kumrawat
Jan 30 '16 at 12:22





yes I have edited my config.xml, please check

– Shashank Kumrawat
Jan 30 '16 at 12:22

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f99674%2fadmin-controller-is-not-being-called-in-magento-ajax%23new-answer', 'question_page');

);

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







Popular posts from this blog

Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

Magento 2 disable Secret Key on URL's from terminal The Next CEO of Stack OverflowMagento 2 Shortcut/GUI tool to perform commandline tasks for windowsIn menu add configuration linkMagento oAuth : Generating access token and access secretMagento 2 security key issue in Third-Party API redirect URIPublic actions in admin controllersHow to Disable Cache in Custom WidgetURL Key not changing in Magento 2Product URL Key gets deleted when importing custom options - Magento 2Problem with reindex terminalMagento 2 - bin/magento Commands not working in Cpanel Terminal

Aasi (pallopeli) Navigointivalikko