Find attribute_id
SELECT * FROM eav_attribute where attribute_code = 'is_anchor'
Update all of them with anchor_id from above (usually is ID 51)
UPDATE `catalog_category_entity_int` set value = 1 where attribute_id = 51
| <?php | |
| // Created by Rafael Corrêa Gomes | |
| // Reference http://devdocs.magento.com/guides/m1x/api/rest/introduction.html#RESTAPIIntroduction-RESTResources | |
| // Custom Resource | |
| $apiResources = "products?limit=2"; | |
| // Custom Values | |
| $isAdminUser = true; | |
| $adminUrl = "admin"; |
| <?php | |
| // Created by Rafael Corrêa Gomes | |
| // Reference http://devdocs.magento.com/guides/m1x/api/rest/introduction.html#RESTAPIIntroduction-RESTResources | |
| // Custom Resource | |
| $apiResources = "products?limit=2"; | |
| // Custom Values | |
| $isAdminUser = true; | |
| $adminUrl = "admin"; |
| # Install linux update, followed by GCC and Make | |
| sudo yum -y update | |
| sudo yum install -y gcc make | |
| # Install Nginx and php56-FPM | |
| sudo yum install -y nginx php56-fpm | |
| # Install php56 extensions | |
| sudo yum install -y php56-devel php-mysql php56-pdo php56-pear php56-mbstring php56-cli php56-odbc php56-imap php56-gd php56-xml php56-soap |