Pada Adobe Dreamweaver, kita kadang menemui kesulitan untuk melakukan paste file besar atau code besar. Akan muncul warning bahwa kita melakukan importing file besar atau bahkan muncul error tidak bisa paste. Ini solusinya:
Buka,
C:\Program Files\Adobe\Adobe Dreamweaver CS3\configuration\Commands\InsertOfficeDoc.js
Edit bagian ini,
// The threshold where we should warn the user they are importing a big file 16 MM.od_WarnThreshold = 100000; // The threshold where we should not allow the user to import the file. 20 MM.od_MaxThreshold = 200000;
Edit sesuai nilai yang Anda nginkan misalnya jadi, // The threshold where we should warn the user they are importing a big file MM.od_WarnThreshold = 99999100000; // The threshold where we should not allow the user to import the file. MM.od_MaxThreshold = 99999200000;
Leave a Reply