![]() |
|
| Installation |
You agree that your use of this tool is subject to the Terms and Conditions. If you do not agree with the Terms and Conditions, please do not use this tool.
Did you visit the DEMO? Not yet, please visit it first.
We recommend you download our Interface File at left side and setup your website in seconds. We also provide standard XML file for your programmes demand.
This Installation guide only show you how to setup the New Page with our Interface File, for link the new page from your exist pages, you can follow the Demo easily.
Create a new webpage by your site template, save the downloaded Interface File to a folder of your new webpage placed.
Place the following code in the top of your new page source code.
<!--#include file="arcog-vbscript.asp"-->
<%
ArcogColorBackground = "FFFFFF"
ArcogColorText = "000000"
ArcogColorLink = "0000FF"
ArcogNameQuery = "Query"
ArcogNameArticleID = "ArticleID"
ArcogSetupQuery = ""
ArcogStart()
%>
<!--#include file="arcog-javascript.asp"-->
<%
ArcogColorBackground = "FFFFFF";
ArcogColorText = "000000";
ArcogColorLink = "0000FF";
ArcogNameQuery = "Query";
ArcogNameArticleID = "ArticleID";
ArcogSetupQuery = "";
ArcogStart();
%>
<?php
require_once("arcog.php");
$ArcogColorBackground = "FFFFFF";
$ArcogColorText = "000000";
$ArcogColorLink = "0000FF";
$ArcogNameQuery = "Query";
$ArcogNameArticleID = "ArticleID";
$ArcogSetupQuery = "";
ArcogStart();
?>
You can change your options by set different parameters value, for better performance of your website. The default parameters have been list in the code at step one, you only need change the value between the quotation marks ("). If you want to set more parameters, simple copy a new line as same format of the exist code.
ColorThe last step, you need decide where to show the content, here we have four tags for you to placed in source code of the new webpage. You MUST place the bold items in your page correctly.
Code Sample for different languages:
<%=ArcogStringTitle%>
<%=ArcogStringContent%>
<%=ArcogStringRelated%>
<%=ArcogStringSource%>
<?php echo($ArcogStringTitle); ?>
<?php echo($ArcogStringContent); ?>
<?php echo($ArcogStringRelated); ?>
<?php echo($ArcogStringSource); ?>