Posts Tagged ‘installation’

Gallery Installation and Configuration

The Photo Gallery comes bundled with ExpressionEngine and ready to be installed. In your Control Panel, click the Modules tab. On the right side of the table, click the Install link corresponding to the Photo Gallery Module. This will install the necessary components for the gallery.

When you access your Photo Gallery control panel for the first time (via the Modules page) you will be prompted to configure your gallery preferences with the following three steps:

Step 1: Create a Folder for your Images

Using your FTP program, create a folder on your server for your images. A good location is within your main “images” folder, but feel free to put it wherever you want. Once you have created the folder you must set its file permissions to 777 so that the Photo Gallery program will be allowed to put images into it.

Note: You will need to determine the full server path to your new image folder so that it can be saved in your gallery preferences. If you are not sure how to determine the full server path please contact your hosting provider and ask them.

Step 2: Choose a Name for your Templates

During configuration, the Photo Gallery script will add a set of default templates. You’ll be asked to choose a name for your templates
Step 3: Configure your Preferences

Although the Photo Gallery supports dozens of preferences you only need to initially update the following six items:

1. Photo Gallery Name Choose a name for your gallery.
2. Photo Gallery Short Name Choose a single word (no spaces). This “short name” is used to reference your gallery in the various ExpressionEngine Tags in your gallery templates.
3. Photo Gallery URL The full URL to your gallery.
4. Image Folder Name The name of the folder you uploaded in step 1.
5. Server Path to Image Folder The full server path to the folder, as indicated in step 1.
6. URL to Image Folder The URL to your image folder, in this format: http://www.example.com/image_folder_name/

Once you have updated the above items, click the submit button at the bottom of the page.
Step 4: Add Categories

Before you can add photos to your gallery you must create at least one category so your photos can be assigned to it.

Click the Categories tab at the top of the gallery module to add a new category. Repeat this process for each category you would like to create.

MediaWiki installation and configuration

You can install MediaWiki under application installer in DirectAdmin control panel. Just log in to your web hosting account control panel and locate Softaculous Application Installer. After select MediaWiki to install. For configurations go to Host1Free.com community forum to get support on configuring MediaWiki.

phpNuke installation and configuration

To install PHP-Nuke simple go to Host1Free.com free web hosting DirectAdmin control panel and locate Softaculous application installer. After select PHP-Nuke from the list to install. For configurations go to Host1Free.com community forum to get support on configuring PHP-Nuke.

How to secure an existing WordPress installation?

Here are three easy but important ways to protect yourself if you run a WordPress blog:

  1. Secure your /wp-admin/ directory. What I’ve done is lock down /wp-admin/ so that only certain IP addresses can access that directory. I use an .htaccess file, which you can place directly at /wp-admin/.htaccess . This is what mine looks like:

    AuthUserFile /dev/null
    AuthGroupFile /dev/null
    AuthName “Access Control”
    AuthType Basic
    order deny,allow
    deny from all
    # whitelist home IP address
    allow from 64.233.169.99
    # whitelist work IP address
    allow from 69.147.114.210
    allow from 199.239.136.200
    # IP while in Kentucky; delete when back
    allow from 128.163.2.27

    I’ve changed the IP addresses, but otherwise that’s what I use. This file says that the IP address 64.233.169.99 (and the other IP addresses that I’ve whitelisted) are allowed to access /wp-admin/, but all other IP addresses are denied access. Has this saved me from being hacked before? Yes.

  2. Make an empty wp-content/plugins/index.html file. Otherwise you leak information on which plug-ins you run. If someone wanted to hack your blog, they might be able to do it by discovering that you run an out-of-date plugin on your blog and then they could exploit that.
  3. Subscribe to the WordPress Development blog at http://wordpress.org/development/feed/ . When WordPress patches a security hole or releases a new version, they announce it on that blog. If you see a security patch released, you need to upgrade or apply the patch. You leave yourself open to being hacked if you don’t upgrade.

How to upload my local Joomla installation?

Use File Manager Or (PREFERABLY) A FTP Client