[Solved] ArchiCAD “Error cannot create temporary documents”

I have to work with software ejecta named ArchiCAD (it’s not that bad, but i am so sick and tired of my job lol) and once in a while you get the following message:

"Error cannot create temporary documents"

It can be fixed easily by doing the following:

  1. Go to the drive where you are storing the USERS folder.
  2. Open the user’s folder
  3. Open the Graphisoft folder
    —> So basically “C:\Users\USERNAME\GRAPHISOFT”
  4. You will see the following folders:Screenshot of the graphisoft folder showing a large number of autosave folders.
  5. Delete all those AutoSave-xx-xx folders except for the most recent one which is just named AutoSave-xx (xx for the version of your archicad software) In my case, the total amount of data in these folders was 85Gb. That’s Eighty-Five Gigabyte…..

Done, ArchiCAD will now start again.

 

Loading

How to correct the Themler crash after updating to Joomla 3.9

If you updated to the latest version and the following error appears when you try to launch Themler please follow the instruction below:

Fatal error: require_once(): Failed opening required '[...]/administrator/includes/toolbar.php' (include_path='.:/usr/lib/php7.2') in [...]/templates/[theme_name]/app/index.php on line 25

  1. Open theme folder on the server: www/Joomla_directory/templates;
  2. open /app folder;
  3. open index.php for editing in any html or text editor;
  4. find the line
    require_once JPATH_BASE . DS . 'includes' . DS . 'toolbar.php';
    and replace it with the following line:
    $prefix = version_compare(JVERSION, '3.9', '>=') ? 'sub' : '';
    require_once JPATH_BASE . DS . 'includes' . DS . $prefix . 'toolbar.php';
  5. open /app/start folder;
  6. open data.php file for editing and follow step 4;
  7. open manifest.php file for editing and follow step 4;
  8. start Themler.

Loading