Jump to content
xisto Community

wappy

Members
  • Content Count

    165
  • Joined

  • Last visited

Everything posted by wappy

  1. this may sound bad but i think its quite funny pmpl a much better use of hacking skills. I say this cos in the past i have had very popular sites hacked, deleted, and scripts distributed by jealous and destructive hackers.If they work with computers and are good at it anyway it will help them get a better position i guess lol
  2. Here is my new wap mail script. You can use it as a free email sending service or an email admin form (can set this option in config.php)its extremly simple to install and you will find full instructions in the zip file.Please feel free to comment, rate, or update this script :-)
  3. here is a very old version of my wap chat script, its not very advanced but has privates, smileys etc. I will post some further versions (with owner, admin, mod status and profiles) when i have time to write the readme/install instructions for them.You will find instructions inside the zip. If you have any problems post here but i know it don't work on all servers for some reason but it does work on the trap server so will be cool ok
  4. wappy

    Php Ftp Client

    mmm not sure if this will help you that much but if you go to my wap site (visit with opera) click scripts and then download wappyFTP_v1.00.zip you can work out how to connect and upload. Its just a simple script so users can upload stuff to server via a mobile phone. Also the script is set up on my wap site (FTP UPLOAD) has a little rocket icon next to it :-)---infact here i attached it for you :-)
  5. Right promise not to laugh lol:1. Badgirls2. Funland3. Coronation street (cowars in shame)4. Eastenders (god i hope none of my mates see this)5. Mmm its gonna have to be The Bill
  6. no no no you are all crazy he he. Ken wins hands down. I think he looks so cool in the purple outfit. Also i think i know the small differences between them. Ken has slower fireballs but a stronger and further reaching dragon punch, ryu his kick goes a small bit further but he does less damage. Also you know the random red fireballs, well they come more from ryu but ken will still kick his but in a fair fight. I recommend watching the manga movies if your a streetfighter fan. The old one you get free with the new x box copy of the game, you know like the history one with all the old versions. A must buy, and its cheap as chips.
  7. i think the best one is the first capcom/streetfighter game but none of them will ever beet the hacked copy of streetfighter 2 champion edition i used to play in the arcade when i was about 12, it was mad i don't know if they done it on purpose but it was way to fast an fireballs and dragon punches work in the air! And it was only ten pence! Yeah, i spent many hours bumping ten p pushers to play that lol. O and characters, gotta be KEN, OR RYU ah those where the days!
  8. i much prefer metal gear for one simple reason, it took me much much much longer to complete than the first splinter cell, i admit after wasting 40 pound on the x box copy of splinter cell and finishing it the same day i haven't tried any of the new ones. Think i got pandora tomorrow laying about for pc somewhere maybe i will install it oneday and try but im sure i will never be as happy with it as any of the metal gear series. Even the first ones on the nintendo entertainment system i still play on my phone via rom's an emulators (i do own the originals so am not breaking the law just can't put my NES in my pocket. Final word, metal gear all the way, solidsnake or sam fisher pmpl you know it :-)
  9. Hi my name is chris but am better know on web/wap as WAPPY.Im 24, male, from bristol in england.I like to party alot. Also one of my favourite hobbys is to build wap/mobile sites but have also started building/modding a web forums site (phpBb) which i have found just as enjoyable.Im medium height and build with brown eyes and a shaved head.Many people hate me on wap/mobile, but its not really me they hate, but themself's for not having the balls or intelligence to stop being SHEEP and become a LEADER.I hate hackers and anyone destructive.I like anyone who is polite and don't bug me for help all day lol
  10. or you could create a script to tell you how much disk space has been used on your account (not including database) i learnt how to do it on php.net you can use this code: function dskspace ($dir){$s = stat ($dir);$space = $s ["blocks"]* 512;if (is_dir ($dir)){$dh = opendir ($dir);while (($file = readdir ($dh)) !==false)if ($file != "." and $file != "..")$space += dskspace ($dir . "/" . $file);closedir ($dh);}return $space;}the above code is a function and you can use it on many pages if you put it in a file (for example filefunction.php) and include it on which ever page you wish. Then add this code to the page: include ('filefunction.php');$all = dskspace ('./'); //change this to the directory you want to tell the size of it will give size of that directory and all sub directorys :-)$all = round ($all/1024000,1);$mb = "mb";echo "-Used: $all$mb<br/>";enjoy :-)
  11. i build wap/mobile sites so i use php/wml/xhtml/mysql but sometimes use text file database for some scripts. You can see examples or download some of my scripts on my wap site :-)
  12. thanks to person above :-) and here is a nice new update --- Here is another update of the counters code, it now has weekly, monthly, and yearly estimates based on the visits recieved on the current daily hits as well as the estimates based on the total average hits. (hope that makes sense lol) just make sure you have created any files refered to in this code in a folder called counters, and paste this code on the index of your site. Please feel free to update it and post here your updates :-) //////(c)wappyCOUNT//daily hits$fn = "counters/wappyCOUNT.txt"; $fp = fopen($fn, "a+"); $fs = filesize($fn); $tdy = date("d/m/y"); if ($fs==0) { $dailyhits = 1;$open = 0; fwrite($fp, $tdy."-".$dailyhits."-".$open); }else{ $info = fread($fp, $fs); $cdata = explode("-", $info); ftruncate($fp, 0); if($tdy==$cdata[0]) { $dailyhits = $cdata[1]+1;$open = $cdata[2]; fwrite($fp, $tdy."-".$dailyhits."-".$open); }else{$dailyhits = 1;$open = $cdata[2]+1; fwrite($fp, $tdy."-".$dailyhits."-".$open); } } fclose($fp); echo "-Daily hits: $dailyhits<br/>";echo "-Days open: $open<br/>";//total hits$counter_array = file("counters/counter.dat");$total = $counter_array[0]+1;$fp = fopen("counters/counter.dat","wb");fputs($fp,$total);fclose($fp);echo "-Total hits: $total<br/>";//average daily hits$average = $total/$open;$average = round ($average);echo "-Daily average: $average<br/>";//average hourly hits$averagehour = $average/24;$averagehour = round ($averagehour);$averagehourtoday = $dailyhits/24;$averagehourtoday = round ($averagehourtoday);echo "-Hourly average: $averagehour|$averagehourtoday<br/>";//est week hits$estweek = $average*7;$estweek = round ($estweek);$estweektoday = $dailyhits*7;$estweektoday = round ($estweektoday);echo "-Weekly est: $estweek|$estweektoday<br/>";//est month hits$estmonth = $average*31.4;$estmonth = round ($estmonth);$estmonthtoday = $dailyhits*31.42;$estmonthtoday = round ($estmonthtoday);echo "-Monthly est: $estmonth|$estmonthtoday<br/>";//est year hits$estyear = $average*365;$estyear = round ($estyear);$estyeartoday = $dailyhits*365;$estyeartoday = round ($estyeartoday);echo "-Yearly est: $estyear|$estyeartoday<br/>";
  13. yes i love the layout and design of this site. And my bad spelling makes me use edit button alot lol, also i use a phone with opera browser to use this site and it works very nice unlike alot of other sites. Good job :-)
  14. i own wap and web site on my account and i know two great top sites that let you put your wap and web url's so users can visit either. With this method i can link to them on my wap site and also my web site in theory sending them more clicks and therefore getting more back. The sites are surfwap.com and mradar.com but with mradar only join if your site is very busy as you must send around 50 clicks a day to stay on their list but if you can manage this you will be very happy with the return trust me :-)
  15. right regarding my site being hacked. Im not sure ok but my last two accounts (not trap) were hacked (cos they want my wap scripts as im king wap coder he he) and they did post all of my files on a web forum. I got them back by obtaining and distributing the full ravingwap.net script which was owned by dj.dance who hacked the last accounts. Now a guy called bluebean is claiming to have hacked my trap account and is distributing my files via email. Some nasty users back this up by saying they have a full copy of my site (cult.trap17.com) but i myself have not seen it or have not got any proof of this. I belive that they use the old intitle:"index of" trick google hacking but i tried to hack myself in this way and after two hours gave up as i couldn't do it lol / but buffaloHELP you must teach me any techniques to make my site more secure. Im very carefull with my passwords and they are extremly long combinations of numbers and letters containing no words that would appear in a dictionary ok so they must be doing it some other way. Im sure by google hacking. Google really should be informed of this so they can put a filter on their search engine. I hate them. :-)
  16. sorry yes the charset and increment lines i think. I have managed to get on that works and also has another table for a reset clock, here is the new code but i would still like to know why the first one didn't work as i have used it before, very recently infact but on a different server :-) -- -- Table structure for table `uglymonkey_toplist`-- CREATE TABLE `uglymonkey_toplist` ( `id` int(4) NOT NULL auto_increment, `name` varchar(30) NOT NULL default '', `pass` varchar(30) NOT NULL default '', `mail` varchar(100) NOT NULL default '', `link` varchar(150) NOT NULL default '', `logo` varchar(150) default NULL, `cat` varchar(20) NOT NULL default '', `date` datetime NOT NULL default '0000-00-00 00:00:00', `lastout` datetime NOT NULL default '0000-00-00 00:00:00', `lastin` datetime NOT NULL default '0000-00-00 00:00:00', `incoming` int(10) NOT NULL default '0', `out` int(10) NOT NULL default '0', `total` int(10) NOT NULL default '0', `description` varchar(150) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`)) TYPE=MyISAM AUTO_INCREMENT=22;-- -- Clock for counter reset `uglymonkey_clock`-- CREATE TABLE `uglymonkey_clock` ( `time` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`time`), UNIQUE KEY `name` (`time`)) TYPE=MyISAM AUTO_INCREMENT=22;
  17. hi, im really confused, i just tried to install an sql file for a wap top list that i have used before on other hosts, but when i import it it says the is an error with it but its worked for me in the past?? Can anyone help me work out why the code is giving me an error? Here is the sql file: -- Table structure for table `uglymonkey_toplist`-- DROP TABLE IF EXISTS `uglymonkey_toplist`;CREATE TABLE `uglymonkey_toplist` ( `id` int(4) NOT NULL auto_increment, `name` varchar(30) NOT NULL default '', `pass` varchar(30) NOT NULL default '', `mail` varchar(100) NOT NULL default '', `link` varchar(150) NOT NULL default '', `logo` varchar(150) default NULL, `cat` varchar(10) NOT NULL default '', `date` datetime NOT NULL default '0000-00-00 00:00:00', `lastout` datetime NOT NULL default '0000-00-00 00:00:00', `lastin` datetime NOT NULL default '0000-00-00 00:00:00', `incoming` int(10) NOT NULL default '0', `out` int(10) NOT NULL default '0', `total` int(10) NOT NULL default '0', `description` varchar(150) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=97;-- -- -- please help me i really need to get this working =[
  18. thanks alot, that is exactly what i was looking for :-) i can finish my script now, thanks again :-)
  19. im not doing that but i am here browsing on a nokia 6630 with opera mobile 8.60 and its about 4-6kb download speed and even higher if i use the 3g setting, i also use this phone to upload scripts to my site and do lots of cool stuff. Even to play doom and other cool old games :-) you really should get a better phone if you can, i couldn't live without my smart phone :-)
  20. Hey im very impressed with this! I can think of many uses for it! And yes will be great for random images in sig's. Where did you get this code or did you write it yourself?
  21. I added one of my wap scripts to fatscripts but they never added it! *stamps his feet* why? It was all my work and it is a cool script. It is a shout box for wap sites. I put it in the wml/wap category so why won't they add? Grrr they should mail me i think :-[
  22. Does anyone have a script like this that will work with international code like +44 for uk etc?? Its possible for sure as i have used such free sms services myself. :-)
  23. If you are looking for good WAP SCRIPTS you can find lots on my wap script site but you MUST visit with opera or another wap capable browser http://forums.xisto.com/no_longer_exists/ there also some scripts here that i have created like wappySHOUT AND wappyMAIL.. enjoy :-)
  24. I love building wap sites. Nice simple layout but lots of powerfull code. I have never really built a web site (have installed ready made scripts like mybb but never from a blank page). In my opinion wap will get better and better as phones advance and time passes!
  25. Hey very nice. I love the count down script! An you know wapbuddy was one of the first scripts i ever used on my site. I infact still use a bit of his code in the updated version on my site, but i have added search, jump to page boxes, ext detection and matching icons.. Info when you click on a file also images displayed when you click on a file if they are under 10kb, i plan to add number of file views and a send to email option later. Nice :-)
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.