Posts Tagged ‘add’

How to create another domain?

You can create another domain in DirectAdmin in a few easy steps. Firstly, once you are logged in to DirectAdmin, go to Domain Setup. There you will get a list of domains that you already have in your account. If you still don’t have any domain created, click Add Another Domain. Now you will need to type in domain name and adjust such options as bandwidth, disk space, secure SSL, CGI access, PHP access. Once you are done with that, click Create button and new domain will be created.

How to add domain pointers in DirectAdmin?

1. Login to DirectAdmin server control panel.
2. Locate Domain Pointers link in the bottom of the DirectAdmin control panel.
3. Enter the source domain and click Add.
4. The domain pointer has been successfully created!

How to add mime types in DirectAdmin?

Multipurpose Internet Mail Extensions (MIME) is an Internet standard that extends the format of e-mail to support.
In order to add MIME Types in your web hosting account you should:
1. Login to DirectAdmin server control panel.
2. Locate Mime Types.
3. In MimeType enter your type and Extension.
4. To review added MIME Types you can repeat first 2 steps.

How to add MX record in DirectAdmin?

A mail exchanger record (MX record) is a type of resource record in the Domain Name System that specifies a mail server responsible for accepting email messages on behalf of a recipient’s domain and a preference value used to prioritize mail delivery if multiple mail servers are available. The set of MX records of a domain name specifies how email should be routed with the Simple Mail Transfer Protocol.

To add MX records for your domain you need to:
1. Login to DirectAdmin server control panel.
2. Locate MX Records link.
3. Add MX records and value.

Remember choose the right domain (if you have more than one) to set the MX records.

How to add new sub domain in DirectAdmin?

To set the new sub domain to your website (web hosting account) you must:
1. Login to DirectAdmin server control panel.
2. Locate Subdomain Management.
3. Enter the sub domain name and then Create.

Please consider to select the right domain name before creating the sub domain.

How do I find the ID of a new row added to a table?

If you are adding data to a mySQL table then you will often want to know the ID of a row you have just inserted so that you can reference it elsewhere. Often you’ll add to a table with an auto_increment ID field and then want to use this to store other information on other tables.

Here’s how you do it:

$q = mysql_query("INSERT INTO mytable VALUES('test')");
$rownumber = mysql_insert_id();
//$rownumber contains the id of the new row
?>

How to add sitemap to Google Webmasters Tools?

Sitemaps are a way to tell Google about pages on your site we might not otherwise discover. In its simplest terms, a XML Sitemap—usually called Sitemap, with a capital S—is a list of the pages on your website. Creating and submitting a Sitemap helps make sure that Google knows about all the pages on your site, including URLs that may not be discoverable by Google’s normal crawling process.

Google originally developed the XML schema for sitemaps and have developed a dedicated portal for webmasters, from where you can submit your sitemap:

google.com/webmasters/

First, you need to tell Google all the sites you own, then verfiy that you indeed own them. The verifiaction is achieved by adding a metatag between the head tags on your site homepage. The syntax for the tag is as follows:

<meta content=”unique code advised by google” name=”verify-v1″>

There are full instructions on how to do this on the Google site.

How to add GoogleAdsense to my MediaWiki pages?

Once you have the AdSense code you can add it to Mediawiki following these steps:

1) Open skins/Monobook.php and get acquainted with the syntax for the different sections. This is the place to add your AdSense code.
For example, to add the google adsense code at the bottom of the pages, add the code right after:

// Generate additional footer links
?>

After you make the modifications you need to open and resave your LocalSettings.php file. This will clear MediaWiki’s parsercache and your changes will show correctly.

How to add images, audio and video to posts in WordPress?

WordPress makes it really easy to add media to your posts.

To add media to a new post, go to your blog’s admin area > Posts > Add New.

In the WYSIWYG editor menu you can click any of the following buttons to add media to your post – “Add an image“, “Add Video“, “Add Audio” and “Add Media

How to add tags to a post in WordPress?

Adding tags to your WordPress posts will help you organize your blog’s content.

Tags will also help your visitors find their way around your site more easily.

To add tags to a new post, go to your blog’s admin area > Posts > Add New. When you write your new post, you can add a tag to it by typing the tag word in the Tags field on the right and clicking the Add button. You can add as many tags as you want.