Mobile Chat V2.0.1
/**
* @authors Ghost & DEViANCE (CODEMAFiA.ORG)
* @copyright 2008-2009 Mobile Chat
* @version 2.0.1 (wml 1.1 EN)
*/
Copyright:
In this version we tried to clean up the coding, add new smileys pack (MINI) beta for phones as they are smaller, create a config file and sort the variables making it easier to look after your site, created a beta version of the timezone converter (now located in config file), fix a logout error with admin, and many more changes..
heres the complete overview:
heres what you can do from config file:
conditions have not changed:
Use: its ok to use this script but our copyright lines/links/headers must NOT be removed.
You can distribute this script but only as it is,
not your modified version.
-------------------------------
with that said happy coding friends and we hope you enjoy this fine release.
---
Ghost (aka headhunter)
Deviance (aka ukchatad, wappy, chatabox, etc,)
---
Added oldest to newest old single chatroom's didnt fancy reopen old stuff, just didnt have any working links
/**
* @authors Ghost & DEViANCE (CODEMAFiA.ORG)
* @copyright 2008-2009 Mobile Chat
* @version 2.0.1 (wml 1.1 EN)
*/
Copyright:
Code:
http://www.copyrightdeposit.com/rep10/0029675.htm
heres the complete overview:
================
CHANGES IN 2.0.1
================
1. updated/edited
install.txt file
read_me.txt file
script_license.txt file
support.txt file
2. cleaned up more code
3. recoded nearly all links to help
pages refresh properly.
(NEW)
4. added an upgrade.txt file
(instrustions on how to keep old users/members info)
(NEW)
5. added a vote.txt file.
(please read if you have not already!)
(NEW)
6. also added THIS changes.txt file which will
be used to show the changes the script goes through
(WE WILL TRY TO KEEP NEW VERSIONS/CHANGES TO TOP OF THE PAGE)
(NEW)
7. created configuration file
for easy editing of sites attributes.
(NEW)
8. recoded $variables to be used
from within the configuration file.
(NEW)
9. removed luonti.wml and recoded
and renamed to luonti2.php.
(NEW)
10. totally re-wrote the time code for easy
timezone editing using hours and minutes.
(NEW)
11. added a brand new (MINI) smileys pack
and totally re-wrote smileys in alphabetical order.
(NEW)
12. added rss news feeds to index page and fixed
the extra/blank feeds bug.
13. removed ALOT of useless small tags that
did absolutly nothing from every page.
14. removed nearly ALL bold tags from every file.
15. removed ALOT of break tags that was taking
up alot of un-needed space.
16. fixed smileys count in chat.php.
17. fixed error that happens when an admin logs out.
=====================[/b]
CHANGES IN 2.0.1
================
1. updated/edited
install.txt file
read_me.txt file
script_license.txt file
support.txt file
2. cleaned up more code
3. recoded nearly all links to help
pages refresh properly.
(NEW)
4. added an upgrade.txt file
(instrustions on how to keep old users/members info)
(NEW)
5. added a vote.txt file.
(please read if you have not already!)
(NEW)
6. also added THIS changes.txt file which will
be used to show the changes the script goes through
(WE WILL TRY TO KEEP NEW VERSIONS/CHANGES TO TOP OF THE PAGE)
(NEW)
7. created configuration file
for easy editing of sites attributes.
(NEW)
8. recoded $variables to be used
from within the configuration file.
(NEW)
9. removed luonti.wml and recoded
and renamed to luonti2.php.
(NEW)
10. totally re-wrote the time code for easy
timezone editing using hours and minutes.
(NEW)
11. added a brand new (MINI) smileys pack
and totally re-wrote smileys in alphabetical order.
(NEW)
12. added rss news feeds to index page and fixed
the extra/blank feeds bug.
13. removed ALOT of useless small tags that
did absolutly nothing from every page.
14. removed nearly ALL bold tags from every file.
15. removed ALOT of break tags that was taking
up alot of un-needed space.
16. fixed smileys count in chat.php.
17. fixed error that happens when an admin logs out.
=====================[/b]
Code:
<? /* chat script config file STARTS HERE */ /* site address (put your site address or site name here) */ $sitename = ""; /* align whole site (enter 1 of the 3) (left , center , right) */ $align = "center"; /* Chat messages (show how many messages) */ $chat_lines = "14"; /* site image (put your site logo here) */ $image = "<img src=\"images/logo.gif\" alt=\"wapchat\"/> \n"; /* timezone Add how many hours and minutes you need (change the FIRST + symbol after time() ONLY!) (do not touch the second symbol) ("+" = forward "-" = backwards) NOTE: ONLY CHANGE THE + SYMBOL IF YOU NEED TO GO BEHIND SERVER TIME */ $hours = ""; $mins = ""; $timezone = time() + ($hours)*60*60 + ($mins)*60; $time=date("H:i",$timezone); /* current date (DO NOT CHANGE UNLESS YOU KNOW HOW TO) */ $currentdate = "".date("D d M y - ").""; /* validate (CHANGE wapchat.us.to IN THE URL) */ $validate = "<a href=\"http://validator.w3.org/check?uri=http%3A%2F%2Fwapchat.us.to%2F\">WML 1.1</a>"; /* protection (protect upto 2 usernames here) */ $protect1 = "ghost"; $protect2 = "deviance"; ///////////////////////////////// //OUR copyright (DO NOT TOUCH)/// ///////////////////////////////// $copyright = "<a href=\"http://www.copyrightdeposit.com/rep10/0029675.htm\">© Mobile Chat</a> ".$sitename." - ".date(Y); /* chat script config file ENDS HERE */ ?>
Use: its ok to use this script but our copyright lines/links/headers must NOT be removed.
You can distribute this script but only as it is,
not your modified version.
-------------------------------
with that said happy coding friends and we hope you enjoy this fine release.
---
Ghost (aka headhunter)
Deviance (aka ukchatad, wappy, chatabox, etc,)
---
Added oldest to newest old single chatroom's didnt fancy reopen old stuff, just didnt have any working links
Comment