Page 4 of 7

Re: Ice Dynasty CMS Lite

PostPosted: Wed Feb 20, 2013 3:23 pm
by Rakoon
Hello,

i install it, its show i have error in line 8 in file goinstall.php

its works fine but, when it try to login bu user or admin the page doens't open, could anybody tell me how to make it.

Best Regards,

Re: Ice Dynasty CMS Lite

PostPosted: Thu Feb 21, 2013 9:15 pm
by Rakoon
is this a dead project ?

i saw this cms is good one but need little fixed, if anybody still used it and he can help it will be okay.

this what happen after login in admin area

Image

Re: Ice Dynasty CMS Lite

PostPosted: Fri Feb 22, 2013 2:20 am
by wolfwing
Stop double posting for fucks sake.

Re: Ice Dynasty CMS Lite

PostPosted: Fri Feb 22, 2013 11:35 am
by Rakoon
wolfwing wrote:Stop double posting for fucks sake.


if you try to help that will be better than to say others words that no meaning. :roll:

Re: Ice Dynasty CMS Lite

PostPosted: Sat Feb 23, 2013 4:46 pm
by Rakoon
Nobody answer

it should be more CMS here and new with update to improve,Because there is too many problems and no support for it. :roll:

Re: Ice Dynasty CMS Lite

PostPosted: Sat Feb 23, 2013 5:50 pm
by jwpatser
What does line 8 say in the PHP file?

Re: Ice Dynasty CMS Lite

PostPosted: Sat Feb 23, 2013 7:00 pm
by Rakoon
jwpatser wrote:What does line 8 say in the PHP file?


Hello,

its say i have error in line 8 in file goinstall.php

after install i try to login in admin area also but when i login its doesn't show any cp for admin its also in user, You will find pic from the problem in my old posted, The only things works the register side only.

Re: Ice Dynasty CMS Lite

PostPosted: Sun Feb 24, 2013 8:57 pm
by Circa
Rakoon wrote:
jwpatser wrote:What does line 8 say in the PHP file?


Hello,

its say i have error in line 8 in file goinstall.php

after install i try to login in admin area also but when i login its doesn't show any cp for admin its also in user, You will find pic from the problem in my old posted, The only things works the register side only.

....

he's asking what is in line 8 IN goinstall.php

he's not asking what error its giving you, and why would he want you to repeat the same thing you already mentioned in your other post................................................

Re: Ice Dynasty CMS Lite

PostPosted: Mon Feb 25, 2013 12:04 pm
by jwpatser
Circa wrote:
he's asking what is in line 8 IN goinstall.php

he's not asking what error its giving you, and why would he want you to repeat the same thing you already mentioned in your other post................................................

Yes what circa said.

I'm going to look into it today and see if I have any problems with it but I'll need to install rose again.

Re: Ice Dynasty CMS Lite

PostPosted: Mon Feb 25, 2013 11:44 pm
by Rakoon
Hello,

i am sorry about that i will show you the error with what is in line 8 in goinstall.php

Notice: Undefined variable: buffer in C:\xampp\htdocs\install\goinstall.php on line 8


Ice Dynasty CMS has been installed successfully.


  1. <link href="install.css" rel="stylesheet" type="text/css" />
  2. <style type="text/css">
  3. <!--
  4. .style3 {font-size: 9pt; color: #000000; }
  5. -->
  6.         </style>
  7. <?php
  8. $buffer .= "<?php\n";
  9. $buffer .= "// Ice Dynasty CMS Configuration\n";
  10. $buffer .= "\n";
  11. $buffer .= "// ************************\n";
  12. $buffer .= "// Database Configuration\n";
  13. $buffer .= "// ************************\n";
  14. $buffer .= "\n";
  15. $buffer .= "\$dbhost            =   '".$_POST['host']."';           // Database Password\n";
  16. $buffer .= "\$dbuser            =   '".$_POST['user']."';           // Database Username\n";
  17. $buffer .= "\$dbpasswd          =   '".$_POST['pass']."';           // Database Password\n";
  18. $buffer .= "\$dbname            =   '".$_POST['data']."';           // Database Name\n";
  19. $buffer .= "// ************************\n";
  20. $buffer .= "// Status Configuration\n";
  21. $buffer .= "// ************************\n";
  22. $buffer .= "\$host          =   '127.0.0.1';            // Server IP for status\n";
  23. $buffer .= "\$log_port          =   '29000';            // Server port for status\n";
  24. $buffer .= "\$char_port             =   '29100';            // Server port for status\n";
  25. $buffer .= "\$world_port            =   '29200';            // Server port for status\n";
  26. $buffer .= "\$lonline           =   '<img src=pixels/online.png>';          // To say when login is online\n";
  27. $buffer .= "\$conline           =   '<img src=pixels/on2.png>';         // To say when char is online\n";
  28. $buffer .= "\$wonline           =   '<img src=pixels/on3.png>';         // To say when world is online\n";
  29. $buffer .= "\$loffline          =   '<img src=pixels/offline.png>';         // To say when login is offline\n";
  30. $buffer .= "\$coffline          =   '<img src=pixels/off2.png>';            // To say when char is offline\n";
  31. $buffer .= "\$woffline          =   '<img src=pixels/off3.png>';            // To say when world is offline\n";
  32. $buffer .= "?>\n";
  33. // Load defaults...
  34. mysql_connect($_POST['host'], $_POST['user'], $_POST['pass']);
  35. mysql_select_db($_POST['data']);
  36.  
  37. $drop = mysql_query("DROP TABLE IF EXISTS dynastycms");
  38. $create = mysql_query("CREATE TABLE dynastycms (Admin varchar(100), GM varchar(100), Dev varchar(100), title varchar(100), forums varchar(100), client varchar(100), patch varchar(100), exprate varchar(100), droprate varchar(100), zulyrate varchar(100))");
  39. $insert = mysql_query("INSERT INTO dynastycms (Admin, GM, Dev, title, forums, client, patch, exprate, droprate, zulyrate) VALUES ('".$_POST["Admin"]."', '".$_POST["GM"]."', '".$_POST["Dev"]."', '".$_POST["title"]."', '".$_POST["forums"]."', '".$_POST["client"]."', '".$_POST["patch"]."', '".$_POST["exp"]."', '".$_POST["drop"]."', '".$_POST["zuly"]."')");
  40.  
  41. $drop2 = mysql_query("DROP TABLE IF EXISTS icenews");
  42. $create2 = mysql_query("CREATE TABLE icenews (id int(100), news_date varchar(100), news_title varchar(100), news varchar(1000), events_date varchar(100), events_title varchar(100), events varchar(1000), updates_date varchar(100), updates_title varchar(100), updates varchar(1000))");
  43. $insert2 = mysql_query("INSERT INTO icenews (id, news_date, news_title, news, events_date, events_title, events, updates_date, updates_title, updates) VALUES ('NULL', 'news date', 'news title', 'this is the news page, edit this in the admin panel', 'events date', 'events title', 'this is the events page, edit this in the admin panel', 'updates_date', 'updates_title', 'this is the updates page, edit this in the admin panel')");
  44.  
  45. if(!$create) {
  46. echo '<p class="style3">Cannot create dynastycms tables!</p>';
  47. exit();
  48. }
  49. if(!$create2) {
  50. echo '<p class="style3">Cannot create icenews tables!</p>';
  51. exit();
  52. }
  53.  
  54.  
  55.  
  56. $f = fopen('../functions/config.php', 'w');
  57. $fd = fwrite($f, $buffer);
  58. $fe = fclose($f);
  59. $link = "../index.php";
  60.  
  61.  
  62. if(!$f) {
  63. die("Cant open the configuration file!!");
  64. }
  65. if(!$fd) {
  66. die("Cant write to the configuration file!!");
  67. }
  68. else
  69. {
  70. $asd = "../index.php";
  71. echo "<BR><BR><center><p class='style3'>Ice Dynasty CMS has been installed successfully.";
  72. }
  73. ?>