Pubblicato il 26/9/2010 alle 21:30 da Alessandro Bondi
Ecco la regolina XML da mettere nel web.config del sito Joomla per attivare le url seo friendly: <rewrite> <rules> <rule name=”Joomla” enabled=”true”> <match url=”(.*)” ignoreCase=”false” /> <conditions logicalGrouping=”MatchAll”> <add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” pattern=”" ignoreCase=”false” /> <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” pattern=”" ignoreCase=”false” /> <add input=”{SCRIPT_NAME}” negate=”true” pattern=”^/index.php” ignoreCase=”false” /> <add input=”{SCRIPT_NAME}” pattern=”(/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$” /> </conditions> <action type=”Rewrite” url=”index.php” /> </rule> </rules> </rewrite>
Pubblicato in Tips&Tricks | Commenti (0)
Pubblicato il 21/9/2010 alle 07:58 da Alessandro Bondi
Ieri provavo ad aggiornare i plugin di wordpress ma niente da fare, continuava a darmi questo messaggio d’errore. Scaricamento fallito.: 200: Operation timed out after 1 seconds with 0 bytes received. Tra l’altro mi sono accorto che lo stesso messaggio appariva nella dashboard. San Google ha risolto il mio problema, grazie a questo post: WordPress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it I opened wp-admin/wpmu-upgrade-site.php and wp-includes/http.php function &_getTransport( $args = array() ) { on line number 94 of wp-includes/http.php, wordpress tests different http request methods exist on your server [...]
Pubblicato in Tips&Tricks | Commenti (0)
Pubblicato il 9/5/2009 alle 07:13 da Alessandro Bondi
LINUX / MAC OSX find . -name .svn -print0 | xargs -0 rm -rf fonte: http://www.xnovo.it/2009/01/eliminare-le-cartelle-svn-da-un-progetto/ find . -type d -name .svn -depth -exec rm -rf {} \; fonte: http://blog.m1k.info/come-cancellare-cartelle-svn/ WINDOWS (file di registro per aggiunta voce al menu contestuale) Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN] @=”Delete SVN Folders” [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command] @=”cmd.exe /c \”TITLE Removing SVN Folders in %1 && COLOR 9A && FOR /r \”%1\” %%f IN (.svn) DO RD /s /q \”%%f\” \”” fonte: http://weblogs.asp.net/jgalloway/archive/2007/02/24/shell-command-remove-svn-folders.aspx
Tag: subversion
Pubblicato in Tips&Tricks | Commenti (0)
Pubblicato il 25/9/2008 alle 09:38 da Alessandro Bondi
L’alternativa al tasto STAMP in OSX è questa combinazione di tasti: Mela+CTRL+Shift+3
Pubblicato in Tips&Tricks | Commenti (0)