D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
novonote
/
adm
/
Filename :
baixar_contratoDOCX.php
back
Copy
<?php session_start(); var_dump($_SESSION['docx_gerado']; die; $arquivo = $_SESSION['docx_gerado'] ?? null; if (!$arquivo || !file_exists($arquivo)) { echo "❌ Arquivo DOCX não encontrado."; exit; } if (ob_get_length()) { ob_end_clean(); } header('Content-Description: File Transfer'); header('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document'); header('Content-Disposition: attachment; filename="' . basename($arquivo) . '"'); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($arquivo)); readfile($arquivo); exit;