我正在尝试使用C#中的Drush进行Drupal站点安装,这是使用MSI进行完整Windows Server站点安装的一部分。 我正在使用的Drush命令是以下命令。
C:\ProgramData\Drush\Drush.bat -y si application_name --db-url=sqlsrv://admin_name:password(local)\SQLEXPRESS:/database_name --account-name=admin --account-mail=name@test.com --account-pass=Password1234 --site-mail="admin@company.com" --site-name="Site Name" install_configure_form.site_default_country=GB install_configure_form.date_default_timezone="Europe/London"
当在工作目录(inetpub \ application_name)中从cmd.exe运行时,这非常有效。
当上述内容被放入代码并在安装过程中执行时会出现问题,并且总是会导致以下错误(每次都使用不同的文件名)。
无法解压缩C:\ ProgramData \ Drush \ lib \ druFD63.tmp.gz
用于执行命令的C#代码如下:
public static ActionResult Drush_Configuration(Session session)
{
string strArgs = "-y si application_name --db-url=sqlsrv://admin_name:password(local)\SQLEXPRESS:/database_name --account-name=admin --account-mail=name@test.com --account-pass=Password1234 --site-mail="admin@company.com" --site-name="Site Name" install_configure_form.site_default_country=GB install_configure_form.date_default_timezone="Europe/London";
string strExeCmd = @"C:\ProgramData\Drush\Drush.bat ";
strExeCmd = strExeCmd + strArgs;
string strLocation = @"C:\inetpub\application_name";
session.Log("Starting Drush Configuration");
session.Log("Command line is: " + strExeCmd + " " + strArgs);
int exitCode;
ProcessStartInfo processInfo;
Process process;
try
{
processInfo = new ProcessStartInfo("cmd.exe", "/c " + strExeCmd);
processInfo.WorkingDirectory = strLocation;
processInfo.WindowStyle = ProcessWindowStyle.Normal;
processInfo.CreateNoWindow = true;
processInfo.UseShellExecute = false;
// *** Redirect the output ***
processInfo.RedirectStandardError = true;
processInfo.RedirectStandardOutput = true;
process = Process.Start(processInfo);
process.WaitForExit();
// *** Read the streams ***
string output = process.StandardOutput.ReadToEnd();
string error = process.StandardError.ReadToEnd();
exitCode = process.ExitCode;
session.Log("output>>" + (String.IsNullOrEmpty(output) ? "(none)" : output));
session.Log("error>>" + (String.IsNullOrEmpty(error) ? "(none)" : error));
session.Log("ExitCode: " + exitCode.ToString(), "ExecuteCommand");
process.Close();
}
catch (Exception e)
{
session.Log("Error: " + e);
return ActionResult.Failure;
}
session.Log("Drush Configuration completed successfully");
return ActionResult.Success;
}
如上所述,这总是导致“无法解压缩”错误。
有没有人用过c#在Drush中运行Site-Install?有谁知道为什么这样做会以这种方式失败?
非常感谢任何想法或建议。
我正在使用Drush-5.8-2012-12-10-Installer-v1.0.20,Drupal 7和Windows Server 2008 R2 x64。
答案 0 :(得分:1)
此问题的原因是环境变量。 Drush MSI安装程序设置用户路径环境变量,这些变量在MSI机器上下文中无法识别 因此,通过将Drush,GnuWin32和PHP的系统路径变量添加到站点安装MSI,可以以编程方式安装站点。