Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Save the file and browser to file using a browser. You can use either the IP Address or the valid Domain Name. For example, http://173.194.75.94/info.php or http://www.kryptondailyplanet.com/info.php which should show a purple and grey PHP informational screen.

...

Code Block
; open_basedir, if set, limits all file operations to the defined directory
; and below.  This directive makes most sense if used in a per-directory
; or per-virtualhost web server configuration file. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
; http://php.net/open-basedir
open_basedir = /opt/www.kryptondailyplanet.com/www/blog/:/opt/www.earthlexcorp.com/www/blog/

This helps minimizes the amount of damage that can be done in the event that the system is compromised to the specified directory.

...

Code Block
languagebash
cd /opt/www.kryptondailyplanet.com/www/
wget http://wordpress.org/latest.tar.gz
tar -xvpf latest.tar.gz
mv ./wordpress/ ./blog/ # We do not need to make the technology obvious.

...

Launch a browser and hit the WordPress setup page for your machine at http://krypton dailyplanet.com/blog/wp-admin/install.php and you will be prompted to create a configuration file.

...

Code Block
languagebash
vi /opt/www.kryptondailyplanet.com/www/blog/wp-config.php

...

URLAreaPurpose
http://www.kryptondailyplanet.com/blog/PublicYou can hit this url right now and see a default working site. This url is where your users will enter.
http://www.kryptondailyplanet.com/blog/wp-admin/Administration

This url results from clicking the "Log In" button after the WordPress install is complete. It can also be accessed through the Public homepage by click "Log In" located at the bottom right under "META". The Administration area allows the customization and configuration of WordPress.

Also, once logged into the administration, if you browse to the public area, you will see new buttons and options to create posts and edit the website contents.

...