Jump to content

Access denied BO


Recommended Posts

unfortunately I dont see any screenshot.

referring to the your first post - image you attached says that something doesnt work with permissions in your store. Check ps_access table, id of your profile should appear there (check my screenshot)

 

QEw6DTQ.png

 

your table looks similar?

Link to comment
Share on other sites

i think the simplest way is to reset your password in the following way:

 

try to register as a customer with password 12345678 or any other. then copy hash of this password from your db, and paste to your admin password hash in the db

Link to comment
Share on other sites

i think the simplest way is to reset your password in the following way:

 

try to register as a customer with password 12345678 or any other. then copy hash of this password from your db, and paste to your admin password hash in the db

How to do that? My shop is not online
Link to comment
Share on other sites

FO is not working too

 

you did not mention that in your original post :)

 

i would suggest you turn on error reporting and try to find out what's happening

- in file /config/config.inc.php find the code @ini_set('display_errors', 'off')

and change it to @ini_set('display_errors', 'on')

after that if your reload your FO page it hopefully should return some error

Link to comment
Share on other sites

  • 5 months later...

hi globula_alba
I was wondering if you solved your problem. I'm using PS 1.5.5.0 multistore and I gave permissions to employees to add and edit products in one store.

When I login as admin Product combinations generator is working fine. But when I log in as an employ I can create products, attributes and values, but when accessing Catalog ->Products -> Edit ()->Combination->Product combinations generator I get "Access Denied" just like globula_alba does.

Can anyone help me?

Link to comment
Share on other sites

I resolved that problem.The problem is from table ps_access.Tables should look like

| id_profile | id_tab | view | add | edit | delete |
+------------+--------+------+-----+------+--------+
|          1     |      4   |    1   |   1   |    1  |      1

 

where id_profile is your user id, id_tab is id_tab from ps_tab where class_name='AdminAttributeGenerator'.

 

in my_case:

 

mysql> select id_tab from ps_tab where class_name='AdminAttributeGenerator';

//result is 4

mysql> select * from ps_access where id_tab=4;

 

make update in this table(view=1, add=1, edit=1, delete=1) where id_profile is your id(1 in my case).

 

Wait for response if it worked!

Link to comment
Share on other sites

×
×
  • Create New...