Add the following in /etc/apache2/apache2.conf post enable PHP script
#Add user directory for php usage
<IfModule mod_userdir.c>
<Directory /home/*/public_html>
php_admin_value engine On
</Directory>
</IfModule>
Add the following in /etc/apache2/apache2.conf post enable PHP script
#Add user directory for php usage
<IfModule mod_userdir.c>
<Directory /home/*/public_html>
php_admin_value engine On
</Directory>
</IfModule>
สวย ๆ กะแต่งหนัก ๆ เน้น Image Processing, Computer Vision, Machine Learning กะขุดความรู้จาก Python โพสโค้ดให้ Github ทำตัวเป็น Youtuber ช่อง LinuxSiam
How to install proprietary Broadcom wireless card driver to connect to the Internet through Wi-Fi in Debian
lthough I have read some questions that suggest it is troublesome, I have not yet read any report that says it absolutely will not work. It is easy enough to find out. Install the driver and see!
With a working internet connection by ethernet, tethered or whatever means possible, open a terminal and do:
sudo apt-get update
sudo apt-get install bcmwl-kernel-source
The installation of the driver does the required blacklisting for you. However, if you wanted to undertake it manually, I suggest:
sudo gedit /etc/modprobe.d/blacklist.conf
Use nano or kate or leafpad if you don't have the text editor gedit. Add the following lines at the very end to the existing text:
blacklist b43
blacklist bcma
blacklist ssb
Proofread carefully, save and close the text editor. Reboot and tell us if the wireless is working.
Credit : https://askubuntu.com/questions/765584/is-it-possible-to-use-broadcom-bcm43142-wifi-in-ubuntu-16-04