Wednesday, April 6, 2016

Disable Amazon FTV updates to use FireStarter upto OS(5.5.0)

  1. Connect to your Fire TV via ADB
  2. Run the command:adb shell pm hide com.amazon.device.software.ota
  3. Run the command: exit
To re-enable updates, simply follow this guide again but replace hide with unhide in step 2. Alternatively, performing a factory reset will also re-enable updates.
Source aftvnews.com


Tuesday, April 5, 2016

Arabic IPTV Web Sites

Teledunet: Support WebTV, Andriod and XBMC around 320 channels and updating, lifetime subscription available.



zaaptv: Support WebTV, Andriod, IOS, many TVs and they have their own device as well, available 10 days trial.



 
remove OMV Webdav filesize limit

you need to Change here

/etc/php5/fpm/php.ini


Source Code

  1. upload_max_filesize = 100M
  2. post_max_size = 100M


and you need to update the real conf file for the webdav

located here

/etc/nginx/sites-available/openmediavault-webgui

Source Code

  1. client_max_body_size xxxxM;


xxxx is your limit

then via SSH run

Source Code

  1. service php5-fpm reload
  2. service nginx reload


or restart

Let me know, since I updated a lot of other files in the course of this .

Have a nice Sync
OMV on PI

Bad Gateway after update of PHP

installing the php5-pam update is the problem. It only works on true armhf systems.

Login via ssh as root and try:

wget http://omv-extras.org/debian/pool/main/p/php5-pam/php5-pam_1.0.3-2_armhf.deb
dpkg -i php5-pam_1.0.3-2_armhf.deb
reboot

original source
openmediavault.org