Administrateur

Installation du YII2 2.0.12

Installation du YII2 2.0.12 1/ Répertoire de travail. [~] ➔ mkdir -p YII [~] ➔ cd YII/ [~/YII] ➔ 2/ Installation de ‘composer’. [~/YII] ➔ curl -s http://getcomposer.org/installer | php All settings correct for using Composer Downloading… Composer (version 1.4.2) successfully installed to: /home/util01/YII/composer.phar Use it: php composer.phar [~/YII] ➔ 3/ Installation des ‘assets’. [~/YII] […]

Installation de Zend Framework 1.12.20 sur une instance Simple Hosting

Installation de Zend Framework 1.12.20 sur une instance Simple Hosting. 1/ Répertoire de travail. ➜ ~ mkdir ZEND ➜ ~ cd ZEND 2/ Téléchargement du Zend. ➜ ZEND wget https://packages.zendframework.com/releases/ZendFramework-1.12.20/ZendFramework-1.12.20.tar.gz 3/ Décompression de l’archive. ➜ ZEND tar xvfz ZendFramework-1.12.20.tar.gz 4/ Initialisation d’un projet Zend. ➜ ZEND ZendFramework-1.12.20/bin/zf.sh create project quickstart Creating project at /home/sam/ZEND/quickstart Note: […]

Installation de PHP 5.6 pour Ubuntu 14.04 LTS

Installation de PHP 5.6 pour Ubuntu 14.04 LTS. $ sudo add-apt-repository ppa:ondrej/php $ sudo apt-get update $ sudo apt-get -y install php5.6 php5.6-mcrypt php5.6-mbstring php5.6-curl php5.6-cli php5.6-mysql php5.6-gd php5.6-intl php5.6-xsl php5.6-zip $ php -v PHP 5.6.30-12~ubuntu14.04.1+deb.sury.org+1 (cli)

CRUD avec Symfony 3

CRUD avec Symfony 3. 1/ Répertoire de travail. [~] ➔ mkdir -p GITHUBAPI [~] ➔ cd GITHUBAPI/ [~/GITHUBAPI] ➔ 2/ Initilisation du projet Symfony. [~/GITHUBAPI] ➔ symfony new gitgame1 … Downloading Symfony… … Preparing project… … [~/GITHUBAPI] ➔ 3/ Lancement du serveur. [~/GITHUBAPI] ➔ cd gitgame1/ [~/GITHUBAPI/gitgame1] ➔ php bin/console server:start [OK] Server listening on […]

Installation de Owncloud sur une instance Simple Hosting et connexion WebDAV

Installation de Owncloud sur une instance Simple Hosting et connexion WebDAV Instance Simple Hosting : PHP 5.6 / MySQL 5.5 Taille : S 1/ Via la page d’information de votre instance, créer un hôte virtuel avec comme sous-domaine : nuage Soit : nuage.espace-bidouilleur.fr Lien : https://wiki.gandi.net/fr/simple/shs-dns_config/instance 2/ Connexion sur l’instance via la console d’urgence. ➜ […]

Mise-à-jour Mastodon v1.4.1

Mise-à-jour Mastodon v1.4.1 Suivre le didacticiel : Mise-à-jour d’une instance Mastodon vers la version stable v1.2 1/ Erreur. mastodon@server01mas:~/live$ gem install rails … Failed to locate protobuf … An error occurred while installing cld3 (3.1.2), and Bundler cannot continue. Make sure that `gem install cld3 -v ‘3.1.2’` succeeds before bundling. Solution : # apt-get install pkg-config […]

[Minetest] [Mod] Drone

[Minetest] [Mod] Drone Github : https://github.com/Nekrofage/drone

Programmation de Pouêt pour Mastodon

Programmation de Pouêt pour Mastodon. 1/ Répertoire de travail. [~] ➔ mkdir MASTONDON [~] ➔ cd MASTONDON/ [~/MASTONDON] ➔ [~/MASTONDON] ➔ sudo su [sudo] password for util01: root@station:/home/util01/MASTONDON# 2/ Installation de Virtualenv. root@station:/home/util01/MASTONDON# pip install virtualenvwrapper Downloading/unpacking virtualenvwrapper Downloading virtualenvwrapper-4.7.2.tar.gz (90kB): 90kB downloaded … Successfully installed virtualenvwrapper virtualenv-clone stevedore six pbr Cleaning up… 3/ Répertoire […]

[Minetest] Prometheus model 3d

[Minetest] Prometheus model 3d. Fichier original Thingiverse : http://www.thingiverse.com/thing:2238598 Fichier ‘.obj’ 3d: prometheus.obj.tar.gz Fichier ‘world’ pour Minetest : prometheus.tar.gz

[Minetest] Ajout d’une ‘custom entity’ en voxel

[Minetest] Ajout d’une ‘custom entity’ en voxel. Distribution de travail : Ubuntu 16.04 LTS 64 bits 1/ Répertoire de travail. util01@station02:~$ mkdir -p JEUX/MINETEST/VOXEL util01@station02:~$ cd JEUX/MINETEST/VOXEL/ util01@station02:~/JEUX/MINETEST/VOXEL$ 2/ Installation du mod ‘Custom Entity‘. – Téléchargement du code source : util01@station02:~$ cd JEUX/MINETEST/minetest/mods/ util01@station02:~/JEUX/MINETEST/minetest/mods$ git clone https://github.com/Nekrofage/customentity.git 3/ Téléchargement d’un exemple : Tie Fighter. util01@station02:~/JEUX/MINETEST/minetest/mods$ […]