cd /root/.ssh
ssh-keygen -t rsa
cat id_rsa.pub
If added old key manually then:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Excel to Mysql Insert</title> | |
| <script> | |
| function run() | |
| { | |
| var query=''; |
| <?php | |
| # wp-includes/wp-db.php | |
| /** | |
| * Determines the best charset and collation to use given a charset and collation. | |
| * | |
| * For example, when able, utf8mb4 should be used instead of utf8. | |
| * | |
| * @since 4.6.0 | |
| * @access public |
| <?php | |
| $refinements=array( | |
| 'Type' => array( | |
| 'Toppe', | |
| 'Bukser_og_Jeans' | |
| ), | |
| 'Size' => array( | |
| 'Extra_small', | |
| 'Small' |
| if ( $post->post_parent ) | |
| { | |
| wp_redirect( get_permalink( $post->post_parent ), 301 ); | |
| } | |
| else | |
| { | |
| wp_redirect( site_url(), 301 ) ); | |
| } | |
| die(); |
| <?php | |
| /////////////////////////////////////////////////// | |
| // STEP 1 - CREATE CLASS THAT WILL BE USED GLOBALY | |
| /////////////////////////////////////////////////// | |
| namespace App\MyApp; | |
| class MyApp { | |
| public function sayHello($data = []) | |
| { | |
| echo "Hello World from Facade!"; | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Excel to Mysql Insert</title> | |
| <script> | |
| function run() | |
| { | |
| var query=''; |
| <?php | |
| // Use in the "Post-Receive URLs" section of your GitHub repo. | |
| if ( $_POST['payload'] ) { | |
| shell_exec( 'cd /srv/www/git-repo/ && git reset --hard HEAD && git pull' ); | |
| } | |
| ?>hi |