MS Word – Jak jednoduše odemknout docx dokument

   změnit příponu .DOCX na .ZIP otevřít archiv ve složce word najít soubor settings.xml v něm najít a smazat tag <w:documentProtection … atributy … „/> změnit příponu .ZIP na .DOCX

nette – setHeader() – Stáhnot soubor pod jiným jménem

  /*  $file = informace o souboru, např. z $_FILE  */ public function getDoc($file)     { $handle = fopen($file[„FULLNAME“], „rb“);    $content = fread($handle, $file[„FSIZE“]);    fclose($handle);    $httpResponse = $this->getHttpResponse();    $httpResponse->setContentType($file[„MIME_TYPE“]);     $httpResponse->setHeader(‚Pragma‘, „public“);    $httpResponse->setHeader(‚Expires‘, 0);   …