Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
<?php | |
// This example uses a fork of the OAuthSimple library for PHP | |
// found here: https://github.com/tonefolder/oauthsimple/tree/master/php | |
// | |
// For more information about the OAuth process for applications | |
// accessing Discogs API, read: | |
// http://www.discogs.com/developers | |
require 'oauth.php'; | |
$oauthObject = new OAuthSimple(); | |
$scope = 'http://api.discogs.com'; |
:: UPDATE YUM :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
sudo yum update -y | |
:: INSTALL WEBSERVER ::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
sudo yum install httpd24 | |
sudo service httpd start | |
sudo chkconfig httpd on | |
chkconfig --list httpd |
## Coller la totalite dans champs SQL de phpMyAdmin ## | |
## ATTENTION A NE PAS METTRE DE SLASH A LA FIN DES URL ## | |
# CHANGER URL DU SITE | |
UPDATE wp_options | |
SET option_value = REPLACE(option_value, 'http://www.vieuxsite.fr', 'http://www.nouveausite.fr') | |
WHERE option_name = 'home' |