Skip to content

Instantly share code, notes, and snippets.

View bilalyilmax's full-sized avatar

Bilal YILMAZ bilalyilmax

View GitHub Profile
@bilalyilmax
bilalyilmax / symfony-2-update.md
Last active November 19, 2022 12:04
Symfony 2 Güncelleme

Hosting kullanıcısıyla ssh'a bağlanıp, Symfony dizinine gir;

Github'dan güncel kodların çekilmesi

eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
git pull origin master

Eğer yeni php kütüphanesi eklenmiş ise; (çok nadir gerekir)

SET @oldsite='http://oldsite.com';
SET @newsite='http://newsite.com';
UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite);
UPDATE wp_links SET link_url = replace(link_url, @oldsite, @newsite);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite, @newsite);
/* only uncomment next line if you want all your current posts to post to RSS again as new */
#UPDATE wp_posts SET guid = replace(guid, @oldsite, @newsite);
@bilalyilmax
bilalyilmax / country.php
Last active September 15, 2015 15:20 — forked from berkayunal/country.php
Türkçe Ülke Kodları (ISO 3166-1) Alpha-2
<?php
$lang['country_AF'] = 'Afganistan';
$lang['country_DE'] = 'Almanya';
$lang['country_AD'] = 'Andorra';
$lang['country_AO'] = 'Angola';
$lang['country_AG'] = 'Antigua ve Barbuda';
$lang['country_AR'] = 'Arjantin';
$lang['country_AL'] = 'Arnavutluk';
$lang['country_AW'] = 'Aruba';
$lang['country_AU'] = 'Avustralya';