Integration Guidelines

Put your best foot forward. Review this section (and SBI! Built-in Functions, which comes next) before you start building your pages.

Follow this advice and you won't have to spend extra time later to make them compatible with the Upload Your Own HTML process. Your goal is to achieve the best Search Engine rankings and maximum traffic!

SBI! Integration Guidelines

Please take your time and read the guidelines carefully to ensure that every page you create uploads flawlessly and works perfectly.

Understand that, like any Web host, we cannot support HTML errors (i.e., "Why does my page look funny?") or problems with your HTML editor. We do, of course, support any technical glitches with the actual page-uploading/re-uploading process.

And you can also "help and be helped" at the special SBI! Forum dedicated to HTML...

http://forums.sitesell.com/viewforum.php?f=8

Ready to begin?

In a nutshell, here are SBI!'s uploading and integration "rules" (detailed instructions will follow)...

Important Note

You cannot use media file URLs on other sites, as the media file will not work on that other site. For example, if you want to host a video from SBI!, and show it on your WordPress blog, it will not work in the blog. You will need to host the video from your blog host.

This includes Shockwave and Flash files uploaded to the support-files folder.

Here are the detailed instructions for duplicating the SBI! site structure on your computer...

Setting Up Your Local Folder Structure

On your computer, create a "root folder" and label it the name of your domain (ex., "anguilla-beaches.com"). Now create three other folders inside your root folder...

Upon completion, your folder structure should look like this...

folder setup

Local Folder Structure Checklist and Tips

Now let's cover the details for each file type, and where you must place them in your folder structure.

HTML files

Create and edit all of your HTML files (adding the ".html" extension to each of them) in the root folder. This matches the "root level" where SBI! builds all HTML pages, and where your HTML files go when you upload them.

For example, if you add two HTML files to your site, your folder should now look like this...

folder setup

Images

All image files (.gif, .jpg, .jpeg, .png) must be placed in the image-files folder that you created above.

When correctly inserted into your page, you will be prompted to select and upload these images in Step 3 of the Upload Your Own HTML process.

Tips

Yes, you can use images that have already been uploaded into SBI!'s Graphic Library. Here's how...

SBI! uses a folder named "images" to store all graphics that are uploaded via the Graphic Library. Therefore, when you create your HTML pages, instead of referencing image-files/myimg1.gif (as explained above), use images/myimg1.gif.

Here is an example tag which is referencing an image in the Graphic Library...

<img src="images/beachwalking.jpg" alt="Walking on an Anguilla beach" title="Walking on an Anguilla beach" width="265" height="150">

Note, however, that you will not be able to view these images if you use the relative reference above. If you want to be able to view the images in your editor, use the absolute (full URL) reference.

Media Files

All media files (.avi, .mov, .mp3, .mpeg, .mpg, .pps, .ppt, .qt, .wav, .wma, .wmv) must be placed in your media-files folder.

When correctly inserted into your page, you will be prompted to select and upload these media files in Step 3 of the Upload Your Own HTML process.

Tips

Supporting Files

All supporting files (.css, .exe, .flv, .js, .pdf, .swf, .txt, .xml, .zip) must be placed in your support-files folder. Like the rest of your files, you should relative-reference your supporting files when coding your HTML page. Do this, and your pages will preview correctly on your computer before you upload them to SBI!'s servers.

Must Read Notice Regarding EXE and ZIP Files

If SiteSell receives a documented (proved) complaint that your .exe or .zip file contains a virus, your SBI! account will be terminated immediately, with no refund. This applies to you even if you upload a file that you did not create yourself.

To protect yourself, run your virus scanner on any .exe file (especially a self-extracting .exe file) or any file(s) contained in a .zip file you plan to upload. If the file is clean, then upload it.

When correctly inserted into your page, you will be prompted to select and upload these support files in Step 3 of the Upload process.

Important Note

When referencing your CSS file in MailOut Manager or FBI! Thank You pages, or any Content 2.0 submission or comments page, the URL must be absolute, not relative. These pages are built from SBI!, not from your site's root folder. Relative references will result in no CSS styling to those pages.

If you place a link to a free download (PDF, EXE or ZIP file) on any Thank You page or MailOut Manager confirmation page, that URL must be absolute as well.

Automatic Tracking (Outgoing) Links

One of SBI!'s features is built-in tracking for each link that you create that goes off of your site (outgoing). SBI! will automatically re-code all of your outgoing links in order to track and report the Click Through Rate. These stats are reported in the Click Data section of the TrafficCenter in Site Central, and also in SiteSell's Value Exchange (if applicable).

Let's say, for example, that you have an affiliate link to refer visitors to your merchant partner's site at...

<a href="http://www.abc.com/youraffiliateID">

You insert the link on this page...

your-domain.com/referring-page.html

After you upload your referring-page.html page, you'll see that SBI! has added some tracking information to your http://www.abc.com/youraffiliateID affiliate link (do a View > Source on your Web page). It will look like this...

<a href="http://www.abc.com/youraffiliateID" onClick="window.location.href='http://www.your-domain.com/cgi-bin/counter.pl?url=http%3A%2F%2Fwww.abc.com%2FyouraffiliateID&referrer=http%3A%2F%2F
www.your-domain.com%2Freferring-page.html'; return false;">

Note: The actual URL is all on one line, NO line breaks.

You can now track Click Throughs from the origin ("your-domain.com/referring-page.html") to the destination ("http://www.abc.com/youraffiliateID").

If you do not want SBI! to reformat and track your links...

Simply add the following to your link code...

***no_tracking** and ***/no_tracking**

The format looks like this...

<a href="***no_tracking***http://www.externaldomain.com/
filename.html***/no_tracking***">anchor text</a>

The added code must be inside the quotation marks.

This extra code tells SBI! not to add tracking code to the link. When the page is built, the added code will disappear, leaving only your original link code.


Now that your local folder structure is set up and you know the proper folder location for each type of file, proceed to the second part of Step 1 of the Upload Your Own HTML process...

SBI!'s Built-in Functions