MacFan View RSS

Tout sur le web et le développement
Hide details



Arduino 11 Sep 2024 7:30 AM (6 months ago)

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Installer un VPS sous debian 7 11 Sep 2024 7:02 AM (6 months ago)

Installer un VPS de base :

aptitude install nginx
vi /etc/nginx/sites-available/default

modifier ces lignes pour que les fichiers php soient pris en compte, notamment le index.php :

root /usr/share/nginx/www;
index index.html index.htm index.php;

location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;

}

aptitude install mysql-server
aptitude install php5-fpm php5-mysql
vi /etc/php5/fpm/php.ini

On redemarre
/etc/init.d/nginx restart
/etc/init.d/php5-fpm restart

On installe phpmyadmin
aptitude install phpmyadmin
php5enmod mcrypt
ln -s /usr/share/phpmyadmin /usr/share/nginx/html

et on redémarre
/etc/init.d/php5-fpm restart

On installe un serveur ftp :

aptitude install pure-ftp

Maintenant on peut se connecter au serveur avec les comptes utilisateurs

Très pratique pour convertir vos .htaccess en config pour nginx :
http://winginx.com/en/htaccess

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

SSL gratuit 11 Sep 2024 7:01 AM (6 months ago)

https://certbot.eff.org/#debianstretch-apache

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Comment fonctionne un ChatBot avec de la NLP 17 Aug 2017 4:21 AM (7 years ago)

Qu’est ce qu’un chatBot? C’est un programme avec qui vous discutez sur Facebook / twitter ou n’importe quel canal. Il peut être programmé pour faire différentes choses, vous donnez les horaires de train, commander un produit ou simplement vous faire découvrir un produit.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Migration de Joomla à WordPress 17 Aug 2017 12:18 AM (7 years ago)

C’est une migration qui devient de plus en plus courant. WordPress étant plus populaire, et de mon point de vue, plus robuste que Joomla.

On peut récupérer l’ensembles des articles, utilisateurs, commentaires, images et même les forums si vous utilisez Kunena.

C’est une migration pas facile à réaliser. Si vous avez besoin de quelqu’un pour vous aider, n’hésitez pas à me contacter !

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Installation de Python 3 et Django 14 Oct 2015 2:43 AM (9 years ago)

Django est un framework Python pour écrire des applications web.
On va voir comment installer ces 2 outils.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

[objective-c] Ibeacons et iphone 28 Sep 2015 1:27 AM (9 years ago)

Les ibeacons sont des petits émetteurs bluetooth qui peuvent être détecter par une application et enclencher des actions. Ils ont un UUID et 2 valeurs, major et minor.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Vidéos 23 Jul 2015 5:30 AM (9 years ago)

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Framework Ionic 23 Jul 2015 4:51 AM (9 years ago)

Ionic est un mélange de technos pour développer des applications mobiles hybrides rapidement et facilement.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

CodeIgniter et Nginx 2 Jan 2015 4:25 AM (10 years ago)

Une petite astuce pour faire fonctionner le rewrite avec nginx
Dans votre fichier de conf rajouter ces lignes :

location ~* ^/(assets|files|robots\.txt) { }
location / {
try_files $uri $uri/ /index.php?/$request_uri;
}

Et voilà 🙂

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?