Installing Unirgy Modules

Installing ionCube or SourceGuardian loader

  1. Download and install a server file loader, if not installed yet:

Installing Unirgy Installer

  1. Download installer modules for proper PHP version):
  2. Extract contents of the archive, you should end with one app folder per archive
  3. Connect to your site via FTP or SFTP
  4. Navigate to Magento root
  5. Upload both app folders into Magento root. Make sure to merge with existing app on the site, not to replace it
  6. Open terminal or SSH session to the server.
  7. Execute:
    cd <magento root>
                            php bin/magento module:enable Unirgy_SimpleUp Unirgy_SimpleLicense
                            php bin/magento setup:upgrade
                        
    1. Follow any instructions for other commands after completing the above. If you are running in production mode, you will have to run setup:di:compile and setup:static-content:deploy
  8. Now you should be able to see Unirgy Installer module in System > Tools menu

Installing via SimpleUp user interface

  1. Make sure to have command line access to your web server, either local terminal or remote SSH session.
  2. For successful web installation, it is required that:
    • you have PHP Zip extension enabled
      • you can verify this in the output of phpinfo() command
    • your server can write to app/code folder within Magento root folder, if there is no code folder within app, then ensure write access to app, Installer will create the sub paths. Since by default Magento prevents web server from writing to these locations, here are the steps to allow it before attempting install:
      cd <magento root>
                                  chmod -R a+w app
                              
      The above will give write access to any user in the system. This is not most secure setting, therefore after install procedure is complete perform the following command to revoke write access:
      cd <magento root>
                                  chmod -R og-w app
                              
  3. Login in Magento admin.
  4. Navigate to System > Tools > Unirgy Installer
    Unirgy Installer
  5. Click on Add Licenses tab:Add Licenses and paste your license key in the text input field.
    • Optionally check Download and install related extensions to also install license modules as you add your license.
    • Click Add license key button
  6. Once module licenses are installed, you can check module status at the Manage Modules tab:Manage Modules
  7. Next go to your command line (terminal or SSH session) and execute:
    cd <magento root>
                            php bin/magento module:enable <list all newly installed modules>
                            php bin/magento setup:upgrade
                        
    1. Follow any instructions for other commands after completing the above. If you are running in production mode, you will have to run setup:di:compile and setup:static-content:deploy
  8. Make sure to remove write access from app folder:
    cd <magento root>
                            chmod -R og-w app
                        
  9. Unirgy modules are now installed and ready to use.

Manual installation

  1. Login in Magento admin.
  2. Navigate to System > Tools > Unirgy Installer
    Unirgy Installer
  3. Click on Add Licenses tab:Add Licenses and paste your license key in the text input field.
    • Optionally check Download and install related extensions to also install license modules as you add your license.
    • Click Add license key button
  4. Navigate to Manage Modules tab
  5. Click the Hover/Click link next to the name of a module you want to manually install and save the archive at convenient for you place.
  6. Extract contents of the archive, you should end with single app folder
  7. Connect to your site via FTP or SFTP
  8. Navigate to Magento root
  9. Upload your app folder into Magento root. Make sure to merge with existing app on the site, not to replace it
  10. Open terminal or SSH session to the server.
  11. Execute:
    cd <magento root>
                            php bin/magento module:enable <list all newly installed modules>
                            php bin/magento setup:upgrade
                        
    1. Follow any instructions for other commands after completing the above. If you are running in production mode, you will have to run setup:di:compile and setup:static-content:deploy
  12. You should be able to find your Unirgy modules installed in your site.