Menu

Filippo Toso Posts

Eliminazione veloce di directory con tanti file (es. node_modules)

Cosa ho imparato oggi: come eliminare velocemente una directory con tanti file (es. node_modules).

Salva questo file in FastDelete.reg, eseguilo per aggiungere il comando Fast Delete al tasto destro del mouse su una cartella.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\Fast Delete]
"Position"="Top"
"icon"="C:\\Windows\\explorer.exe"

[HKEY_CLASSES_ROOT\Directory\shell\Fast Delete\command]
@="\"C:\\Windows\\System32\\cmd.exe\" /Q /S /C \"echo DELETING... & DEL /F /Q /S \"%1\" > NUL & RMDIR /Q /S \"%1\"\""

Continua

Riavviare Apache su CentOS

Cosa ho imparato oggi: come riavviare Apache su CentOS:

## Start ##
service httpd start
## Stop ##
service httpd stop
## Restart ##
service httpd restart

Continua

Cercare file per contenuto in Linux

Cosa ho imparato oggi: come cercare file per contenuto in Linux.

grep --include=*.php -rnw '/path/to/somewhere/' -e "pattern"

Continua

events.js: 183 throw er; // Unhandled ‘error’ event

Cosa ho imparato oggi: come risolvere l’errore di Node.js: events.js: 183 throw er; // Unhandled ‘error’ event

rm -rf node_modules
rm package-lock.json yarn.lock
npm cache clear --force
npm install

Continua

Come far funzionare WordPress sotto Windows (IIS)

Cosa ho imparato oggi: come far funzionare i permalink di WordPress sotto Windows IIS.

E’ sufficiente salvare questo XML in un file web.config nella root del sito.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="wordpress" patternSyntax="Wildcard" stopProcessing="true">
                    <match url="*" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

Continua