Archivio

Archivio per ottobre 2009

Ripristinare grub

31 ottobre 2009 Nessun commento
sudo grub
find boot/grub/stage1 -> (la risposta sarà hdx,y)
root (hdx,y)
setup(hdx)
quit
Categorie:Linux Tag:

Web Server su Mac 10.5.7

20 ottobre 2009 Nessun commento
  • Abilitare Apache 2:
    “Preferenze di Sistema -> Condivisione” Spuntare “Condivisione Web”.
  • Abilitare PHP 5.2.8:
    Digitare nel terminale:
    cd /etc/apache2
    sudo vim httpd.conf

    Con l’editor Vim trasformare la stringa

    #LoadModule php5_module        libexec/apache2/libphp5.so

    in

    LoadModule php5_module        libexec/apache2/libphp5.so
Categorie:Web Server Tag:

Call of Duty 4 Mod Tools

17 ottobre 2009 Nessun commento

Scaricare Call of Duty 4 Mod Tools e scompattare nella cartella di installazione del gioco.

Categorie:Cod4 Tag:

array_slice

9 ottobre 2009 Nessun commento

Recupera una parte di un array:

array array_slice  ( array $array  , int $offset  [, int $length  [, bool $preserve_keys = false  ]] )
Categorie:PHP Tag: