總網頁瀏覽量

2015年3月18日

How To Fix KitKat SD Card Write Restriction

In the last days Samsung has been pushing out Android 4.4.2 to flagship devices like the Galaxy Note III and Galaxy S4. Unfortunately, Google implemented an SD card write restriction in the latest Android version which can be quite annoying for users with an SD card in their phone.
The new “feature” basically restricts apps from writing to external SD cards. This can be quite annoying, because many users want to store apps on a secondary SD card instead of the main storage unit.
Luckily, fixing this problem can be easily done if you have root access. Here’s how you can do it (Please be aware that you’re performing these changes on your own risk!):
  1. Make sure that you have root access
  2. Perform a NANDROID backup to be completely safe
  3. Use a root-enabled file manager and navigate to /system/etc/permissions
  4. Edit platform.xml and find “WRITE_EXTERNAL_STORAGE
  5. Add an additional group definition for this permission: 
  6. Save the changes and restart your device
  7. You are now able to write on your external SD card again
fix-android-sd-card-restriction
I hope that I was able to help you. Please ask your questions in the comment section below!
Interested in more Android guides? Check out our knowledge database.

2015年3月15日

慘了....

慘了,飛龍哥要結婚了耶,婚紗都拍好了,結果怎麼不是妳勒??   人生就是這樣,沒有凡是順心的事吧, 哈, 不就是跟我說的這樣,不可能再一起的...  但得不到的最美是吧. XD

2015年3月3日

owncloud7で513MB 限制。

owncloud7で513MBしかアップロードできない

owncloudをホストしていたサーバが急に飛んでしまい、今まで使っていた6.5から7にしたところ、表題の件が起こった。
昔はGUI上で設定できていた(筈)。
php.iniを見ても上限は513MBなんて中途半端な数字では無い(むしろ半端なく高い)。
海外フォーラムを見ると、.htaccessを弄れと言うが、configディレクトリの中の.htaccessは全くそんな記述は無い。
それでも探していたところ、
https://forum.owncloud.org/viewtopic.php?f=23&t=11039
が見つかる。
凄くしつこく、やっぱり.htaccessを参照しろと言っている。
おまえ弄る気無いだろばりのことまで言われている。
そんな中・・・ん・・・?・・・インストールルートの.htaccess・・・?まさか・・・。
そう、そのまさかである。 見落としていたのである。
ということで、インストールルートにある.htaccessを編集。
RPMインストールしたら
/var/www/html/owncloud
がルートだろうから、
cd /var/www/html/owncloud
で、
vi .htaccess
ドットファイルなので基本不可視。コマンドは通る。見たい場合は例えばls -aとか。
以下の項目(513MBと入っているところ)を編集し
php_value upload_max_filesize 10G
php_value post_max_size 10G
これで10GBまでアップロード可になった。

owncloud7になって設定が散見されるようになったので面倒。
config.phpを弄らないとパブリックに開放できないとか、もう罠としか言いようが無い。
というか、これも罠か・・・。