I am trying to write code in such a manner that, when anyone logs in to my sight with user role=merchant he will not allow accessing my home page and when anyone login with user role=customer then he will allow accessing the home page, rather than that anyone without a login can visit my home page
how to allow home page to access without login and when any userlogin restrict access to home page to for that user in cakephp 3
69 Views Asked by mohammad arif At
1
There are 1 best solutions below
Related Questions in CAKEPHP-3.6
- How to solve insecure warning after google chrome upgraded to 86
- Access request params inside beforeFind cakePHP 3.6
- Filter all find queries on entity CakePHP 3.6
- CakePHP 3.6 - Find All Records Created Between Two Dates
- Two users associated to one transaction in CakePHP 3.x
- Cakephp 3: execute custom command from command
- CakePHP 3.x - File Upload Results in Token Mismatch
- CakePHP 3.x - Save many-to-many data
- CakePHP 3.x Merge Find Results
- CakePHP 3.6 File Upload Returns Missing field '...' in POST data
- Xdebug 2.6.1 / PHP 7.2.13 exiting execution in PhpStorm 2019.1 EAP when iterating Traversable object
- CakePHP 3.6.x CSRF Token Mismatch
- SQL case query with DISTINCT in cakephp3 ORM
- CakePHP 3.x Search Multiple Unrelated Models
- how to allow home page to access without login and when any userlogin restrict access to home page to for that user in cakephp 3
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can define your rule in isAuthorized action in
/src/Controller/AppController.phpCakephp -> Authentication and Authorization -> Authorization (who’s allowed to access what)