[Vtigercrm-commits] [vtiger-commits] r11037 - /vtigercrm/branches/5.0.3/install/5createTables.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Fri May 25 03:42:58 EDT 2007
Author: saraj
Date: Fri May 25 01:42:52 2007
New Revision: 11037
Log:
Permission denied message in last step of installation.Fixes #3279
Modified:
vtigercrm/branches/5.0.3/install/5createTables.php
Modified: vtigercrm/branches/5.0.3/install/5createTables.php
==============================================================================
--- vtigercrm/branches/5.0.3/install/5createTables.php (original)
+++ vtigercrm/branches/5.0.3/install/5createTables.php Fri May 25 01:42:52 2007
@@ -99,6 +99,10 @@
//this is to rename the installation file and folder so that no one destroys the setup
$renamefile = uniqid(rand(), true);
+//Added to give permission to move install directory/file
+ at chmod("install/",0777);
+ at chmod("install.php",0777);
+
//@rename("install.php", $renamefile."install.php.txt");
if(!rename("install.php", $renamefile."install.php.txt"))
{
More information about the vtigercrm-commits
mailing list