What is the url of this routes.xml?Magento 2.2.6: What is block delimiter?What are the rest api's for the Magento2 modulesWhat is the best way change the label of fields in Shipping Address during checkout?What would prevent me from being able to upload images on migrated products?Magento 2 - Trying to get the items from the order into the success pageThe next arrow hidden on the product images in fotorama zoom pages at magento 2.2.6Magento 2 ErrorWhat is the use of Magento 2.2.6 product image cache?How could I display the last modified date/time in the backend of the product?What is the layout for editing the “Your search returned no results.” page?
Averaging over columns while ignoring zero entries
Did Amazon pay $0 in taxes last year?
Why does a car's steering wheel get lighter with increasing speed
Are small insurances worth it?
Having the player face themselves after the mid-game
How to distinguish easily different soldier of ww2?
Why aren't there more Gauls like Obelix?
Can multiple states demand income tax from an LLC?
What is Tony Stark injecting into himself in Iron Man 3?
Can I challenge the interviewer to give me a proper technical feedback?
Create chunks from an array
Generating a list with duplicate entries
Why isn't P and P/poly trivially the same?
What exactly is the meaning of "fine wine"?
If nine coins are tossed, what is the probability that the number of heads is even?
Why is there an extra space when I type "ls" on the Desktop?
Does the US political system, in principle, allow for a no-party system?
Should we avoid writing fiction about historical events without extensive research?
How does a sound wave propagate?
Ultrafilters as a double dual
How to make sure I'm assertive enough in contact with subordinates?
3.5% Interest Student Loan or use all of my savings on Tuition?
Do I need a return ticket to Canada if I'm a Japanese National?
Use Mercury as quenching liquid for swords?
What is the url of this routes.xml?
Magento 2.2.6: What is block delimiter?What are the rest api's for the Magento2 modulesWhat is the best way change the label of fields in Shipping Address during checkout?What would prevent me from being able to upload images on migrated products?Magento 2 - Trying to get the items from the order into the success pageThe next arrow hidden on the product images in fotorama zoom pages at magento 2.2.6Magento 2 ErrorWhat is the use of Magento 2.2.6 product image cache?How could I display the last modified date/time in the backend of the product?What is the layout for editing the “Your search returned no results.” page?
Here is the routes.xml file
<?xml version="1.0"?>
<!--
/**
* Copyright © 2017 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="unit3helloworldblock" frontName="unit3helloworldblock">
<module name="Unit3_HelloWorldBlock" />
</route>
</router>
In Unit3HelloWorldBlockControllerBlock there is this Index.php file
/**
* Class Index
* @package Unit3HelloWorldBlockControllerBlock
*/
class Index extends MagentoFrameworkAppActionAction
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory
)
$this->_pageFactory = $pageFactory;
parent::__construct($context);
/**
* return result
*/
public function execute()
$layout = $this->_pageFactory->create()->getLayout();
$block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
$result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
$result->setContents($block->toHtml());
return $result;
I have attempted
/unit3helloworldblock/
/unit3helloworldblock/index.php
/unit3helloworldblock/Controller/Block/Index.php
I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.
magento2.2.6
add a comment |
Here is the routes.xml file
<?xml version="1.0"?>
<!--
/**
* Copyright © 2017 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="unit3helloworldblock" frontName="unit3helloworldblock">
<module name="Unit3_HelloWorldBlock" />
</route>
</router>
In Unit3HelloWorldBlockControllerBlock there is this Index.php file
/**
* Class Index
* @package Unit3HelloWorldBlockControllerBlock
*/
class Index extends MagentoFrameworkAppActionAction
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory
)
$this->_pageFactory = $pageFactory;
parent::__construct($context);
/**
* return result
*/
public function execute()
$layout = $this->_pageFactory->create()->getLayout();
$block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
$result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
$result->setContents($block->toHtml());
return $result;
I have attempted
/unit3helloworldblock/
/unit3helloworldblock/index.php
/unit3helloworldblock/Controller/Block/Index.php
I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.
magento2.2.6
add a comment |
Here is the routes.xml file
<?xml version="1.0"?>
<!--
/**
* Copyright © 2017 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="unit3helloworldblock" frontName="unit3helloworldblock">
<module name="Unit3_HelloWorldBlock" />
</route>
</router>
In Unit3HelloWorldBlockControllerBlock there is this Index.php file
/**
* Class Index
* @package Unit3HelloWorldBlockControllerBlock
*/
class Index extends MagentoFrameworkAppActionAction
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory
)
$this->_pageFactory = $pageFactory;
parent::__construct($context);
/**
* return result
*/
public function execute()
$layout = $this->_pageFactory->create()->getLayout();
$block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
$result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
$result->setContents($block->toHtml());
return $result;
I have attempted
/unit3helloworldblock/
/unit3helloworldblock/index.php
/unit3helloworldblock/Controller/Block/Index.php
I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.
magento2.2.6
Here is the routes.xml file
<?xml version="1.0"?>
<!--
/**
* Copyright © 2017 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="unit3helloworldblock" frontName="unit3helloworldblock">
<module name="Unit3_HelloWorldBlock" />
</route>
</router>
In Unit3HelloWorldBlockControllerBlock there is this Index.php file
/**
* Class Index
* @package Unit3HelloWorldBlockControllerBlock
*/
class Index extends MagentoFrameworkAppActionAction
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory
)
$this->_pageFactory = $pageFactory;
parent::__construct($context);
/**
* return result
*/
public function execute()
$layout = $this->_pageFactory->create()->getLayout();
$block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
$result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
$result->setContents($block->toHtml());
return $result;
I have attempted
/unit3helloworldblock/
/unit3helloworldblock/index.php
/unit3helloworldblock/Controller/Block/Index.php
I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.
magento2.2.6
magento2.2.6
asked 11 hours ago
tjjentjjen
318115
318115
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Solution
Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)
Explanation
The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>
front-name
This is the front-name you defined in the routes.xml
Controller-name
This is your folder structure. The router is already going to look inside your Controller folder from your module.
Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.
Action-name
This is the name of your controller action.
You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html
add a comment |
The url is built according this pattern:
/[frontname]/[controller]/[action]
If the action is called Index
that part must not be used. Therefore for your controller called Block
and the action Index
the url should be:
/unit3helloworldblock/block/
If your controller is called Index
(directory) you can use just the frontname for your url:
/unit3helloworldblock/
add a comment |
Your URL into this case is,
unit3helloworldblock/block
Or
unit3helloworldblock/block/index
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%2f265080%2fwhat-is-the-url-of-this-routes-xml%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Solution
Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)
Explanation
The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>
front-name
This is the front-name you defined in the routes.xml
Controller-name
This is your folder structure. The router is already going to look inside your Controller folder from your module.
Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.
Action-name
This is the name of your controller action.
You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html
add a comment |
Solution
Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)
Explanation
The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>
front-name
This is the front-name you defined in the routes.xml
Controller-name
This is your folder structure. The router is already going to look inside your Controller folder from your module.
Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.
Action-name
This is the name of your controller action.
You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html
add a comment |
Solution
Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)
Explanation
The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>
front-name
This is the front-name you defined in the routes.xml
Controller-name
This is your folder structure. The router is already going to look inside your Controller folder from your module.
Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.
Action-name
This is the name of your controller action.
You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html
Solution
Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)
Explanation
The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>
front-name
This is the front-name you defined in the routes.xml
Controller-name
This is your folder structure. The router is already going to look inside your Controller folder from your module.
Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.
Action-name
This is the name of your controller action.
You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html
answered 10 hours ago
Matthias_CompactCodeMatthias_CompactCode
963
963
add a comment |
add a comment |
The url is built according this pattern:
/[frontname]/[controller]/[action]
If the action is called Index
that part must not be used. Therefore for your controller called Block
and the action Index
the url should be:
/unit3helloworldblock/block/
If your controller is called Index
(directory) you can use just the frontname for your url:
/unit3helloworldblock/
add a comment |
The url is built according this pattern:
/[frontname]/[controller]/[action]
If the action is called Index
that part must not be used. Therefore for your controller called Block
and the action Index
the url should be:
/unit3helloworldblock/block/
If your controller is called Index
(directory) you can use just the frontname for your url:
/unit3helloworldblock/
add a comment |
The url is built according this pattern:
/[frontname]/[controller]/[action]
If the action is called Index
that part must not be used. Therefore for your controller called Block
and the action Index
the url should be:
/unit3helloworldblock/block/
If your controller is called Index
(directory) you can use just the frontname for your url:
/unit3helloworldblock/
The url is built according this pattern:
/[frontname]/[controller]/[action]
If the action is called Index
that part must not be used. Therefore for your controller called Block
and the action Index
the url should be:
/unit3helloworldblock/block/
If your controller is called Index
(directory) you can use just the frontname for your url:
/unit3helloworldblock/
answered 10 hours ago
HelgeBHelgeB
2,1771318
2,1771318
add a comment |
add a comment |
Your URL into this case is,
unit3helloworldblock/block
Or
unit3helloworldblock/block/index
add a comment |
Your URL into this case is,
unit3helloworldblock/block
Or
unit3helloworldblock/block/index
add a comment |
Your URL into this case is,
unit3helloworldblock/block
Or
unit3helloworldblock/block/index
Your URL into this case is,
unit3helloworldblock/block
Or
unit3helloworldblock/block/index
answered 10 hours ago
Dhiren VasoyaDhiren Vasoya
4,37751843
4,37751843
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%2f265080%2fwhat-is-the-url-of-this-routes-xml%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