<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Hosting and Domain registration Knowledgebase&#187; Path</title>
	<atom:link href="http://www.hostingknowledge.com/tag/path/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hostingknowledge.com</link>
	<description>Gossimer's Premier Web Hosting and Domain Registration Knowledgebase.</description>
	<lastBuildDate>Thu, 09 Sep 2010 18:09:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>PHP-based  Form Mail (Feedback) Script</title>
		<link>http://www.hostingknowledge.com/web-hosting/sample-scripts/linux-hosting-related-scripts/feedback-forms/php-based-form-mail-feedback-script/</link>
		<comments>http://www.hostingknowledge.com/web-hosting/sample-scripts/linux-hosting-related-scripts/feedback-forms/php-based-form-mail-feedback-script/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 23:26:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Feedback Forms]]></category>
		<category><![CDATA[Abc]]></category>
		<category><![CDATA[Domain Name]]></category>
		<category><![CDATA[Feedback Script]]></category>
		<category><![CDATA[Form Mail]]></category>
		<category><![CDATA[Gossimer]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[List Key]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Mail Feedback]]></category>
		<category><![CDATA[Mail Form]]></category>
		<category><![CDATA[Mail Script]]></category>
		<category><![CDATA[Mail Server]]></category>
		<category><![CDATA[Mailto Subject]]></category>
		<category><![CDATA[Message Body]]></category>
		<category><![CDATA[Path]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Php Form]]></category>
		<category><![CDATA[Php Mail]]></category>
		<category><![CDATA[Php Script]]></category>
		<category><![CDATA[Script Php]]></category>
		<category><![CDATA[Website Visitors]]></category>
		<category><![CDATA[Xyz]]></category>

		<guid isPermaLink="false">http://hosting.local.dev/web-hosting/sample-scripts/linux-hosting-related-scripts/feedback-forms/php-based-form-mail-feedback-script/</guid>
		<description><![CDATA[1060]]></description>
			<content:encoded><![CDATA[<p><span class="description"> </span></p>
<p><span class="description"></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">Using a PHP script you may accept feedback  from your website visitors and get the results emailed to you. You can use the sample script provided by Gossimer  and tweak it a bit to suit your requirements.</span></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">You would need to change the Email address in  the field </span><em><span style="font-family: Verdana; font-size: x-small;">$from</span></em><span style="font-family: Verdana; font-size: x-small;"> to any Email address on the domain name on which you are  incorporating this script. For example, if your Domain Name is abc.com, then you would  define the From Email address as <em>some-name@abc.com</em>. This Email address  need not be existing on the Mail Server of abc.com, however, the domain name in the <em>$from </em>field has to be yours. You may use an Email address such as <em>Do_Not_reply@abc.com</em>.</span></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">The value in the </span><em> <span style="font-family: Verdana; font-size: x-small;">$mailto</span></em><span style="font-family: Verdana; font-size: x-small;"> field needs to be changed to  the Email  address, where email containing the data submitted through the form needs to be  delivered.</span></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">Once the visitor provides feedback, he/she can  then be re-directed to another page on your website. In order to achieve this, you  need to mention the path to the HTML file in the <em>$file</em> field in the  script. Alternately, you can display a message to the visitor thanking him/her  for the feedback. Such messages can be displayed in a new page like <em>thanks.htm</em>. Such a page can also contain other information as deemed  necessary.</span></p>
<p align="left"> </p>
<div style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px">
<p align="left"><strong><span style="font-family: Verdana; font-size: x-small;">Sample Script</span></strong></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">&lt;?<br />
$mailto=&#8221;xyz@abc.com&#8221;;<br />
$file=&#8221;thanks.htm&#8221;;<br />
$pcount=0;<br />
$gcount=0;<br />
$subject = &#8220;Mail from Enquiry Form&#8221;;<br />
$from=&#8221;</span><span class="description"><span style="font-family: Verdana; font-size: x-small;">some-name@abc.com</span></span><span style="font-family: Verdana; font-size: x-small;">&#8220;;<br />
while (list($key,$val)=each($HTTP_POST_VARS))<br />
{<br />
$pstr = $pstr.&#8221;$key : $val \n &#8220;;<br />
++$pcount;<br />
}<br />
while (list($key,$val)=each($HTTP_GET_VARS))<br />
{<br />
$gstr = $gstr.&#8221;$key : $val \n &#8220;;<br />
++$gcount;<br />
}<br />
if ($pcount &gt; $gcount)<br />
{<br />
$message_body=$pstr;<br />
mail($mailto,$subject,$message_body,&#8221;From:&#8221;.$from);<br />
include(&#8220;$file&#8221;);<br />
}<br />
else<br />
{<br />
$message_body=$gstr;<br />
mail($mailto,$subject,$message_body,&#8221;From:&#8221;.$from);<br />
include(&#8220;$file&#8221;);<br />
}<br />
?&gt;</span></p>
<p> </p>
</div>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hostingknowledge.com/web-hosting/sample-scripts/linux-hosting-related-scripts/feedback-forms/php-based-form-mail-feedback-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I edit the existing Textual Content and Paragraphs as well as Modify the HTML Structure of a page?</title>
		<link>http://www.hostingknowledge.com/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-edit-the-existing-textual-content-and-paragraphs-as-well-as-modify-the-html-structure-of-a-page/</link>
		<comments>http://www.hostingknowledge.com/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-edit-the-existing-textual-content-and-paragraphs-as-well-as-modify-the-html-structure-of-a-page/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 23:03:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How do I customize the Content, Theme (CSS, Images, Javascript), HTML Structure of the SuperSite and PartnerSite?]]></category>
		<category><![CDATA[Business Requirements]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Footer]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Html Basic]]></category>
		<category><![CDATA[Html Editing]]></category>
		<category><![CDATA[Html Structure]]></category>
		<category><![CDATA[Html Template]]></category>
		<category><![CDATA[Meta Tags]]></category>
		<category><![CDATA[Modes]]></category>
		<category><![CDATA[Paragraphs]]></category>
		<category><![CDATA[Path]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Static Bar]]></category>
		<category><![CDATA[Step 1]]></category>
		<category><![CDATA[Supersite]]></category>
		<category><![CDATA[Text Html]]></category>
		<category><![CDATA[Text Translation]]></category>
		<category><![CDATA[Textual Content]]></category>
		<category><![CDATA[Translation]]></category>
		<category><![CDATA[Type Lt]]></category>
		<category><![CDATA[View Source]]></category>
		<category><![CDATA[Web Browser]]></category>

		<guid isPermaLink="false">http://hosting.local.dev/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-edit-the-existi</guid>
		<description><![CDATA[1106]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="0" width="85%">
<tbody>
<tr>
<td width="100%"><span class="description"><span style="font-family: Verdana; font-size: x-small;">Once you have understood the manner in which a SuperSite/PartnerSite page is structured, you may proceed to customize &#8211; the textual content as well as the HTML structure of any page to suit your business requirements. </span><span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/read-this-first-understanding-the-structure-of-the-supersite-partnersite/" target="_blank">Click here to read information about the structure of a SuperSite/PartnerSite page &gt;&gt;</a></span></p>
<p><span style="font-family: Verdana; font-size: x-small;">Follow the steps below to edit the text or the HTML structure of any page in the SuperSite or PartnerSite. It is to be noted that while the instructions below reference the SuperSite, the concepts remain identical for the PartnerSite too.<br />
 </span></p>
<p><span style="font-family: Verdana; font-size: large;">STEP 1: Find the Template file which needs to be edited</span></p>
<ol><span style="font-family: Verdana; font-size: x-small;"></p>
<li>Browse your SuperSite through your web browser, to the page you want to modify.<br />
 </li>
<li>Click on <em>View Source</em> in your web browser. Inside the source you will see various tags of this type -<span style="font-family: Verdana; color: #008000; font-size: x-small;">
<p>&lt;!&#8211; ### Supersite Template common/footer/footer.html starts here ### &#8211;&gt;<br />
 &#8230;. some html content here &#8230;.<br />
&lt;!&#8211; ### Supersite Template common/footer/footer.html ends here ### &#8211;&gt;<br />
 </span></li>
<li>This means that all the content between these two tags, is contained within the file <em>footer.html,</em> which can be found at /common/footer/.<br />
 </li>
<li>Using these tags you can figure out which template, the content you wish to edit appears in, and the path to that template.<br />
 </li>
<p></span></ol>
<p><span style="font-family: Verdana; font-size: large;">STEP 2: Determine whether you wish to edit the Text or the Structure</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">The SuperSite offers you two separate modes to make modifications to any HTML Template &#8211; Basic Editing mode and Advanced Editing mode.</span></p>
<div><strong><span style="font-family: Verdana; color: #ff0000; font-size: x-small;"><a name="editing">IMPORTANT</a></span></strong></p>
<ol><span style="font-family: Verdana; font-size: x-small;"></p>
<li>The Basic Editing mode allows quick editing/translation of the Textual Content of your SuperSite, and comes strongly recommended by us.<br />
 </li>
<li>The Advanced Editing mode is far more complex and is recommended for ADVANCED USERS only. This mode allows both text editing/translation as well as HTML Structure editing.<br />
 </li>
<li><span style="text-decoration: underline;"><strong>Note</strong></span>:<br />
<blockquote><p>a. If you switch to the Basic Editing mode after having saved changes in the Advanced Editing mode, then you would lose all changes made in the Advanced Editing mode. If you then start saving changes in the Basic Editing mode and then again switch to the Advanced Editing mode, you would even lose the changes made in the Basic Editing mode.</p>
<p>b. If you have saved changes using the Basic Editing mode and then switch to the Advanced Editing mode and save changes here too, then if you continue using the Advanced Editing mode, you would not lose the changes made in either of the modes.</p>
<p>For example,</p>
<p>i. If you saved changes to the Footer.html using the Basic Editing mode and then switch to the Advanced Editing mode and again save some changes in this mode (Advanced Editing mode) too. Now if you were to switch to the Basic Editing mode, then you would lose all changes saved in the Advanced Editing mode.</p>
<p>ii. In continuation to the above example &#8211; if you had not switched back to the Basic Editing mode and continued using the Advanced Editing mode, then you would not have lost modifications made through either of the modes.</p></blockquote>
</li>
<li>By default, a HTML file opens in the Basic Editing mode if the file contains any text that can be translated; otherwise it would open in the Advanced Editing mode.<br />
 </li>
<li>If you save changes in a particular editing mode, then it becomes the default editing mode for that particular file, and the interface would automatically open in this edit mode thereon (for that particular file only).<br />
 </li>
<li>Irrespective of your Default Language SuperSite, the left-hand side box (<em>Original Content</em> text box) would always display text in English within any edit mode.<br />
 </li>
<li>While switching from the Basic Editing mode to the Advanced Editing mode, the system confirms your action. Here you may select the checkbox <em>Don&#8217;t show me this warning for the next 30 days</em>. If you select this checkbox and continue, then you will not be displayed this warning message until 30 days.<br />
 </li>
<li><span style="text-decoration: underline;"><strong>Note</strong></span>: You may be prompted to edit/re-translate your SuperSite content, if<br />
<blockquote><p>a. you edited the content provided in your English Language SuperSite and then translated your SuperSite to another language, prior to May 1, 2007 6:00 AM GMT. Now if u want to edit this translated Language SuperSite content, you would be prompted to re-translate your SuperSite content.</p>
<p>b. you did not edit the content provided in your English Language SuperSite but translated your English Language SuperSite to another language and selected any other Language SuperSite than English as the Default Language SuperSite, prior to May 1, 2007 6:00 AM GMT. Now if you want to edit the translated content, you would be prompted to re-translate your SuperSite content.</p>
<p>c. the content of any HTML file is edited by Gossimer.</p></blockquote>
<p>In the event that you are needed to edit/re-translate any HTML file due to any of the above reasons, the files that need to be reviewed -</p>
<blockquote><p>a. would be displayed on the right-hand side of your SuperSite Admin page (immediately upon login) under the heading <em>Recently Modified by us</em>,</p>
<p>b. would appear with the <em>Status</em> as <em><img src="http://www.hostingknowledge.com/attachments/attention.gif" border="0" alt="attention How do I edit the existing Textual Content and Paragraphs as well as Modify the HTML Structure of a page?" width="16" height="14" title="How do I edit the existing Textual Content and Paragraphs as well as Modify the HTML Structure of a page?" /> <strong><span style="color: #808080;">Modified by you</span> This File needs your Attention </strong></em>while listing files.</p>
<p>Upon opening this file (that needs to be edited/re-translated), you need to compare the content mentioned in the left-hand side box with the content  edited/translated by you in the right-hand side box and check the following -</p>
<blockquote><p>(i) If you perceive any editing/re-translation requirement -&gt; just copy-paste the text from the left-hand side box to the right-hand side box besides it and edit/translate the text in the right-hand side box itself, and then click on the <em>Save Changes</em> button.</p>
<p>(ii) If you perceive that there is no editing/re-translation required -&gt; simply click on the <em>Save Changes</em> button.</p></blockquote>
</blockquote>
</li>
<p></span></ol>
</div>
<p><span style="font-family: Verdana;"><strong><br />
</strong><span style="font-size: medium;">2.1 Basic Editing Mode</span></span></p>
<p><span style="font-family: Verdana; font-size: x-small;">If all you wish to do is to edit the text content within an HTML page, then you MUST use this tool. If you like the layout of the page as it is, but wish to change the text then follow the steps below -</span></p>
<ol><span style="font-family: Verdana; font-size: x-small;"></p>
<li>Login to the SuperSite/PartnerSite Admin Area. <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/how-do-i-login-to-the-admin-area-for-customizing-the-supersite-and-partnersite/" target="_blank">Click here to know how &gt;&gt;</a></span><br />
 </li>
<p></span></p>
<li><span style="font-family: Verdana; font-size: x-small;">Under the <em>My Languages SuperSite/PartnerSite</em> section, click on <em>Manage Site</em> besides the <em>Language SuperSite/PartnerSite</em>, whose website content you wish to edit.<br />
 </span></p>
<div><span style="font-family: Verdana; font-size: x-small;"><span style="color: #ff0000;"><strong>IMPORTANT</strong></span></p>
<p>If you wish to translate your SuperSite/PartnerSite content to any other language than English, you need to do the following before performing the above instruction -</span></p>
<blockquote><p><span style="font-family: Verdana; font-size: x-small;">a. first add a new Theme to your SuperSite/PartnerSite. </span><span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-add-edit-a-supersite-partnersite-theme-or-how-do-i-edit-the-css-images-javascript-of-my-supersite-partnersite/" target="_blank">Click here to know how to add a Theme &gt;&gt;</a></span><span style="font-family: Verdana; font-size: x-small;"></p>
<p>b. then add a Language SuperSite/PartnerSite and associate it with this new Theme. </span><span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-configure-multiple-language-support-for-the-supersite-partnersite/" target="_blank">Click here to learn how to configure multiple language support for your SuperSite/PartnerSite &gt;&gt;</a></span></p></blockquote>
</div>
<p><span style="font-family: Verdana; font-size: x-small;"> </span></li>
<p><span style="font-family: Verdana; font-size: x-small;"></p>
<li>Under the <em>Edit/Translate Website Content</em> section, click on the <em>Edit Content</em> button.<br />
 </li>
<li>Browse through the directory listing to the template, whose content you wish to modify.<br />
 </li>
<li>Some templates may in turn further contain other templates. You will be able to see this within the template itself. You may therefore have to edit within multiple templates.<br />
 </li>
<li>Click on the <em>Edit </em>link next to the template.<br />
 </li>
<li>Here you will see the <em>Original Text as inherited from English</em> on the left-hand side of the page and <em>Your Modified Text in &lt;your current selected Language SuperSite/PartnerSite&gt;</em> on the right-hand side of the page in a textbox. You can edit the content available in one or more textboxes (on the right-hand side) and click on the <em>Save Changes</em> button after completing the editing.</li>
<p></span></ol>
<div><strong><span style="font-family: Verdana; color: #ff0000; font-size: x-small;">IMPORTANT</span></strong></p>
<ol type="a"><span style="font-family: Verdana; font-size: x-small;"></p>
<li>The <em>Basic Editing </em>tool<em> </em>section solves two purposes &#8211; it allows you to translate your SuperSite/PartnerSite content as well as edit existing content in each Language SuperSite/PartnerSite.<br />
 </p>
<ul type="disc">
<li>If you have <em>not</em> added another Language SuperSite/PartnerSite, then the same <em>Basic Editing </em>tool, allows you to simply add/edit existing contextual text.<br />
 </li>
<li>If you have <em>already</em> added another Language SuperSite/PartnerSite, then also this very same <em>Basic Editing </em>tool, lets you add/edit the translated contextual text.<br />
 </li>
</ul>
</li>
<li>You can NOT remove any HTML tags (&#8220;&lt;&#8221; &#8220;&gt;&#8221;) and all data within these tags. For example, if there is a HTML tag &#8211; &lt;a href=&#8221;content.php?action=show_agreements&amp;requestfor=resellermasteragreement&amp;from=agree_page&#8221;&gt; mentioned within a textbox, then you can not choose to remove this tag.
<p>You can however, choose to change the placing of these HTML tags within the textbox and can add any text surrounding these.<br />
 </li>
<li>If you are not satisfied with the editing and wish to revert to the text displayed earlier, simply follow steps 3 to 6 above. There you may either copy the text individually from the left-hand side to the right-hand side textbox and click on <em>Save Changes</em> or simply click on the <em>Reset to Default</em> button to revert the content of all textboxes in that template.<br />
 </li>
<li>Once you edit the Textual Content of a file using the above tool, the <em>File Status</em> of such a file will change from <em>Default</em> to <em>Modified by you</em>. If a file that has been modified by you, is also updated by Gossimer, then the <span style="font-family: Verdana;"><em>Status</em> would change to <em><strong><img src="http://www.hostingknowledge.com/attachments/attention.gif" border="0" alt="attention How do I edit the existing Textual Content and Paragraphs as well as Modify the HTML Structure of a page?" width="16" height="14" title="How do I edit the existing Textual Content and Paragraphs as well as Modify the HTML Structure of a page?" /> <span style="color: #808080;">Modified by you</span>  This File needs your Attention</strong></em>.
<p>Once you have edited a file, we would not be able to automatically update the content of the same when new content is added by us; therefore, you would have to synchronize the content yourself.</span> <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/keeping-my-customized-supersite-partnersite-content-in-sync-with-any-new-content-added-by-gossimer/" target="_blank">Click here to synchronize the Textual Content edited by you with any new content added by Gossimer &gt;&gt;</a></span></li>
<p></span></ol>
</div>
<p><span style="font-family: Verdana;"><strong><br />
</strong><span style="font-size: medium;">2.2 Advanced HTML Editing Mode</span></span></p>
<p><span style="font-family: Verdana; font-size: x-small;">If you wish to change the layout or positioning of any of the various elements in a page, or you wish to add your own elements in a page, you can achieve the same only through the Advanced Editing mode.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">There is a stark difference between the &#8220;HTML Structure&#8221; and the &#8220;Textual Content&#8221;, used in the SuperSite/PartnerSite Admin section.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;"><span style="text-decoration: underline;">HTML Template Structure</span> - implies the way text and images are displayed within individual HTML pages. For example, the layout, the position, etc. of the elements.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;"><span style="text-decoration: underline;">Textual Content</span> - is all the text that appears in paragraphs, lists, tables, forms, etc..</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">If you wish to only edit the text within the template, then please refer to the Basic Editing mode explained above. If however, you wish to make changes to the HTML structure (code) and Textual content within the template, you need to use the Advanced Editing mode only.</span></p>
<div><strong><span style="font-family: Verdana; color: #ff0000; font-size: x-small;">IMPORTANT</span></strong><span style="font-family: Verdana; font-size: x-small;">As detailed above (in Step 2), you have to be very careful with switching between the Basic Editing mode and the Advanced Editing mode. If you switch to the Basic Editing mode, your changes made through the Advanced Editing mode are lost. </span><span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-edit-the-existing-textual-content-and-paragraphs-as-well-as-modify-the-html-structure-of-a-page/">It is recommended that you review all of the important points mentioned above before continuing further &gt;&gt;</a></span></div>
<p><span style="font-family: Verdana;"><br />
</span><span style="font-family: Verdana; font-size: x-small;">You can use the Advanced Editing mode as follows:</span></p>
<ol><span style="font-family: Verdana; font-size: x-small;"></p>
<li>Login to the SuperSite/PartnerSite Admin Area. <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/how-do-i-login-to-the-admin-area-for-customizing-the-supersite-and-partnersite/" target="_blank">Click here to know how &gt;&gt;</a></span><br />
 </li>
<li>Under the <em>My Languages SuperSite/PartnerSite</em> section, click on <em>Manage Site</em> besides the <em>Language SuperSite/PartnerSite</em>, whose website content you wish to edit.<br />
 </p>
<div><span style="color: #ff0000;"><strong>IMPORTANT</strong></span></p>
<p>If you wish to translate your SuperSite/PartnerSite content to any other language than English, you need to do the following before performing the above instruction -</p>
<blockquote><p>a. first add a new Theme to your SuperSite/PartnerSite. <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-configure-multiple-language-support-for-the-supersite-partnersite/" target="_blank">Click here to know how to add a Theme &gt;&gt;</a></span></p>
<p>b. then add a Language SuperSite/PartnerSite and associate it with this new Theme. <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-configure-multiple-language-support-for-the-supersite-partnersite/" target="_blank">Click here to learn how to configure multiple language support for your SuperSite/PartnerSite &gt;&gt;</a></span></p></blockquote>
</div>
<p> </li>
<li>Under the <em>Edit/Translate Website Content</em> section, click on the <em>Edit Content</em> button.<br />
 </li>
<li>Browse through the directory listing to the template, whose content you wish to modify.<br />
 </li>
<li>Some templates may in turn further contain other templates. You will be able to see this within the template itself. You may therefore have to edit within multiple templates.<br />
 </li>
<li>Click on the <em>Edit </em>link next to the template.<br />
 </li>
<li>Click on the <em>Switch to Advanced Editing mode </em>link besides the <em>Basic Editor</em> and then click on <em>Yes</em> to continue.<br />
 </li>
<li>Here you will see the <em>Original Content </em>on the left-hand side of the page and <em>Your Content</em> on the right-hand side of the page in a textbox. You can edit the content available in the <em>Your Content</em> textbox and then click on the <em>Save Changes</em> button.</li>
<p></span></ol>
<div><strong><span style="font-family: Verdana; color: #ff0000; font-size: x-small;">IMPORTANT</span></strong></p>
<ol type="a"><span style="font-family: Verdana; font-size: x-small;"></p>
<li>All style related attributes with regards to the display of any of the layout and positioning of elements is controlled through CSS files. Upon viewing the source of the HTML file, at the very top of the page you will notice several <em>.css</em> files being imported. <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-add-edit-a-supersite-partnersite-theme-or-how-do-i-edit-the-css-images-javascript-of-my-supersite-partnersite/" target="_blank">Click here to find instructions on how to edit the CSS files in your SuperSite/PartnerSite &gt;&gt;</a></span><br />
 </li>
<li><span style="text-decoration: underline;"><a name="headerfooter">Modifying the Header and Footer</a></span>: You can follow the process outlined above to edit the header and footer HTML for your SuperSite/PartnerSite; the templates for these can be located with in the <em>Header</em> and <em>Footer</em> folders respectively within the <em>Common</em> folder. You can also replace the default header logo with the logo of your company. <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/read-this-first-reseller-account-startup-guide/" target="_blank">Click here to read how &gt;&gt;</a></span><br />
 </li>
<li>If you are not satisfied with the editing and wish to revert to the earlier content, simply click on <em>Reset to Default</em> from the <em>Edit </em>page, to restore the default content for that file.<br />
 </li>
<li>Once you edit an HTML page using the above tool, the <em>File Status</em> of such a file will change from <em>Default</em> to <em>Modified by you</em>. If a file that has been modified by you is also updated by Gossimer, then the <em>File </em><span style="font-family: Verdana;"><em>Status</em> would change to <em><strong><img src="http://www.hostingknowledge.com/attachments/attention.gif" border="0" alt="attention How do I edit the existing Textual Content and Paragraphs as well as Modify the HTML Structure of a page?" width="16" height="14" title="How do I edit the existing Textual Content and Paragraphs as well as Modify the HTML Structure of a page?" /> <span style="color: #808080;">Modified by you</span>  This File needs your Attention</strong></em>.</span><br />
 </li>
<li>Once you have edited a file, we would not be able to automatically update the structure of the same when new content is added by us; you would have to synchronize the HTML Structure yourself. <span style="font-family: Verdana; font-size: xx-small;"><a href="/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/keeping-my-customized-supersite-partnersite-content-in-sync-with-any-new-content-added-by-gossimer/" target="_blank">Click here to synchronize the HTML structure edited by you with any new content added by Gossimer &gt;&gt;</a></span></li>
<p></span></ol>
</div>
<p></span></td>
</tr>
<tr>
<td width="100%"> </td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.hostingknowledge.com/reseller-guides/supersite-and-partnersite-guide/customizing-your-supersite-and-partnersite-content/how-do-i-customize-the-content-theme-css-images-javascript-html-structure-of-the-supersite-and-partnersite/how-do-i-edit-the-existing-textual-content-and-paragraphs-as-well-as-modify-the-html-structure-of-a-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sub-Domain Forwarding</title>
		<link>http://www.hostingknowledge.com/domain-url-forwarding/managing-a-domain-forwarding-service/sub-domain-forwarding/</link>
		<comments>http://www.hostingknowledge.com/domain-url-forwarding/managing-a-domain-forwarding-service/sub-domain-forwarding/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 11:54:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Managing a Domain Forwarding Service]]></category>
		<category><![CDATA[Conjunction]]></category>
		<category><![CDATA[Control Panel]]></category>
		<category><![CDATA[Credit Card Payments]]></category>
		<category><![CDATA[Destination Domain Name]]></category>
		<category><![CDATA[Disables]]></category>
		<category><![CDATA[Domain Forwarding]]></category>
		<category><![CDATA[Domain Forwarding Service]]></category>
		<category><![CDATA[Domain Search]]></category>
		<category><![CDATA[Domain Service]]></category>
		<category><![CDATA[Forwarding Services]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[Llc]]></category>
		<category><![CDATA[Manage Service]]></category>
		<category><![CDATA[Path]]></category>
		<category><![CDATA[Search Domain]]></category>
		<category><![CDATA[Sub Domain]]></category>
		<category><![CDATA[Url]]></category>

		<guid isPermaLink="false">http://hosting.local.dev/domain-url-forwarding/managing-a-domain-forwarding-service/sub-domain-forwarding/</guid>
		<description><![CDATA[440]]></description>
			<content:encoded><![CDATA[<p align="left"><span style="font-family: Verdana; font-size: large;">How does Gossimer, LLC Sub-Domain Forwarding work?</span></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">Using the Sub-domain forwarding service, you can forward any visitor from </span><span style="font-family: Verdana; font-size: x-small;"><span style="text-decoration: underline;"><span style="color: #0000ff;">http://subdomain.</span></span></span><span style="font-family: Verdana; font-size: x-small;"><span style="text-decoration: underline;"><span style="color: #0000ff;">your-domain-name.com</span></span></span><span style="font-family: Verdana; font-size: x-small;"><span style="text-decoration: underline;"><span style="color: #0000ff;">/</span></span> to <span style="color: #0000ff;"><span style="text-decoration: underline;">http://</span></span></span><span style="font-family: Verdana; font-size: x-small;"><span style="text-decoration: underline;"><span style="color: #0000ff;">destination-domain-name.com</span></span></span><span style="font-family: Verdana; font-size: x-small;"><span style="color: #0000ff;"><span style="text-decoration: underline;">/</span></span><span style="text-decoration: underline;"><span style="color: #0000ff;">subdomain</span></span><span style="color: #0000ff;"><span style="text-decoration: underline;">/</span></span>. The Sub-Domain Forwarding service can also be used in conjunction with URL Masking and Path Forwarding services.</span></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">For example, if Sub-Domain Forwarding is enabled, then:</span></p>
<ol><span style="font-family: Verdana; font-size: x-small;"></p>
<li>
<p align="left"><span style="text-decoration: underline;"><span style="color: #0000ff;">http://payments.your-domain-name.com</span></span> will get successfully forwarded to <span style="text-decoration: underline;"><span style="color: #0000ff;">http://destination-domain-name.com/payments/</span></span><br />
 </p>
</li>
<li>
<p align="left"><span style="color: #0000ff;"><span style="text-decoration: underline;">http://credit-card.payments.your-domain-name.com</span></span> will get forwarded to <span style="text-decoration: underline;"><span style="color: #0000ff;">http://destination-domain-name.com/payments/credit-card/</span></span><br />
 </p>
</li>
<p></span></ol>
<p align="left"><span style="font-family: Verdana; font-size: large;">Enabling / Disabling Sub Domain Forwarding</span></p>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">You can enable / disable Sub-Domain Forwarding after you have bought Domain Forwarding for a particular Domain Name. You need to follow the steps mentioned below to activate the same:</span></p>
<ol><span style="font-family: Verdana; font-size: x-small;"></p>
<li>
<p align="left"><span style="font-family: Verdana; font-size: x-small;"><a href="/domain-url-forwarding/listing-and-searching-orders/" target="_blank">Login to your Control Panel and search for the domain name</a>.<br />
 </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">Click on the Domain name in the search results to get to the Order Details view.<br />
 </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana; font-size: x-small;">Upon clicking on <em>Manage Service</em>, selecting the check box enables Sub-Domain Forwarding, while deselecting the same disables this feature.</span></p>
</li>
<p></span></ol>
]]></content:encoded>
			<wfw:commentRss>http://www.hostingknowledge.com/domain-url-forwarding/managing-a-domain-forwarding-service/sub-domain-forwarding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
