ผงธาตุอาหารสำหรับเตรียม STOCK ปุ๋ย A และ ปุ๋ย B สูตร KMITL3 สำหรับ คะน้า กวางตุ้ง ผักกาดขาว สลัด ผักบุ้ง ฯลฯ เตรียมได้ 1,000 ลิตร (เตรียมสต็อค 1:200 ได้ขวดละ 5L) สูตรสารละลาย(ปุ๋ย) ที่ใช้จะเป็นสูตรKMITL3 ที่สามารถเตรียมสารละลายเข้มข้น 200 เท่าได้จำนวนอย่างละ 5 ลิตร มีองค์ประกอบดังนี้

สต็อค A

Ca(NO3)2.4H2O แคลเซี่ยมไนเตรท สูตรปุ๋ย(12-0-0) = 1.063kg

Fe-EDTA เหล็กคีเลต (12 % Fe) = 37.5g

สต็อค B

KNO3 โปแตสเซี่ยมไนเตรท สูตรปุ๋ย(13-0-46) = 750g

KH2PO4 โมโนโปแตสเซี่ยมฟอสเฟต สูตรปุ๋ย(0-52-34) = 125g

NH4H2PO4 โมโน แอมโมเนียมฟอสเฟต สูตรปุ๋ย(12-60-0) = 125g

MgSO4 แมกนีเซี่ยมซัลเฟต = 475g

Nicspray นิคสเปรย์ (ธาตุอาหารรอง) = 25g

Read More

I’ve got the Windows server blues…

This solution is based on this WordPress.org thread.

PROBLEM

When you try to update WordPress or install plugins, the downloader / installer page pops up, the compressed file is downloaded to your server, but installation fails because of this error:

PCLZIP_ERR_MISSING_FILE (-4) : Missing archive file ‘C:\Windows\TEMP/{whatever you were installing}.tmp’

SOLUTION

You need to access the files on your server via FTP. If you haven’t done this before, there are tutorials out there. Short version: find the FTP access details for your server, and grab FileZilla FTP Client. Or if your hosting provides a File Manager utility, use that.

On your server, navigate to the /wp-content folder. Create a new folder inside it called TEMP.

Download /wp-config.php from your server to your computer. Open it up in a text editor, and beneath

if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');

add the line

define('WP_TEMP_DIR', ABSPATH . 'wp-content/TEMP');

then save wp-config.php. Upload it to your server again.

Try updating WordPress or installing a plugin. It should work now.

The other solution is not to use Windows hosting!