Mudanças entre as edições de "Mautic"
De MochilaWiki
Ir para navegaçãoIr para pesquisarLinha 1: | Linha 1: | ||
+ | Página do projeto | ||
+ | * https://www.mautic.org/ | ||
+ | |||
+ | Instalação do Mautic em Ubuntu 16.04 | ||
+ | |||
+ | == Instalando dependências == | ||
+ | <source lang="bash"> | ||
+ | sudo apt-get install nginx mariadb-server php7.0-fpm php7.0-xml \ | ||
+ | unzip php7.0-imap php7.0-intl php7.0-zip php7.0-mcrypt php7.0-mysql \ | ||
+ | php7.0-curl php7.0-mbstring php7.0-gd | ||
+ | </source> | ||
+ | |||
+ | == Ajustes no PHP == | ||
+ | |||
+ | É necessário ajustar: | ||
+ | memory_limit = 256M | ||
+ | upload_max_filesize = 64M | ||
+ | max_execution_time = 360 | ||
+ | cgi.fix_pathinfo = 0 | ||
+ | date.timezone = America/Sao_Paulo | ||
+ | |||
+ | Ajustante diretamente com Sed | ||
+ | <source lang="bash"> | ||
+ | sudo sed -i '389s/128/256/g' /etc/php/7.0/fpm/php.ini | ||
+ | sudo sed -i '809s/2/64/g' /etc/php/7.0/fpm/php.ini | ||
+ | sudo sed -i '368s/30/360/g' /etc/php/7.0/fpm/php.ini | ||
+ | sudo sed -i 's#;date.timezone =#date.timezone = America/Sao_Paulo#g' /etc/php/7.0/fpm/php.ini | ||
+ | sudo sed -i 's#;cgi.fix_pathinfo=1#cgi.fix_pathinfo = 0#g' /etc/php/7.0/fpm/php.ini | ||
+ | </source> | ||
+ | |||
+ | |||
== Referências == | == Referências == | ||
* https://www.gerenciandoweb.com/tarefas-cron-do-mautic/ | * https://www.gerenciandoweb.com/tarefas-cron-do-mautic/ |
Edição das 23h17min de 6 de maio de 2018
Página do projeto
Instalação do Mautic em Ubuntu 16.04
Instalando dependências
sudo apt-get install nginx mariadb-server php7.0-fpm php7.0-xml \
unzip php7.0-imap php7.0-intl php7.0-zip php7.0-mcrypt php7.0-mysql \
php7.0-curl php7.0-mbstring php7.0-gd
Ajustes no PHP
É necessário ajustar:
memory_limit = 256M upload_max_filesize = 64M max_execution_time = 360 cgi.fix_pathinfo = 0 date.timezone = America/Sao_Paulo
Ajustante diretamente com Sed
sudo sed -i '389s/128/256/g' /etc/php/7.0/fpm/php.ini
sudo sed -i '809s/2/64/g' /etc/php/7.0/fpm/php.ini
sudo sed -i '368s/30/360/g' /etc/php/7.0/fpm/php.ini
sudo sed -i 's#;date.timezone =#date.timezone = America/Sao_Paulo#g' /etc/php/7.0/fpm/php.ini
sudo sed -i 's#;cgi.fix_pathinfo=1#cgi.fix_pathinfo = 0#g' /etc/php/7.0/fpm/php.ini
Referências
- https://www.gerenciandoweb.com/tarefas-cron-do-mautic/
- https://www.gerenciandoweb.com/sparkpost-mautic/
- https://www.gerenciandoweb.com/campanhas-e-recursos-do-mautic/
- https://blog.runcloud.io/2017/04/10/how-to-install-mautic-marketing-automation-inside-runcloud-server.html
- https://websiteforstudents.com/install-configure-mautic-on-ubuntu-16-04-lts-with-nginx-mariadb-and-php-7-1-support/
- https://www.gerenciandoweb.com/instalacao-mautic/
- https://linoxide.com/linux-how-to/install-mautic-easyengine-ubuntu-16-04/
- https://gist.github.com/that0n3guy/905c812c0f65e7ffb5ec
- https://www.mautic.org/docs/en/setup/cron_jobs.html
- https://blog.mxcursos.com/mautic/
plataforma complementar para criação de template de newsletter