[PrestaShopException]

/var/www/html/cache/class_index.php is not writable, please give write permissions (chmod 666) on this file.
at line 133 in file classes/Autoload.php

127. 		$content = '<?php return '.var_export($classes, true).'; ?>';
128. 
129. 		// Write classes index on disc to cache it
130. 		$filename = $this->root_dir.Autoload::INDEX_FILE;
131. 		if ((file_exists($filename) && !is_writable($filename)) || !is_writable(dirname($filename)))
132. 			throw new PrestaShopException($filename.' is not writable, please give write permissions (chmod 666) on this file.');
133. 		else
134. 		{
135. 			// Let's write index content in cache file
136. 			// In order to be sure that this file is correctly written, a check is done on the file content
137. 			$loop_protection = 0;