steverobbins / Magento-Redismanager

Superuser control for Redis in Magento
137 stars 31 forks source link

1.9.4 #26

Closed cidrik closed 6 years ago

cidrik commented 7 years ago

Hi, Manager doesn't work with 1.9.4. magento version. Shows empty page.

simkea commented 7 years ago

You probably mean Magento CE 1.9.3.4 ?

cidrik commented 7 years ago

Yes.

cidrik commented 7 years ago

I found the reason, symliks are disabled since 1.9.3.3. Now modman's installation way is not acceptable.

simkea commented 7 years ago

Add this in your /app/etc/config.xml

<default>
...
        <dev>
            <template>
                <allow_symlink>1</allow_symlink>
            </template>
        </dev>
...
</default>

and add something like this to a file ... adminhtml/base/default/layout/your.xml

<layout>
    <default>
        <reference name="notifications">
            <remove name="notification_symlink"/>
        </reference>
...
</layout>