I am going to delete that dj panel script because it isn't usefull. ;)
And Onderhoud Paneel (maintenant panel) is going to be in the manager. Because it is ugly to take it apart of the manager.
Posted via Mobile Device
Printable View
can i use this cms on IIS ?
People, I know my cms scripting is a mess. But I am going to release v2 maybe today or tomorrow. I don't know when. But the mess is gone in the release after v2. V2 is made a liddle bit safer by MerijnZ. He's going to help me with HomePremiumCMS :). I'm not alone anymore :D:
Thats not work for IIS.. :s
register problems..
Nots work for IIS register..
Why is nobody answering my questions?
I've changed it to en but it still stays dutch.
My hotel worked before without changing swf.
And 4 days later i get this.
i work with this and they work with phoenix:
http://forum.ragezone.com/f353/lates...orking-817589/
i hope version 2.0 will be better :) and have more features :D and that it is fully english ;)
i hope 2
but when i go to another hotel there i have the same problem.
whit homepremiumcms. pfff
Bullshit this. I installed everything again.
everything is alright. swf for phoenix and it doesnt work.
What is this man?
What is te newest webbuild?
maybe that is the problem.
What is te newest webbuild?
maybe that is the problem.
Guys i found the problem.
Update your webbuild to this:
63_1dc60c6d6ea6e089c6893ab4e0541ee0/957
My hotel loading not, my emulator is online? Help my please?
Anyone who wanna make it with a working client for me, via Team Viewer? :(: I tried but the client will not work... I hope one of ya will help me :/:
Who can help me with this CMS my loader is not load.
0%
Qbus@hotmail.lv
i'm Dutch
change the webbuild everyone.
My hotel is alive again :P.
Many of us have the same problem :(:
In the config file? ..
Can you help me make one via Team Viewer? .. Add me on msn; omaralali12@hotmail.com
I really hope v2.0 comes with better English support for the main CMS and the housekeeping.
As I give the belcredits?And change the name?
I help to the client, but I'm spanish and I use the traductor. ( granadinosc@hotmail.com )
My emu is online and my hotel not werking not loading it is 0% help my):
I need someone who can help me with translating the cms better in english ;)
Posted via Mobile Device
VERY nice job with this, downloading it now.
To test it ofcourse :):
Thanks!
This is how you fix the Poll
Paste this into system/show_poll.php
and this into system/sideads.phpQuote:
<style type="text/css">
.poll_index_button{font-size:12px;font-family:Verdana;width:auto;padding:6px;border-width:1px;border-style:solid;border-color:#e2e2e2;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:white;resize:none}
.poll_index_button:hover{font-size:12px;font-family:Verdana;width:auto;padding:6px;border-width:1px;border-style:solid;border-color:#D3D3D3;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:#F2F2F2;resize:none}
.poll_index_button:active{font-size:12px;font-family:Verdana;width:auto;padding:6px;border-width:1px;border-style:solid;border-color:#C6C6C6;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:#E5E5E5;resize:none}
#poll_border_index {
background-color: #D8D8D8;
border: 1px solid #D8D8D8;
border-radius: 3px;
margin-top: 4px;
}
#poll_border_index_inside {
padding: 5px 5px 5px 5px;
}
</style>
<?php
error_reporting(0);
$systeminfo = mysql_query("SELECT * from `systeminfo`");
$systeminfo = mysql_fetch_array($systeminfo);
if($poll){
$get_poll = mysql_query("SELECT * FROM `polls` WHERE `id`='".$poll."' LIMIT 1");
$poll = mysql_fetch_array($get_poll);
}else{
$get_poll = mysql_query("SELECT * FROM `polls` ORDER BY `id` DESC LIMIT 1");
$poll = mysql_fetch_array($get_poll);
}
$ip = $_SERVER['REMOTE_ADDR'];
$checkIP = mysql_query("SELECT * FROM `ips` WHERE `ip`='".$ip."' AND `for`='".$poll[id]."'");
$checkIP = mysql_num_rows($checkIP);
$current = $_SERVER['SCRIPT_NAME'];
if($checkIP >= '1') {
$hasVoted = true;
}else{
$hasVoted = false;
}
$totalvotes = $poll[votes1] + $poll[votes2] + $poll[votes3] + $poll[votes4];
$percent1 = $poll[votes1] * 100 / $totalvotes;
$percent1 = floor($percent1);
$percent2 = $poll[votes2] * 100 / $totalvotes;
$percent2 = floor($percent2);
$percent3 = $poll[votes3] * 100 / $totalvotes;
$percent3 = floor($percent3);
$percent4 = $poll[votes4] * 100 / $totalvotes;
$percent4 = floor($percent4);
if(!$hasVoted){
// Hasn't Voted. Let's display the form
if(!$_POST[submitvote]){
?>
<form method="post">
<b><?php echo stripslashes($poll[question]); ?></b><br><br>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes1" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll[answer1]); ?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes2" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll[answer2]); ?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes3" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll[answer3]); ?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes4" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll[answer4]); ?>
</div>
</div>
<br><input type="submit" class="poll_index_button" name="submitvote" value="Stem nu!">
</form>
<?
}else{
$theirvote = htmlspecialchars($_POST[vote]);
$addVote = "UPDATE `polls` SET `$theirvote` = `$theirvote` + 1 WHERE `id`='".$poll[id]."'";
mysql_query($addVote) or die("MySql Error");
$insertIP = "INSERT INTO `ips` ( `ip` , `for` ) VALUES ('".$ip."', '".$poll[id]."')";
mysql_query($insertIP) or die("MySql Error");
?>
<center>Bedankt voor het stemmen!<br>
<br><br>
<img src="Public/Styles/Default/Images/poll_load.gif"></center><br><br>
<meta http-equiv="Refresh" content="2; URL=<?php echo $current; ?>">
<?
}
}else{
echo("<strong>".stripslashes($poll[question])."</strong><br><br>
");
?>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll[answer1]); ?></b><br>(<?php echo $poll[votes1]; ?>x gestemd) - (<?php echo $percent1; ?>%)<br><br>
<table style="width:278px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent1; ?>%;padding:1px;color:<?php echo $systeminfo[textcolor]; ?>;border: 1px solid #27B0EA;border-radius: 2px;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );"></div></div>
</table>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll[answer2]); ?></b><br>(<?php echo $poll[votes2]; ?>x gestemd) - (<?php echo $percent2; ?>%)<br><br>
<table style="width:282px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent2; ?>%;padding:1px;color:<?php echo $systeminfo[textcolor]; ?>;border: 1px solid #27B0EA;border-radius: 2px;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );"></div></div>
</table><?php
if($poll[answer3] != NULL){
?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll[answer3]); ?></b><br>(<?php echo $poll[votes3]; ?>x gestemd) - (<?php echo $percent3; ?>%)<br><br>
<table style="width:282px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent3; ?>%;padding:1px;color:<?php echo $systeminfo[textcolor]; ?>;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );border: 1px solid #27B0EA;border-radius: 2px;"></div></div>
</table><?php
}
if($poll[answer4] != NULL){
?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll[answer4]); ?></b><br>(<?php echo $poll[votes4]; ?>x gestemd) - (<?php echo $percent4; ?>%)<br><br>
<table style="width:282px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent4; ?>%;padding:1px;color:<?php echo $systeminfo[textcolor]; ?>;border: 1px solid #27B0EA;border-radius: 2px;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );"></div></div>
</table><?php
}
?>
</div>
</div>
<?php
}
?>
Quote:
<div class="xxs_boxHeader_grey" style="margin-top: 10px;"><div class="titel">Poll</div></div>
<div class="contentBox">
<div class="boxContent">
<style type="text/css">
.poll_index_button{font-size:12px;font-family:Verdana;width:auto;padding:6px;border-width:1px;border-style:solid;border-color:#e2e2e2;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:white;resize:none}
.poll_index_button:hover{font-size:12px;font-family:Verdana;width:auto;padding:6px;border-width:1px;border-style:solid;border-color:#D3D3D3;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:#F2F2F2;resize:none}
.poll_index_button:active{font-size:12px;font-family:Verdana;width:auto;padding:6px;border-width:1px;border-style:solid;border-color:#C6C6C6;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:#E5E5E5;resize:none}
#poll_border_index {
background-color: #D8D8D8;
border: 1px solid #D8D8D8;
border-radius: 3px;
margin-top: 4px;
}
#poll_border_index_inside {
padding: 5px 5px 5px 5px;
}
</style>
<?php
error_reporting(0);
$systeminfo = mysql_query("SELECT * from `systeminfo`");
$systeminfo = mysql_fetch_array($systeminfo);
if($poll){
$get_poll = mysql_query("SELECT * FROM `polls` WHERE `id`='".$poll."' LIMIT 1");
$poll = mysql_fetch_array($get_poll);
}else{
$get_poll = mysql_query("SELECT * FROM `polls` ORDER BY `id` DESC LIMIT 1");
$poll = mysql_fetch_array($get_poll);
}
$ip = $_SERVER['REMOTE_ADDR'];
$checkIP = mysql_query("SELECT * FROM `ips` WHERE `ip`='".$ip."' AND `for`='".$poll[id]."'");
$checkIP = mysql_num_rows($checkIP);
$current = $_SERVER['SCRIPT_NAME'];
if($checkIP >= '1') {
$hasVoted = true;
}else{
$hasVoted = false;
}
$totalvotes = $poll['votes1'] + $poll['votes2'] + $poll['votes3'] + $poll['votes4'];
$percent1 = $poll['votes1'] * 100 / $totalvotes;
$percent1 = floor($percent1);
$percent2 = $poll['votes2'] * 100 / $totalvotes;
$percent2 = floor($percent2);
$percent3 = $poll['votes3'] * 100 / $totalvotes;
$percent3 = floor($percent3);
$percent4 = $poll['votes4'] * 100 / $totalvotes;
$percent4 = floor($percent4);
if(!$hasVoted){
// Hasn't Voted. Let's display the form
if(!$_POST['submitvote']){
?>
<form method="post">
<b><?php echo stripslashes($poll['question']); ?></b><br><br>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes1" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll['answer1']); ?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes2" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll['answer2']); ?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes3" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll['answer3']); ?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<input type="radio" name="vote" value="votes4" style="float: left;margin-top: 0px;margin-right: 3px;"> <?php echo stripslashes($poll['answer4']); ?>
</div>
</div>
<br><input type="submit" class="poll_index_button" name="submitvote" value="Rösta nu!">
</form>
<div style="margin-top: -30px;"></div>
<?php
}else{
$theirvote = htmlspecialchars($_POST['vote']);
$addVote = "UPDATE `polls` SET `$theirvote` = `$theirvote` + 1 WHERE `id`='".$poll['id']."'";
mysql_query($addVote) or die("MySql Error");
$insertIP = "INSERT INTO `ips` ( `ip` , `for` ) VALUES ('".$ip."', '".$poll['id']."')";
mysql_query($insertIP) or die("MySql Error");
?>
<center>Bedankt voor het stemmen!<br>
<br><br>
<img src="Public/Styles/Default/Images/poll_load.gif"></center><br><br>
<meta http-equiv="Refresh" content="2; URL=<?php echo $current; ?>">
<?php
}
}else{
echo("<strong>".stripslashes($poll['question'])."</strong><br><br>
");
?>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll['answer1']); ?></b><br>(<?php echo $poll['votes1']; ?>x röster) - (<?php echo $percent1; ?>%)<br><br>
<table style="width:278px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent1; ?>%;padding:1px;border: 1px solid #27B0EA;border-radius: 2px;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );"></div></div>
</table>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll['answer2']); ?></b><br>(<?php echo $poll['votes2']; ?>x röster) - (<?php echo $percent2; ?>%)<br><br>
<table style="width:282px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent2; ?>%;padding:1px;border: 1px solid #27B0EA;border-radius: 2px;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );"></div></div>
</table><?php
if($poll['answer3'] != NULL){
?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll['answer3']); ?></b><br>(<?php echo $poll['votes3']; ?>x röster) - (<?php echo $percent3; ?>%)<br><br>
<table style="width:282px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent3; ?>%;padding:1px;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );border: 1px solid #27B0EA;border-radius: 2px;"></div></div>
</table><?php
}
if($poll['answer4'] != NULL){
?>
</div>
</div>
<div id="poll_border_index">
<div id="poll_border_index_inside">
<b><?php echo stripslashes($poll['answer4']); ?></b><br>(<?php echo $poll['votes4']; ?>x röster) - (<?php echo $percent4; ?>%)<br><br>
<table style="width:282px;">
<div style="background-color:#EFEFEF;background-image:url(<?php echo $systeminfo[path]; ?>images/shiny.png);background-position:center;"><div style="font-family:verdana;font-size:10px;height: 10px;background-color:#5EC1EC;background-position:center;width:<?php echo $percent4; ?>%;padding:1px;border: 1px solid #27B0EA;border-radius: 2px;box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );-webkit-box-shadow: inset 0 6px 0 rgba( 255, 255, 255, 0.4 );"></div></div>
</table><?php
}
?>
</div>
</div>
<?php
}
?>
</div></div>
<div class="xxs_boxBottom"></div>
Hasn't been released yet though, I am sharing it now
Hee Sorry maar de Client laat niet bij mij?
Kan iemand helpen?
____________________________________________
Hey sorry but the client does not let me in?
Can anyone help?
Can I only use Phoenix Emu? Aaron from Otaku stole money from me.. He took my licence and I have paid 20£ !! So I am not going to use Phoenix emulator.
Version 2 is released :D.
Why I can't edit the title anymore :$?
Hello, where cant i find all enable codes the new habbo enable snowbeard...
Please help me.:P:
Can you help me with the client please? Add me on msn: omaralali12@hotmail.com :D:
Lol ^^ Its not me who made it so ..
Hee Sorry maar de Client laat niet bij mij?
Kan iemand helpen?
____________________________________________
Hey sorry but the client does not let me in?
Can anyone help?
Change the IP'S in your external_varibles.txt to your (hamachi ip) or (your VPS ip if you have one) or (your normal ip What Is My IP Address - Shows Your IP Address if you have portforwarded habbo)
Does any one have a good swf release i can use
I love it! (Maybe cuz i see my name in the footer)
I added the new version 2 when i click enter i load 55% then it goes to the login page id sapose the solutuon would be to update the webbuild and change the swfs im ganna give it a go see what the results are
5 min later.....
im hosting my own swfs that work for a fact and when i looked at the client.php theres an automatic webbuild in there so i dont have to change it yet the hotel loader is stuck at 33%
10 min later.... i played with swfs for a little and it loaded but now that iv got my hotel loaded any one who needs help message me and ill get back to u but right now im ganna try to add customs and see where i can get
Client gets stuck at 33% ?
English: Hello I have a problem with my client, he shows up to 100% (86%) then there is an error equal to stand on my emulator and he just connects and throws me right out! why? Please help me
Dutch:Hallo ik heb een probleem met me client hij laat tot 100% (86%) dan komt er gelijk een error te staan en op me emulator dat hij gewoon verbinding maakt en gooit me gelijk er uit! hoe kan dat? help me aub
Problem: http://img1.uploadplaatjes.nl/20120410/520731.jpg
Nederlands- PremiumEye kan je me alsjeblieft helpen mijn client laad niet hij blijft maar op 0% staan ik weet niet wat er mis is.
Engels- PremiumEye can you help me my client does not load it stays at 0% but I do not know what is wrong.
I'm dutch
je had het beter Super_cms kunne noemen XD
Hey what do you mean? with you Do you have a security program? I understand you do not really
People, some information about the next release
- There will be new buttons! The official button of habbo. (yes, with icons.)
- Not text in images! All with html and php!
- bugfixes with enter is 'rn' in news and profile text
- More language changes in cms possible
- Updated badges and topstory images
- Than I go release my swf's! (not in the same packet but in the department 'swfs' of my thread.
- files and folders more organized
- If you want, I release in other packet vBulletin if you want a forum on your hotel. (doesn't need sql file! vBulletin is going to install by himself.
- manager is going to be a liddle bit faster.
- maybe more home options
- better header stay on top bar. (not floating anymore)
- close or open your hotel. (with green and black button changing, and if you try to go in the client, you wil redirect to me page.)
- deleted copyright image.
- deleted all other images with text.
- made cms lighter.
For so far, is this what is going to come. (already some things done.)
Anyone, more ideas? Tell them! Send a email to:
tonnyscript@hotmail.com
Yeah, Just how I say. Do you have a security program on your pc. As, AVG Internet Security 2012, Norton, MCaffee, etcc.
Dat is wel een heel klein beetje overdreven :blush:, maar mijn cms begint er al wel op te lijken :w00t:.
That is a liddle bit to much :blush:, but my cms is almost begins to look like :w00t:
I'm norton
r63.rar
Those SWF's works with the EMULATOR you download with the cms. :) Remember this: change the ips in the external_variables.txt to your hamachi ip or your normal ip if you have portforwarded or your vps ip if you got a vps. If you need help add me on msn: omaralali12@hotmail.com. I help you set your hotel free, but because its you I also setup your client free.
GUYS IF YOU DON'T KNOW WHICH SWF'S WORKS WITH THE EMULATOR YOU DOWNLOADED WITH THE CMS THEN DOWNLOAD THOSE
If you need help add me on msn. omaralali12@hotmail.com
Peace :D:
r63.rar
Okay. Hmm. Every security program blocks the emulator. What you must to do is givin acces to your emulator to connect with internet. Add me on msn. Tonnyscript@hotmail.com
Maybe I can see what is wrong.
Posted via Mobile Device
Yeah thanks. I'll put it in the headpost tomorrow. And I going to upload my swf's too. ;)
Posted via Mobile Device
Misschien heb ik het alleen, maar de client laad soms 33% als ik de external ofzo verander. Als ik hem weer goed zet, laad die nog op 33%
BTW: Pixels doen het ook nog niet zo
Aan omaralali12
Nederlands-Er staat een wachtwoord op de download??
Engels-There is a password on the download?
Aan PremiumEye
Nederlands- PremiumEye kan je me alsjeblieft helpen mijn client laad niet hij blijft maar op 0% staan ik weet niet wat er mis is.
Engels- PremiumEye can you help me my client does not load it stays at 0% but I do not know what is wrong.
I'm dutch
je had het beter Super_cms kunne noemen XD
:thumbup:
Looks Good hope to get it
ik kan je wel helpen.
Msn:
Bartvanhoekelen@live.nl
Swf's are released ;). (dutch swf's are on the way!)
its fix it me hotel
Now released the Dutch swf's too ;).
client doet het nog niet
the client is not loading>>?<<
With my old swf it works fine. But if i download the the homepremium SWF its stucks at 33%
Met mijn oude SWF werkte de client goed. Nu ik jou SWF heb stopt de client op 33%, alles is goed in de config etc. -.-
EDIT 1: Problem fixed :D
EDIT 2: Its looks the same as Jamie Turner SWF!
EDIT 3: Can you upload the dutch SWF to on Mediafire? Rapidshare downloads slow for me. :(
reason why it's stuck is because you gota fix urls inside the external_varibles.exe by editin http://something/ or w.e you see in file :) and then try again and if it stays on 33% still then clean your web browser cache and try loading client again and if it stops on 33% once again then view external_varibles.txt with your web browser and if you see info is old refresh it a few times untill it updates to new info then try the client again and then client should load 100% :)
Here is an edited version of HomePremiumCMS english; Have a few spots i could of fixed,
Post if you see anything I'll fix and re-upload.
Just so everyone can stop complaining I posted this;
http://timmex.hyper-core.org/ < preview <
timmex.hyper-core.org/HomePemiumCMS_v2.1EN.zip
there is a bug on mobile page of cms :/ when i view it with my mobile it first takes me to index.php then another page pops up after loading and then it redirects me to file called fout.php directely after like it thinks im not on mobile device when i am and language needs fixing on mobile version to.
Yeahh forum! But maybe for the noobs a easy disable button?
Pretty much an on/off switch lol. Turn it on if you want it, off if you don't.
help my now my client is not loading 0%
When I try to register the data isnt saved to the database. It worked yesterday though. Any fixes?
Is this is secure? :)
My only problem with this CMS is that the hotelview image loads for a split second then goes black. No matter what I do.
Any Suggestions?
Jares, do you mean the cms hotelview or the external_variables hotel view?
PremiumEye, fixed it.
The client will only loads up 33% [url=http://imageshack.us/photo/my-images/43/clientcm.png/]ImageShack