Font Size
Free Script installer FORUMS Ad management Portals and Cms Blogs Welcome Hepsia cPanel hosting
Free Script installer
You're about to get acquainted with a brand new mechanism of installing and managing PHP scripts. Our Elefante Installer allows you to install and manage blogs, forums, image galleries, content management systems, e-shops and many more, without any knowledge of basic programming languages such as HTML, PHP, etc. The Elefante Installer is a FREE PHP web application services installer which makes it easy for you to automatically install over 40 popular PHP script packages straight from your personal Web Hosting Control Panel or have the script insalled when you sign up ready for use.
Read the Full Story
FORUMS
An Internet forum is a discussion area on a website. Website members can post discussions and read and respond to posts by other forum members. An Internet forum can be focused on nearly any subject and a sense of an online community, or virtual community, tends to develop among forum members.
Read the Full Story
Ad management

Ad Management Scripts/Software

Pop-ups and other kinds of advertisements are a constant irritation for many Internet users. But, like all things media (such as television and radio), the web can't continue to exist without them. Whether webmasters like it or not, advertising helps pay their bills to keep their sites running. Therefore, it's always a good idea to know how to make them work for you. One way you can do this is to use ad management scripts or software. The sheer number available, online or otherwise, guarantees that you'll be able to find one that will fit your needs and budget.
Read the Full Story
Portals and Cms
A portal Web site is a Web site that aims to be your "portal," or entranceway,  to most anything you can do on the Web. For example, Yahoo is considered a  portal because it offers a search engine that helps you find other Web sites, as  well as topics categories such as finance,  travel, health, etc. that help you find information on the Web about those  topics. In the 1998-2001 phase of the Internet, many Web sites aspired to be  portals, because they believed it would mean users would use them as their  "start page" and visit frequently, even if they eventually left to visit other  Web sites. However, these days, most Web sites do not want to be mere start  pages; they want to keep you on their Web site for as long as possible, and not  take you to other Web sites.
Read the Full Story
Blogs

What's a blog?

A blog is a personal diary. A daily pulpit. A collaborative space. A political soapbox. A breaking-news outlet. A collection of links. Your own private thoughts. Memos to the world. Your blog is whatever you want it to be. There are millions of them, in all shapes and sizes, and there are no real rules. In simple terms, a blog is a website, where you write stuff on an ongoing basis. New stuff shows up at the top, so your visitors can read what's new. Then they comment on it or link to it or email you. Or not
Read the Full Story
Welcome
  • Upto unlimited GB Disc Space
  • Upto Unlimited Data Transfer
  • FTP, Stats
  • Upto unlimited Email Accounts
  • Free sub Domain Name
  • Free Site Builder
  • Unlimited Domain Hosting
 
Read the Full Story
Hepsia cPanel hosting

Hepsia Control Panel Top Features

You can now register, transfer or manage multiple domain names & websites from just one place. This is something cPanel has big problems with. Actually there is no Domain Manager at all in cPanel. With Hepsia you can set up and manage multiple fully independent websites from a single account. No need to have separate control panels (i.e. logins) for your domains, support tickets and billing.
Read the Full Story

 Changing file/folder permissions

All files on UNIX (including Linux and other UNIX variants) machines have access permissions. In this way the operating system knows how to deal with requests to access the files. Incoreect values can cause the server to refuse to display your site and give you an INTERNEAL server (500) error.

There are three types of access:

  • Read – Denoted as r, files with read access can be displayed to the user
  • Write – Denoted as w, files with write access can be modified by the user
  • Execute – Denoted as x, files with execute access can be executed as programs by the user

Access types are set for three types of user group:

  • User – The owner of the file
  • Group – Other files which are in the same folder or group
  • World – Everyone else

The web server needs to be able to read your web pages in order to be able to display them in a browser. The following permissions need to be set in order for your web site to function properly.

  • All HTML/PHP files and images need to be readable by others. The value for this is 644 (readable by User, Group and World, and writable by User). It is set automatically when you upload files
  • All folders need to be executable by others. The value for this is 755 (readable by User, Group and World, writable by User, executable by User, Group and World). It is set automatically when you create a folder
  • All CGI files (all files in the cgi-bin folder) need to be executable by other. The value for this is 755 (readable by User, Group, and World, writable by User, executable by User, Group, and World)

 

These should be set to the correct values when you upload your script, but some times depending on how you uploaded, they are set worng or you set a wrong value.

To change file or folder permissions:

LOG INTO CPANEL

Step 1: Open your File Manager and navigate to the file or folder that you need to change.

Step 2: Click on the name of the file or folder.

Step 3: Click on the Change Permissions link in the top menu of the File Manager page.

Step 4: Click on as many check boxes as you require to create the right permission. The permission numbers underneath the check boxes will update automatically.

Step 5: Click on the Change Permissions button when you are ready. The new permission level is saved and the display updated to show the modified file.

Checking permissions can take forever so, Save the following snippet as a php file (e.g. fix.php), and upload it to your site to the folder your having problems on.

It will try to make all directories and files to there correct values in a recursive fashion. If you put this in the root folder of your script installation and run it by going to http://www.yourdomain/your-folder/fix.php it should operate on all possible files within your install folder.

MAKE SURE THE FOLDER THAT YOU PUT THIS INTO HAS 0755 PERMISSIONS

Also please make a back-up of the folder first, just in case…….. any folders that you have been asked to change via your script installer will have to be changed again once you run this script.

Important: this code should only be used if you remember to delete it immediately after use.

< ?php

file_fix_directory(dirname(__FILE__));

function file_fix_directory($dir, $nomask = array(‘.’, ‘..’)) {

if (is_dir($dir)) {

// Try to make each directory 755.

if (@chmod($dir, 0755)) {

echo “

Made writable: ” . $dir . “

“;

}

}

if (is_dir($dir) && $handle = opendir($dir)) {

while (false !== ($file = readdir($handle))) {

if (!in_array($file, $nomask) && $file[0] != ‘.’) {

if (is_dir(“$dir/$file”)) {

// Recurse into subdirectories

file_fix_directory(“$dir/$file”, $nomask);

}

else {

$filename = “$dir/$file”;

// Try to make each file 644.

if (@chmod($filename, 0644)) {

echo “

Made writable: ” . $filename . “

“;

}

}

}

}

closedir($handle);

}

}

?>

DMCA.com

Adds