Quote:
Originally Posted by Andy0687
Does this sound wrong of me that I dont know how to add a new page  ?
Never done this before, but I want to start helping 
|
Just edit the URL to point to the new page that you're making by changing the name after ?wakka=.
Edit: I added a new box on the homepage to allow the easy creation of pages.
Quote:
|
Originally Posted by Chandler
With such commands, does this mean you can only retrieve this list if you're using Client-RC? How would one detect the use of Client-RC if so?
|
I think most of these will only work if you have Client-RC enabled. Simply speaking before you can use Client-RC, you must try and open a session:
PHP Code:
requesttext("clientrc", 1);
If you are successfully connected to Client-RC, you'll get a response back:
PHP Code:
function onReceiveText(temp.texttype, temp.textoption, temp.textlines)
{
switch (temp.texttype)
{
case "clientrc":
{
if (temp.textoption == 1)
{
// clientrc is working
}
else
{
// clientrc is not working; the error is sent in temp.textlines
}
break;
}
}
}