by skufel | Sep 28, 2016 | Development, Linux, SysAdmin, Web Servers
If you need to install Xdebug on openSUSE and don’t want ot use existing binary repo easiest way is to use pecl to do that and here is how… First install all required packages dev-lnx-02:~ # zypper --non-interactive install gcc autoconf automake php5...
by skufel | Aug 8, 2016 | Development, Linux, Web Servers
When Yii-based project doesn’t want to update, there might be missing component. Once you add one plugin everything goes back to normal. [root@arb-srv-01 easyforms]# composer update Running composer as root/super user is highly discouraged as packages,...
by skufel | Mar 17, 2016 | Development, Linux, Web Servers
In previous article “How-to : Introduction to Laravel : Create a Laravel Framework project on openSUSE Leap 42.1” we’ve created Laravel project called demo-project. However, this project is not available on web server, so we can’t open it in...
by skufel | Sep 7, 2015 | HA/DR, Infrastructure, Linux, Network, SysAdmin, Web Servers
Many times there is a need to publish multiple websites from internal network, but there is only one public IP address available. How this can be done easy way? HAProxy can help us with it. In example configuration I have 2 URLs registered to same public IP address:...
by skufel | Aug 4, 2015 | Automation, Infrastructure, Network, Scripting, SysAdmin, Web Servers
If you need to watch IIS application pool and start it once goes down and want to use PowerShell for that here is simple script for that. Script includes also logging all restarts in log file which is created in same folder as script. # AppPool to monitor $AppPoolName...
by skufel | Apr 24, 2015 | Linux, Web Servers
In order to have Apache2 started automatically after reboot use: systemctl enable apache2.service