Problem with RevCMS 1.9.9.9 client

rjohnson1990

Member
Sep 5, 2012
103
0
I downloaded RevCMS 1.9.9.9 and I had problems with the client so I found that I had to update the web build in my config. I did that and now the client gets further than before. Instead of being blank like before, it loads up the bottom bar fine, but the top bar doesn't load at all. What can I do to fix this?
 

Keyla

wat.
Aug 16, 2011
45
1
If you are using the correct swf pack, i would recommend you to use this client:

Client.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{hotelName} - Client</title>

<script type="text/javascript" src="{url}/app/NotificationSystem.js"></script>

<link rel="stylesheet" href="{url}/app/tpl/skins/{style}/styles/client.css" type="text/css">
<link rel="shortcut icon" href="{url}/app/tpl/skins/{style}/static/images/favicon.gif" />

<script src=" "></script>

<script type="text/javascript">

window.onload = function() {

var NSObject = new NotificationSystem;
NSObject.initialise();

var htc = setInterval(function() {

NSObject.getMessage();

}, 5000);

}

</script>

<script type="text/javascript" src="{url}/app/tpl/skins/{style}/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "{url}";
var flashvars =
{
"client.starting" : "Please wait, {hotelName} is loading...",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "{server_ip}",
"connection.info.port" : "30000",

"site.url" : "{url}",
"url.prefix" : "{url}",
"client.reload.url" : "{url}/client",
"client.fatal.error.url" : "{url}/client",
"client.connection.failed.url" : "{url}/client",
"external.variables.txt" : " ",
"external.texts.txt" : " ",
"productdata.load.url" : " ",
"furnidata.load.url" : " ",
"use.sso.ticket" : "1",
"sso.ticket" : "{sso}",
"processlog.enabled" : "0",
"flash.client.url" : " ",
"flash.client.origin" : "popup",
};
var params =
{
"base" : " ",
"allowScriptAccess" : "always",
"menu" : "false",
"wmode" : "#FFF"

};
swfobject.embedSWF(" ", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);

</script>
</head>


<div id="client"></div>

</body>
</html>

Replace "YOURIP" with localhost, or whatever it is.
You may need to change the name of your swf pack.

Correct me if I forgot something.
 

Users who are viewing this thread

Top