Mr.Beetroot Posted April 1, 2012 Share Posted April 1, 2012 Hi all. I installed a test version of 1.5 beta 4 (1.5.0.9) for a sneakpeak of what new is going on in the admin panel. The default installation of the front office seems to be working fine, but for some reason when I go into the admin panel it tells me that access is denied. Username and password are of course correct, it let's me enter the panel, but somehow it shows this message and only it on every page there except for the preferences. Address is http://сфоткай.рф/ Link to comment Share on other sites More sharing options...
peranders Posted April 2, 2012 Share Posted April 2, 2012 Have you renamed the admin folder? Link to comment Share on other sites More sharing options...
Carlie Posted April 2, 2012 Share Posted April 2, 2012 Hi, I've got the same problem... Link to comment Share on other sites More sharing options...
Suthichai Posted April 3, 2012 Share Posted April 3, 2012 In My Preferences, edit anything (such as Firstname) then save the change. It works for me, but I don't know the reason behind this. Link to comment Share on other sites More sharing options...
Carlie Posted April 3, 2012 Share Posted April 3, 2012 I reinstalled with default settings, without changing localization and it works fine now. This should be fixed, I suppose. Link to comment Share on other sites More sharing options...
Jikdor Posted April 5, 2012 Share Posted April 5, 2012 Same problem here... Link to comment Share on other sites More sharing options...
xhal99104 Posted April 5, 2012 Share Posted April 5, 2012 I also had this problem. However, I clicked "my preferences" at the top right corner beside "log out" and got into that page. I found that no employee profile was activated, and the menu was empty. After doing more than ten installations over and over again, I tried to click the first blank field in the profile drop down menu in the user preferences window. Bam suddenly I was a super admin and got access to everything. So when you log on and get the access denied - just click on the user preferences text in the upper right corner, click the drop down menu selecting user profile (there will be nothing written in there, but the menus are there) and click the first one from the top. That should be the super admin. 1 Link to comment Share on other sites More sharing options...
piercingpusher Posted January 26, 2013 Share Posted January 26, 2013 Does not work for me, i don`t even have the drop down menu Link to comment Share on other sites More sharing options...
topall Posted November 25, 2013 Share Posted November 25, 2013 (edited) I've got the same problem after the multishop activation. I could not get a "multishop" tab in. I guess, there is the same not fixed issue here . I solved my problem with a following code in AdminShopGroupController class: /** * Override method to fix the folowing bug. * The tab "Advanced Parameters" > "Multistore" has not been showed after the multishop activation. * This was amazing bug which made my red eyes crying. I spend too much time to debug it. * I guess it is the same issue * http://forge.prestashop.com/browse/PSCFV-10010?page=com.atlassian.jira.plugin.system.issuetabpanels:changehistory-tabpanel * * @param type $disable * @return bool value of PS_MULTISHOP_FEATURE_ACTIVE param from configuration table */ public function viewAccess($disable = false) { return Configuration::get( 'PS_MULTISHOP_FEATURE_ACTIVE', null, null, $this->context->shop->id ); } Edited May 7, 2014 by topall (see edit history) 1 Link to comment Share on other sites More sharing options...
topall Posted May 7, 2014 Share Posted May 7, 2014 I've got the same problem after the multishop activation. I could not get a "multishop" tab in. I guess, there is the same not fixed issue here . I solved my problem with a following code in AdminShopGroupController class: /** * Override method to fix the folowing bug. * The tab "Advanced Parameters" > "Multistore" has not been showed after the multishop activation. * This was amazing bug which made my red eyes crying. I spend too much time to debug it. * I guess it is the same issue * http://forge.prestashop.com/browse/PSCFV-10010?page=com.atlassian.jira.plugin.system.issuetabpanels:changehistory-tabpanel * * @param type $disable * @return bool value of PS_MULTISHOP_FEATURE_ACTIVE param from configuration table */ public function viewAccess($disable = false) { return Configuration::get( 'PS_MULTISHOP_FEATURE_ACTIVE', null, null, $this->context->shop->id ); } But it's not a perfect solution. Actually, I found much better solution. You just have to insert PS_MULTISHOP_FEATURE_ACTIVE record into DB for each store you have. Something like that: INSERT INTO `ps_configuration` (`id_configuration` ,`id_shop_group` ,`id_shop` ,`name` ,`value` ,`date_add` ,`date_upd`) VALUES (NULL , '2', '2', 'PS_MULTISHOP_FEATURE_ACTIVE', '1', '2014-04-02 15:38:57', '2014-04-02 15:38:57'); That's it. You can easily access all multistore tabs in your admin panel. Link to comment Share on other sites More sharing options...
Recommended Posts