/[projects]/misc/xenconsole/console.php
ViewVC logotype

Annotation of /misc/xenconsole/console.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2014 - (hide annotations) (download)
Wed Jul 17 17:47:49 2013 UTC (10 years, 10 months ago) by torben
File size: 654 byte(s)
use newew XenServerConsole.jar
1 torben 1876 <?php
2     include("config.php");
3    
4     $key = $_GET["key"];
5     $session = $_GET["session"];
6     $url = $_GET["url"];
7 torben 1920 $name = $_GET["name"];
8 torben 1876
9     if ($key != $password) {
10     die("Invalid key");
11     }
12    
13     ?>
14 torben 2014 <html>
15     <body>
16 torben 1876
17 torben 1920 <h2><?php echo $name;?></h2><br>
18 torben 1876
19 torben 2014 <center>
20     <table>
21     <tr>
22     <td>
23 torben 1920
24 torben 1876 <applet code="com/citrix/xenserver/console/Initialize.class"
25     archive="jar/XenServerConsole.jar"
26     width="800" height="600">
27     <PARAM NAME=SESSION VALUE="<?php echo $session;?>">
28     <PARAM NAME=URL VALUE="<?php echo $url;?>">
29     <PARAM NAME=USEURL VALUE="true">
30     </applet>
31 torben 2014
32     </applet>
33     </td>
34     </tr>
35     </table>
36     </center>
37     </body>
38     </html>
39    

  ViewVC Help
Powered by ViewVC 1.1.20