yireo/yireo_disablelog

This package is abandoned and no longer maintained. The author suggests using the yireo/magento1-disablelog package instead.

Disable all Magento logging to the database

Installs: 696

Dependents: 1

Suggesters: 0

Security: 0

Stars: 24

Watchers: 5

Forks: 6

Type:magento-module

0.0.14 2016-11-02 06:40 UTC

This package is auto-updated.

Last update: 2022-02-01 13:04:21 UTC


README

Magento extension to disable Magento logging to the database

More information: https://www.yireo.com/software/magento-extensions/disablelog

You can install this module in various ways:

  1. Download the MagentoConnect package from our site and upload it into your own Magento Downloader application.

  2. Download the Magento source archive from our site, extract the files and upload the files to your Magento root. Make sure to flush the Magento cache. Make sure to logout once you're done.

  3. Use modman to install the git repository for you:

    modman init modman clone https://github.com/yireo/Yireo_DisableLog modman update Yireo_DisableLog

  4. Use composer to install the composer package for you. See below.

Instructions for using composer

Use composer to install this extension. First make sure to initialize composer with the right settings:

composer -n init
composer install --no-dev

Next, modify your local composer.json file:

{
    "require": {
        "yireo/magento1-disablelog": "dev-master",
        "magento-hackathon/magento-composer-installer": "*"
    },    
    "repositories":[
        {
            "packagist": false
        },
        {
            "type":"composer",
            "url":"https://packages.firegento.com"
        },
        {
            "type":"composer",
            "url":"https://satis.yireo.com"
        }
    ],
    "extra":{
        "magento-root-dir":"/path/to/magento",
        "magento-deploystrategy":"copy"           
    }
}

Make sure to set the magento-root-dir properly. Test this by running:

composer update --no-dev

Done.