mysqldump -u root -p databasename > /var/www/html/lospol_3172019.sql
Shopify, Shopify Apps, Magento, WordPress, Codeigniter, Joomla, Big Commerce | PHP
Showing posts with label cmd. Show all posts
Showing posts with label cmd. Show all posts
Wednesday, 31 July 2019
How to export database from terminal / CMD in mysql
Thursday, 18 July 2019
How to run composer install in another PHP version
How to tell Composer to use Different PHP Version
#ea-php72 /opt/cpanel/composer/bin/composer installYou can get list of php by using following command
# ls /usr/bin/ | grep php
Thursday, 12 April 2018
How to Find / Search a file using CMD / Terminal Command Linux Ubuntu
1. Find file from computer using CMD / Terminal Command
sudo find / -name index.php2. Find file from Specific Directory using CMD / Terminal Command
sudo find /var/www/html/ -name index.php
Monday, 23 January 2017
How to import Big SQL file usign PHP with shell command into hosting server
<?php
error_reporting(E_ALL ^ E_NOTICE);
ini_set('display_errors', 1);
ini_set('memory_limit', '512M');
$dbinfo = array(
"host" => 'localhost',
"user" => 'magentom_jaydip',
"pass" => 'rmO22RQ%UbW0',
"dbname" => 'magentom_jaydip'
);
// Database Config
$sqlhost = $dbinfo["host"];
$dbuser = $dbinfo["user"];
$dbpassword = $dbinfo["pass"];
$dbname = $dbinfo["dbname"];
// filename
$file = "mg_jaydip.sql";
shell_exec("mysql -u $dbuser --password='$dbpassword' --host='$sqlhost' $dbname < $file");
echo 'Finished!<br/>';
?>
error_reporting(E_ALL ^ E_NOTICE);
ini_set('display_errors', 1);
ini_set('memory_limit', '512M');
$dbinfo = array(
"host" => 'localhost',
"user" => 'magentom_jaydip',
"pass" => 'rmO22RQ%UbW0',
"dbname" => 'magentom_jaydip'
);
// Database Config
$sqlhost = $dbinfo["host"];
$dbuser = $dbinfo["user"];
$dbpassword = $dbinfo["pass"];
$dbname = $dbinfo["dbname"];
// filename
$file = "mg_jaydip.sql";
shell_exec("mysql -u $dbuser --password='$dbpassword' --host='$sqlhost' $dbname < $file");
echo 'Finished!<br/>';
?>
Thursday, 22 September 2016
Adding an existing project to GitHub /Bitbucket using the command line
1. Create a new repository on GitHub. To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub.
2. Open Terminal.
3. Change the current working directory to your local project.
4. Initialize the local directory as a Git repository.
5. Add the files in your new local repository. This stages them for the first commit.
6. Commit the files that you've staged in your local repository.
7. At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.
8. In Terminal, add the URL for the remote repository where your local repository will be pushed.
9. Push the changes in your local repository to GitHub.
2. Open Terminal.
3. Change the current working directory to your local project.
4. Initialize the local directory as a Git repository.
$ git init
5. Add the files in your new local repository. This stages them for the first commit.
$ git add .
# Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
6. Commit the files that you've staged in your local repository.
$ git commit -m "First commit"
# Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
7. At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL.
8. In Terminal, add the URL for the remote repository where your local repository will be pushed.
$ git remote add origin remote repository URL
# Sets the new remote
$ git remote -v
# Verifies the new remote URL
9. Push the changes in your local repository to GitHub.
$ git push origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin
Subscribe to:
Posts (Atom)