Installing WordPress via SSH command line

Sometimes it is easier to install WordPress on your server without downloading it locally and then uploading it to your website.

1. Log in to the server via SSH.

ssh username@mondomain.ca -p 22

2. Change to mondomain.ca/public_html directory and download the file there.

cd /home/mondomain.ca/public_html

3. The newest version of WordPress is always available at http://wordpress.org/latest.tar.gz

wget http://wordpress.org/latest.tar.gz

4. Extract it.

tar -zxvf latest.tar.gz

5. Move all files and folders (*) to the folder above the one you are in.

mv wordpress/* ../

6. Remove wordpress folder and the downloaded file.

rm -r wordpress
rm latest.tar.gz

7. Rename wp-config-sample.php to wp-config.php.

mv wp-config-sample.php wp-config.php

8. Then we need to edit wp-config.php.

nano wp-config.php

9. Add DataBase databasename/username/password/host.

/** The name of the database for WordPress */
define(‘DB_NAME’, ‘database_name_here’);
/** MySQL database username */
define(‘DB_USER’, ‘username_here’);
/** MySQL database password */
define(‘DB_PASSWORD’, ‘password_here’);
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);

10. Create uploads folder and change chmod.

cd wp-content/
mkdir uploads
chmod 755 uploads/

11. Open mondomain.ca in browser, complete the installation, choose a username and password!

lynx http://mondomain.ca

12. Congrats!

WordPress Text Widget

Cum poţi să adaugi informaţie text sau HTML pe blog care are la bază platforma WordPress? Această întrebare apere în mailboxul meu cel puţin o dată pe săptămână.

Am răspuns la această întrebare de nenumărate ori şi pentru a nu pierde timpul de fiecare dată am decis ca să scriu acest post care are ca scop ajuarea blogeriilor să treacă uşor de această problemă.

deci:

  • Ne autentificăm pe blog cu numle ÅŸi parola pe care o avem;
  • Mergem la Design –> Widget (Appearance–> Widget pentru wp 2.7+);
  • aici vom găsi o listă cu widgeturi pe care le putem activa sau dezactiva, shimba cu locurile (stangă, dreapta daca avem un design cu 2 sau  mai multe coloane) sau putem schimba poziÅ£ia în sus sau jos.
  • Alegem Text Widget (după ce am făcut clic pe add wigetul va apărea în partea dreaptă) (imaginea 1);
  • Pregătim textul sau codul HTML, spre exemplu alegem codul unui buton al site-ului blogosfera;
  • Apăsăm butonul Edit ÅŸi în fereastra care se deschide punem textul sau codul HTML (imaginea 2 ÅŸi 3);
  • Apăsăm butonul Done dacă am inserat textul sau codul HTML;
  • Salvăm aceste modificăti apăsînd pe butonul Save Changes;
  • Deschidem blogul ÅŸi vizualizăm modificările efectuate.

Continue reading WordPress Text Widget