Skip to content
This repository was archived by the owner on Oct 17, 2020. It is now read-only.

404 in admin #3

Open
awd1975 opened this issue May 4, 2017 · 7 comments
Open

404 in admin #3

awd1975 opened this issue May 4, 2017 · 7 comments

Comments

@awd1975
Copy link

awd1975 commented May 4, 2017

I have installed, but i keep getting a 404 in admin.

i have tried all the standard thing you do here, like cache log out etc.

i am useing magento 1.9.3.2

@sylvainraye
Copy link
Collaborator

Hi,

It happens when you try to get access to which page?

@awd1975
Copy link
Author

awd1975 commented May 4, 2017

System / Configuration / Diglin / Crawler

I have added the module to another one of my sites and the same happens

@sylvainraye
Copy link
Collaborator

ok I think I see. acl is missing in an adminhtml.xml file. Now I can't make it.

@awd1975
Copy link
Author

awd1975 commented May 4, 2017

ok, should i change anything on my side?

@sylvainraye
Copy link
Collaborator

you could create this adminhtml file and fill it with correct info

@awd1975
Copy link
Author

awd1975 commented May 4, 2017

what would be the correct info?

@thomLem
Copy link

thomLem commented Jun 29, 2018

@awd1975 Create the following file:

src\app\code\community\Diglin\Crawler\etc\adminhtml.xml

Content:

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <acl>
        <resources>
            <admin>
                <children>
                    <system>
                        <children>
                            <config>
                                <children>
                                    <diglin_crawler translate="title" module="diglin_crawler">
                                        <title>Diglin-Crawler Configuration</title>
                                    </diglin_crawler>
                                </children>
                            </config>
                        </children>
                    </system>
                </children>
            </admin>
        </resources>
    </acl>
</config>

After that clear your cache, log out, log in and you should see the backend configuration for this module.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

No branches or pull requests

3 participants