Saturday, October 17, 2015

Convert video and set aspect ratio By Wondershare DVD Converter Ultimate

  • ประเด็นมีอยู่ว่าจะแปลงไฟล์วิดีโอที่โหลดจากเน็ตมาให้เป็น avi
  • แต่ไง๋ พอแปลงไฟล์เสร็จแล้ว (ด้วย Total Video Convertor) กลับได้วิดีโอการแสดงผลอัตราส่วนแปลก
  • พยายามตั้งค่าของโปรแกรม Total Video Convertor หลายๆ ดูเผื่อแก้ได้ มันก็ไม่ปกติสักที
  • สุดท้ายหาโปรแกรมอื่นก็ได้วะ
Solved
  • ขั้นแรกเราก็ Open video ที่เราต้องการแปลงให้มันแสดงใน list ของโปรแกรม
  • จากนั้นคลิก Edit
  • เราจะได้หน้าต่าง Video Edit ดังภาพ ที่ Zoom เลือกค่า aspect ratio ได้ตามต้องการครับ
  • เมื่อเลือกค่าให้ Zoom เรียบร้อยแล้วคลิกที่ Ok
  • เราก็จะเหลือหน้าต่างอันแรก แล้วก็กด Convert ได้เลยครับพี่น้อง

Overcoming file size limits when uploading SQL files to phpMyAdmin

Ref: https://www.interspire.com/support/kb/questions/851/Overcoming+file+size+limits+when+uploading+SQL+files+to+phpMyAdmin

If you find that you are unable to upload your backed-up SQL file to phpMyAdmin because the file is too large (even after zipping it) there are four options you could try:

1) Using a better compression algorithm

Zip is fairly good but there are better alternatives. GZip and BZip2 are good choices that should give you considerably lower file sizes (and phpMyAdmin understands them too). If you need a utility that can compress to gzip or bzip you could try 7zip.


2) Increasing the maximum file size phpMyAdmin will accept

If the limitation you are running into is a limit on the size of file uploads on your system, you may be able to increase this limit. By default it's usually 2M or 8M. To increase it you need to change PHP settings. You can change these settings either system-wide (if you have permission) or locally. The settings to change (with their typical defaults are):

post_max_size = 8M
upload_max_filesize = 2M

You must ensure that post_max_size is the same or larger than upload_max_filesize.
  • These settings can be changed globally by changing them in your php.ini file (its location varies depending on your system). After changing the settings, remember to restart your web server.
  • You may be able to change these settings locally if you're using Apache by putting a ".htaccess" file in phpMyAdmin's directory. The contents of the file should be:
php_value post_max_size 20M
php_value upload_max_filesize 20M

Change '20M' to however large you want it to be. You shouldn't need to restart the web server for these changes to take effect, but if you start getting Internal Server Errors (500) then this probably means your host does not allow you to change these settings and you need to remove those settings.


3) Splitting up the file

This is quite tricky, but you could split the file into smaller pieces, compress each piece, and then load them in one after the other. You may need to be familiar with SQL to do this safely, and editing large files can be problematic depending on your system speed and text editor.


4) Importing the SQL file another way

If you have a Unix/Linux server and have SSH access to it then you can use the `mysql' command line program to import the file like so:

mysql -u myuser -p mydatabase < myfile.sql

This will prompt you for the password for `myuser' and then import the SQL from myfile.sql. Obviously you will need to have uploaded myfile.sql through FTP or similar. Ideally you would compress myfile.sql, upload it, uncompress it and then import using the command above.

Thursday, October 1, 2015

Enable public_html Ubuntu 14.04

  • หลังจากใช้ Ubuntu 14.04 Server มาพักหนึ่ง (ลงแอพสำหรับ server เกือบทุกอย่างแล้ว)
  • อยากให้ user ใช้ home ของแต่ละท่านเป็น web root (~user)
  • แต่ค่าเริ่มต้นของ apache สำหรับ Ubuntu ตัวนี้มันไม่เปิดมาให้หว่าต้องเปิดคอนฟิกใช้เอง
Solved
  • เปิดใช้งาน module โดยคำสั่ง
sudo a2enmod userdir
  • จากนั้นเปิดไฟล์ /etc/apache2/mods-available/php5.conf เพื่อเปิดแก้ไข
  • บรรทัดประมาณ 25 ให้เราคอมเม้นบรรทัดนี้ซะจะได้เป็นประมาณนี้
# php_admin_flag engine Off
  • จากนั้น restart apache ให้เรียบร้อย
sudo service apache2 restart
  • สุดท้ายอย่างลืมสร้าง /home/user/public_html พร้อมตั้งค่าการเข้าถึง
mkdir ~/public_html && chmod 705 ~/public_html
  • สร้างไฟล์ทดสอบ
echo "<?php phpinfo(); ?>" > ~/public_html/info.php
  • ทดสอบประมาณนี้
http://site/~user/info.php
อ้างอิง
  • http://www.server-world.info/en/note?os=Ubuntu_14.04&p=httpd&f=5
  • http://ubuntuserverguide.com/2012/10/how-to-enable-and-configure-apache2-userdir-module-in-ubuntu-server-12-04.html

Embedding Google Drive folder in a post or page HTML

  • Google Drive folders can be embedded and displayed in list and grid views:
  • List View
<iframe src="https://drive.google.com/embeddedfolderview?id=FOLDER-ID#list" width="800" height="600" frameborder="0"></iframe>
  • Grid View
<iframe src="https://drive.google.com/embeddedfolderview?id=FOLDER-ID#grid" width="800" height="600" frameborder="0"></iframe>
Add

  • if folder in google drive empty
  • webpage it not show emty folder

Ref
  • http://help.realsmart.co.uk/embedding-a-google-drive-folder-in-a-post-or-page/
  • https://www.youtube.com/watch?v=1xRZXrEPEIA
  • http://www.jbfarrow.com/thought-stream/howtoembedgoogledrivefolders

Popular Posts