memo.xight.org

日々のメモ

VMWare Fusion の仮想マシン上の Windows で Apple USB Super Drive を使う

Summary

VMWare Fusion 5.0.4 の仮想マシン上のWindows8.1で
Apple USB Super Drive を使おうとすると、
以下のエラーメッセージが表示される。

The

The "Apple MacBook Air SuperDrive" device requires installation of the
Apple Boot Camp driver disc in the virtual machine.

対策

Boot Camp Support Software 内の以下ファイルを
仮想マシン上のWindowsにインストールする。

/BootCamp/Drivers/Apple/AppleODDInstaller64.exe

Reference

Apple - Support - Downloads - Boot Camp Support Software
http://support.apple.com/downloads/#boot%20camp%20support%20software

USB Superdrive compatibility? | VMware Communities
https://communities.vmware.com/thread/463971

Drupal Webform 3.19 の Resend e-mails で "You must select at least one email address to resend submission."

Summary

Webform 3.19 の Resend e-mails で
"You must select at least one email address to resend submission." というエラーが発生し、
メールの再送が行えない問題の解決方法。

webform/includes/webform.submissions.inc の 453行目から456行目

$form['actions']['resend'] = array(
	'#type' => 'submit',
	'#value' => t('Resend e-mails'),
	);


$form['actions']['sendemail'] = array(
	'#type' => 'submit',
	'#value' => t('Resend e-mails'),
	);


Reference

Resend e-mails [#2152409] | Drupal.org
https://drupal.org/node/2152409