I got this error in sugarcrm.log today when I was trying to use module builder :S :S
Sun Sep 27 09:59:03 2015 [5122][d8df4cd7-da1f-b3cb-99f1-543e2bd115e0][FATAL] ERROR: rmdir_recursive(): argument cache/upgrades/temp/4rjskA is not a file or a dir.
Depending on the Host’s settings, the next 2 may differ but:
Change: ‘user’ => Enter the User that will own the Instance
Change: ‘group’ => Enter the Group of the user.
Also, What permissions have you set for the files/directories of the Instance?
Then try entering in both: ‘user’ => ‘www-data’
‘group’ => ‘www-data’
in the config.php
Open terminal and cd into your project directory. i.e: cd /var/www/{project}
sudo chown -R www-data:www-data .
sudo chmod -R 755 .
sudo chmod -R 775 cache custom modules themes data upload config_override.php
Turn on PHP Error Reporting and see if any errors show on the white screen.
If the error is similar to: Parse error: syntax error, unexpected ‘,’ in \vardefs.php
Go to the file it states and look for inline_edit=>
and change it to ‘inline_edit’=>true,
If this is not the message then inform us of the error message.
Hi,
Could you try putting the following in the index.php file in your SuiteCRM Instance? ini_set(‘display_errors’,1);
ini_set(‘error_reporting’,E_ALL ^ E_STRICT);
This will allow errors that aren’t about Strict Standards to show throughout the CRM, until removed.
Also, When on this white screen, are there any JS errors in the browser console? (CTRL+SHIFT+K) to open on Firefox
Did this issue begin to occur when you Deployed the custom module?
If you go into /modules//vardefs.php and look for the line that contains:
inline_edit=>
Is it set to true or another value?
If it simply blank or set to something like a comma, then set it to
‘inline_edit’=>true,
Good to hear.
It may be worth your time to Upgrade to 7.3.1 so this issue doesn’t occur again.
You will also have to re-create this Module from scratch in 7.3.1 if you ever wish to deploy it again, as it will still have this issue due to it being created in SuiteCRM v7.3
I have done the upgrade to 7.3.1 and deleted the module , although I didn’t finish the building or customization before as the CRM got down when I clicked publish , I will create the module again soon.