1

I want to add a new module for export attributes in magento, so this is the module.

When I upload this module, I have this error in my system.log and I don't understand why it speaks to me of permissions because I already downloaded other modules without problem.

Can you help me thank.

This is my errors :

2017年07月29日T09:51:13+00:00 ERR (3): Warning: include(C:\wamp\www\magento\app\design\adminhtml\default\default\template\importexportattributes\adminimportexportattributes.phtml): failed to open stream: Permission denied in C:\wamp\www\easybuy\app\code\core\Mage\Core\Block\Template.php on line 241
2017年07月29日T09:51:13+00:00 ERR (3): Warning: include(): Failed opening 'C:\wamp\www\magento\app\design\adminhtml\default\default\template\importexportattributes\adminimportexportattributes.phtml' for inclusion (include_path='C:\wamp\www\easybuy\app\code\local;C:\wamp\www\easybuy\app\code\community;C:\wamp\www\easybuy\app\code\core;C:\wamp\www\easybuy\lib;.;C:\php\pear') in C:\wamp\www\easybuy\app\code\core\Mage\Core\Block\Template.php on line 241
PЯINCƎ
11.8k3 gold badges27 silver badges85 bronze badges
asked Jul 29, 2017 at 9:57

2 Answers 2

1

It looks like you are loading from two separate app roots, C:\wamp\www\magento and C:\wamp\www\easybuy.

Run the following on your DB and make sure all of your urls are correct:

select * from core_config_data where path like '%base_url%';

answered Jul 29, 2017 at 14:15
0

I think that you have some permission restriction in your folder, try these commands:

Magento File permissions:

  1. chmod -R 644 ./*
  2. find . -type d -exec chmod 755 {} \;
  3. find . -type f -exec chmod 644 {} \;
  4. chmod 550 ./mage

For more informations, Magento guides.

sv3n
11.7k7 gold badges44 silver badges75 bronze badges
answered Jul 29, 2017 at 14:57
1
  • Good answer for question Commented Sep 21, 2018 at 17:18

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.