Ice Dynasty CMS Lite

This is guide mostly for website tools and code, for example CMS or registration scripts.
There can also be tools.

Moderators: osRose dev team, ospRose dev team, osiRose dev team, Moderators

Re: Ice Dynasty CMS Lite

Postby PurpleYouko on Sat Sep 30, 2017 4:03 pm

Could it be that the PHP version is no longer current.

There were some big format changes between the older versions such as 5 and the newer version 7
Those changes killed a lot of my website stuff when the server version were changed, including my rose compendium, which is fixed now (but kind of out of date)
Need to lookup information on NARose items, skills, quests?
Now featuring a newly completed skill tree for all classes
Formatting fixed for different resolutions
Image

"A Gazelle is nothing but a giraffe plotted logarithmicaly"
User avatar
PurpleYouko
Rose Guru
Rose Guru
 
Posts: 4733
Joined: Fri Aug 10, 2007 2:05 pm

Re: Ice Dynasty CMS Lite

Postby Blackdpd on Sat Sep 30, 2017 8:17 pm

Oh, after clicking the download button it says:
"The file link that you requested is not valid. Please contact link publisher or try to make a search."

So basically it's gone, unless someone reuploads it. Sorry I can't help you with that because i dont have any of the Dynasty CMS's :(
User avatar
Blackdpd
El Verloon Marshall
El Verloon Marshall
 
Posts: 900
Joined: Sun Jan 27, 2008 10:06 pm
Location: The Netherlands

Re: Ice Dynasty CMS Lite

Postby PurpleYouko on Sun Oct 01, 2017 2:57 am

Me neither. I never used it. If i wanted a rose CMS I just made my own. I've done several over the years.
Need to lookup information on NARose items, skills, quests?
Now featuring a newly completed skill tree for all classes
Formatting fixed for different resolutions
Image

"A Gazelle is nothing but a giraffe plotted logarithmicaly"
User avatar
PurpleYouko
Rose Guru
Rose Guru
 
Posts: 4733
Joined: Fri Aug 10, 2007 2:05 pm

Re: Ice Dynasty CMS Lite

Postby AnimalCrackerz on Sun Oct 01, 2017 8:28 am

Really not sure why yours so in a fit about this CMS? but here :roll:
Attachments
Ice-Dynasty.zip
(364.75 KiB) Downloaded 758 times
AnimalCrackerz
Pomic
Pomic
 
Posts: 102
Joined: Tue Apr 20, 2010 1:58 pm

Re: Ice Dynasty CMS Lite

Postby stefan1994 on Fri Oct 06, 2017 11:55 am

ty animal

ad why is it that way that on all cms is it that lots of pages doesnt work like controll pannel for players and admin and all that kind of stuff
stefan1994
Little soul
Little soul
 
Posts: 9
Joined: Fri Aug 18, 2017 8:47 pm
Location: netherlands

Re: Ice Dynasty CMS Lite

Postby hoegarden31 on Fri Nov 03, 2017 11:23 pm

I wouldn't use those cms websites too. Most of them are using old functions and stuff.
Maybe when it is cold here and i have some free time, I will make a new one compatible with php 7 and mostly bootstrap (or any other responsive design)
I'm the one and only. In heaven and on earth.
Image
hoegarden31
Rackie
Rackie
 
Posts: 150
Joined: Sun Nov 13, 2011 7:13 pm

Re: Ice Dynasty CMS Lite

Postby PurpleYouko on Sat Nov 04, 2017 11:49 pm

one of the biggest issues is that over the years, the databases have changed somewhat so that the older CMS sites don't even load in the correct data any more.
You pretty much need a different format on your backend database management for each server version. There is no "one size fits all" solution unless somebody builds out something that uses multiple cnfigurations.
Need to lookup information on NARose items, skills, quests?
Now featuring a newly completed skill tree for all classes
Formatting fixed for different resolutions
Image

"A Gazelle is nothing but a giraffe plotted logarithmicaly"
User avatar
PurpleYouko
Rose Guru
Rose Guru
 
Posts: 4733
Joined: Fri Aug 10, 2007 2:05 pm

Re: Ice Dynasty CMS Lite

Postby hoegarden31 on Sun Nov 05, 2017 12:13 am

we can kind of solve that with views in the database. All the admin has to do is map the correct tables and fields...
I'm the one and only. In heaven and on earth.
Image
hoegarden31
Rackie
Rackie
 
Posts: 150
Joined: Sun Nov 13, 2011 7:13 pm

Re: Ice Dynasty CMS Lite

Postby PurpleYouko on Sun Nov 05, 2017 5:04 pm

hoegarden31 wrote:we can kind of solve that with views in the database. All the admin has to do is map the correct tables and fields...

Exactly. that's what i meant by multiple configurations. ;)
It's easily solvable in any newly made system but potentially a little more tricky when working with an older CMS. Depends how it's coded. If it's modular in any way then it's easy otherwise not so much
Need to lookup information on NARose items, skills, quests?
Now featuring a newly completed skill tree for all classes
Formatting fixed for different resolutions
Image

"A Gazelle is nothing but a giraffe plotted logarithmicaly"
User avatar
PurpleYouko
Rose Guru
Rose Guru
 
Posts: 4733
Joined: Fri Aug 10, 2007 2:05 pm

Re: Ice Dynasty CMS Lite

Postby XxXshidoXxX on Thu Apr 05, 2018 4:20 pm

If any of you is interested in using these files in 2018 make sure you use a compatible version of php.
These files were designed for version 5.5 and older, so if you're using any of the recent stuff it will not work ( if you installed wampp or xampp recently it will not work ).

If you're not sure what version of php you are using you can check it here :
http://127.0.0.1/phpmyadmin/ ( or whatever ip your server might use )
http://127.0.0.1/dashboard/phpinfo.php
Or simply create a php file with this on it
  1. <?php
  2. echo 'Current PHP version: '. Phpversion();
  3. ?>

and then browse it.

Most of the compatibility issues come from the fact that php dropped the MYSQL support after 5.5.
It has now been replaced by MySQLi or PDO.

Example : old code looked like that :
  1. mysql_connect($dbhost, $dbuser, $dbpasswd) or die('Could not establish database connection.');

When in php 7 it should be like that :
  1. <?php
  2. $connection = mysqli_connect('dbhost', 'dbuser','dbpass');
  3. if (!$connection){
  4.     die("Database Connection Failed" . mysqli_error($connection));
  5. }
  6.  

Keep in mind that this is not limited to mysql_connect, other function such as select ect...have a new equivalent today.

Making theses files compatible with php 7 shouldn't be too hard. Your work would mostly be traducing the old MySQL function to the new MySQLi one.
My collection ( Tools, clients sources...)
https://mega.nz/#F!AdcFnQDL!sKp3O9tWGGdWvLEj_EYfwA
osrose mobile project
viewtopic.php?f=34&t=5787
OsRose Mobile development + Titan Rose redesign
https://github.com/shid0x
XxXshidoXxX
osiRose dev
osiRose dev
 
Posts: 445
Joined: Mon Aug 27, 2007 11:44 am

PreviousNext

Return to PHP / Web Guides, Scripts and tools.

Who is online

Users browsing this forum: No registered users and 6 guests