Passa ai contenuti principali

Post

sc-win32-status nei log ?

Cosa vorrà mai dire sc-win32-status nei log W3C Extended su IIS ? 0: Operazione completata. 2: Impossibile trovare il file specificato. 3: Impossibile trovare il percorso specificato. 32: Impossibile accedere al file. Il file è utilizzato da un altro processo. 64: Il nome di rete specificato non è più disponibile. 1236: Connessione in rete terminata dal sistema locale. altre spiegazioni con: net helpmsg id_sc-win32-status ciao /m

W3C Extended Log File Format su IIS

Queste sono le intestazioni di un log nel formato W3C Extended su IIS: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) cs(Referer) sc-status sc-substatus sc-win32-status Per fare copia-incolla in un Excel: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) cs(Referer) sc-status sc-substatus sc-win32-status ciao /m

Errore 403.2 con IIS ?

Domanda : perchè vien fuori un errore 403.2 su IIS ? Magari dopo che hai fatto girare l'impostazione guidata delle autorizzazioni... Magari dopo che hai installato PHP... Risposta: perchè non c'è "lettura" nelle impostazioni del sito web (tab Home directory ). ciao /m

Resettare la password di MySQL su Windows, senza averla

Può succedere di perdere la password di MySQL su Windows :-0 Non è un problema, con questa procedura se ne può forzare un'altra. 1. Stoppare l'eventuale servizio di MySQL 2. Far partire MySQL senza grant tables Andare nella directory bin di MySQL e da DOS farlo partire in questo modo: mysqld --skip-grant-tables Questa finestra rimarrà aperta e come bloccata. 3. Entrare in MySQL mysql --user=root mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.0.45-community-nt MySQL Community Edition (GPL) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. 4. Impostare la nuova password (nell'esempio: "mazzullami") mysql> update user set Password=PASSWORD(' mazzullami ') WHERE User='root'; Query OK, 2 rows affected (0.05 sec) Rows matched: 2 Changed: 2 Warnings: 0 5. Aggiornare le tabelle mysql> flush privileges; Query OK, 0 rows affected (0.02 sec) 6. Uscire ...