Download the PHP package acs/acspanel-standard without Composer

On this page you can find all versions of the php package acs/acspanel-standard. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package acspanel-standard

ACSPanel (ACS Control Server Panel)

Travis-ci

Welcome to ACSPanel - The server administration tool written in Symfony2

This document contains information on how to download, install, and start using ACSPanel.

Features:

How it works:

ACSPanel is just a Front-end for a custom Database with all the information related with your services. All the services ask to the panel database what configuration has to load.

Services supported (At the moment):

Installing ACSPanel

When it comes to installing the ACSPanel, you have the following options.

Download from GIT repository

To install ACSPanel from git repository, you have to clone the project with the next command and execute the following commands

cd /server_root_directory/

git clone [email protected]:AltCtrlSupr/ACSPanel-Standard.git acspanel

curl -sS https://getcomposer.org/installer | php

php composer.phar install

Install using docker

You can also build your own docker image:

And then you can run the image using the command avobe changing the image name for the one you choose.

Permissions

To avoid permissions issues after executing console commands you should do the next

mkdir app/cache && mkdir app/logs (TODO: check this to be created with the initial files...)
sudo setfacl -R -m u:www-data:rwX -m u:`whoami`:rwX app/cache app/logs
sudo setfacl -dR -m u:www-data:rwx -m u:`whoami`:rwx app/cache app/logs

Setting up ACSPanel

You should create your own config_dev.yml, as the parameters you can take config_dev.yml.sample as example.

cp app/config/config_dev.yml.sample app/config/config_dev.yml

To install all the dependencies you have to execute composer command.

composer install

Then you are ready to create the acspanel basic schema executing the next command:

php app/console doctrine:schema:create

You can load some basic fixtures running next command, like basic groups and admin to start using the panel:

php app/console doctrine:fixtures:load

The basic fixtures, adds the superadmin user to let you start to work with the panel. Its default password is 1234. The acspanel will redirect you to password change screen where you should change the password.

For the AvanzuAdminThemeBundle you should download its assets running the next command:

You should install the assets as well:

php app/console assets:install --symlink

Congratulations! You're now ready to use ACSPanel.

Setting up Apache2

<VirtualHost *:80>
    DocumentRoot /home/user/www/acspanel/web
    <Directory /home/user/www/acspanel/web/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>

Ensure you have rewrite mode enabled

Getting started with ACSPanel

Changing the panel view parameters:

edit app/config/config.yml // Set variables from twig globals, you can change the default date format, the panel name and breadcumb separation character

Setting up third party programs

To set up roundcube to be able to change the passwords with the password plugin you must use the next query:

$rcmail_config['password_query'] = 'UPDATE mail_mailbox mb INNER JOIN mail_domain md ON mb.mail_domain_id = md.id INNER JOIN domain d ON md.domain_id = d.id SET mb.password=%p WHERE mb.username=%l AND mb.password=%o AND d.domain=%d';

Updating the panel (DO BACKUPS FIRST!!)

Get the latest version of the code

git pull

Install the latest version of the dependencies

./composer.phar install

Update the database

php app/console doctrine:schema:update --force

And install the assets

php app/console assets:install --symlink

Setting up services to automatic apply panel settings

Apache: Copy the script tools/acspanel-srv-apache2-reboot to each Apache2 server and give execution permission to the script. Change the panel database access details and add to crontab. Create a file in /etc/cron.d/ folder with the next contents:

* *     * * *   root    /usr/local/sbin/acspanel-srv-apache2-reboot

Change the route to your script location

Contribute

If you want to contribute you can open Issues on this github repository. Also you can donate to the next bitcoin address:

What's inside?

Symfony2 comes pre-configured with the following bundles:

And ACSPanel adds the following Bundles:

Enjoy!


All versions of acspanel-standard with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
symfony/symfony Version 2.3.*
doctrine/orm Version >=2.2.3,<2.4-dev
doctrine/doctrine-bundle Version 1.2.*
twig/extensions Version 1.0.*
symfony/assetic-bundle Version 2.1.*
symfony/swiftmailer-bundle Version 2.3.*
symfony/monolog-bundle Version 2.3.*
sensio/distribution-bundle Version 2.3.*
sensio/framework-extra-bundle Version 2.3.*
sensio/generator-bundle Version 2.3.*
jms/security-extra-bundle Version dev-master
friendsofsymfony/user-bundle Version *
stof/doctrine-extensions-bundle Version dev-master
knplabs/knp-menu-bundle Version dev-master
jms/di-extra-bundle Version dev-master
symfony/event-dispatcher Version 2.3.*
liip/theme-bundle Version dev-master
craue/formflow-bundle Version dev-master
gregwar/form-bundle Version dev-master
knplabs/knp-paginator-bundle Version dev-master
doctrine/doctrine-fixtures-bundle Version dev-master
incenteev/composer-parameter-handler Version ~2.0
jms/serializer-bundle Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package acs/acspanel-standard contains the following files

Loading the files please wait ....