Autor: Dante Testa
Data: 29/11/2024
Versão: 1.0.0
Autor: Dante Testa (https://dantetesta.com.br)
Data: 2025-10-25
Versão: 1.0
Projeto: ZAPX - Sistema de Disparo em Massa
Documentação técnica para extração de texto de imagens e PDFs usando GPT-4 Vision
Autor: Dante Testa
Data: 01/12/2024
Versão: 1.0
Autor: Dante Testa
Data: 24/11/2025
Versão: 1.0.0
Autor: Dante Testa (https://dantetesta.com.br)
Data: 2025-01-13
Versão: 1.0
Este documento foi criado após resolver todos os problemas reais de integração com Bunny.net. Siga EXATAMENTE estas instruções para evitar erros comuns.
Autor: Dante Testa
Versão: 1.0
Data: 07/10/2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| /* | |
| AUTOR: DANTE TESTA | |
| FUNÇÃO: PESQUISA CEP NA API VIA CEP + CONCATENAÇÃO DE ENDEREÇO | |
| DATA: 18/05/2023 | |
| */ | |
| jQuery(document).ready(function($) { | |
| /*SETUP DE CAMPOS DO FORMULÁRIO - Altere com seus seletores abaixo! */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <IfModule mod_php.c> | |
| php_value upload_max_filesize 1000M | |
| php_value post_max_size 1000M | |
| php_value max_file_uploads 100 | |
| </IfModule> | |
| O que cada uma faz: | |
| upload_max_filesize: define o tamanho máximo permitido para cada arquivo individual. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Desenvolvido por Dante Testa | |
| Aplique no container do título a class = .aba-titulo | |
| Aplique no container do conteudo a class = .aba-conteudo | |
| <script> | |
| jQuery(document).ready(function(){ | |
| jQuery(".aba-conteudo").hide(); | |
| jQuery(".aba-titulo").click(function(){ | |
| jQuery(this).next().slideToggle("fast"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Versão Atualizada 2025 --- | |
| // Adiciona uma nova coluna com o ID do usuário na tabela de usuários | |
| function show_id_user( $columns ) { | |
| $columns['user_id'] = 'ID'; | |
| return $columns; | |
| } | |
| add_filter( 'manage_users_columns', 'show_id_user' ); | |
| // Preenche a nova coluna com o ID do usuário |
NewerOlder