Aztek

Member
  • Content count

    435
  • Joined

  • Last visited

Everything posted by Aztek

  1. [Freeze] 1.0.0 B4

    is there some sounds missing in your pc ? when i try this i get the windows "Exclamation" sound, if that is missing that might cause this :S
  2. Easy Language Selection Option

    thing is that it is sometimes annoying to have to answer the same question million times "How do i set my application to {insert language name}" having it like this its only a matter of saying, "goto settings and then click Select Language"
  3. Released: ApexDC++ 1.0.0 Beta 4

    i have been running it smoothly, but i noticed one thing with apexdc b4 http://kjarni.cc/m/uploads/1186643766.png and also, i am not sure what happened but i was doing LOADS of stuff at once, then suddenly my computer freezez, has some kind of a GUI meltdown and i have to restart to get her working again, apexdc was one of the applications open but i am not sure... im using vista home p x32 :)
  4. User Agent

    Could someone provide a list of the user agents of all known dc++ clients I'm making a php script that prevents users from opening the hublist address in a browser, and show a guide on how to add the hublist to the client...
  5. Client lists updates and information

    what about the cheating description ?
  6. Hi I was wondering about the Client list that toast makes, the client can download it when i click update, i put in my settings like i want them but if i click update later when there is a new version, all my settings go away, that includes cheating descriptions (that i like to keep custom) and the action... is there not a way to KEEP at least those two options somehow. My idea would require each client to get a GCID (global client id) (in the clientlist) and when i modify the list it gets saved to an alternate file with the new settings and holding the GCID to match the original list so stuff does not get mixed up Examples: <ClientProfile> <GCID>00011</GCID> <Name>OP Client: ApexDC++</Name> <Version>^0\.[1-4]\.[0-2]$|^1.0.0( )?B[23]?$|^0\.5\.0\.26[0-9]$</Version> <Tag>^<ApexDC\+\+ V:%[version],%[mode],%[newhubs],%[slots]>$</Tag> <ExtendedTag/> <Lock>^EXTENDEDPROTOCOLABCABCABCABCABCABC$</Lock> <Pk>^DCPLUSPLUS0\.69[489]ABCABC$</Pk> <Supports>^MiniSlots XmlBZList ADCGet TTHL TTHF (ZLIG |GetZBlock ZLIG )?$</Supports> <TestSUR/> <UserConCom/> <Status>^([13579]|11)$</Status> <CheatingDescription>Cheat: OP Client Detected</CheatingDescription> <RawToSend>0</RawToSend> <UseExtraVersion>0</UseExtraVersion> <CheckMismatch>0</CheckMismatch> <Connection>^(Modem|Satellite|Wireless|ISDN|Cable|DSL|LAN\(T[13]{1}\))$|^(0\.(005|0[125]|[125])|[125]|[125]0|100)$</Connection> <Comment>OP Client: ApexDC++ // info: OP Client, Multisource Download, Limiting Feature, Emulation Feature</Comment> <Recheck>0</Recheck> <SkipExtended>1</SkipExtended> </ClientProfile> And the alternate file: <listsettings> <GCID>00011</GCID> <CheatingDescription>Cheat: my custom string that gets used when i use %[userCS] in raws</CheatingDescription> <RawToSend>2</RawToSend> </listsettings> get it? good idea?
  7. Tab Colors

    i like this idea a lot, although i think this belongs in feature suggestions... B)
  8. Released: ApexDC++ 1.0.0 Beta 4

    wow that was fast good job
  9. i don't, i download, sort and THEN put in the sharing folder... i don't want the unsorted stuff i am not sharing atm to be uploaded.
  10. Kick if in PG list

    Got the idea of having an option to run a raw on users that are found on the peerguardian blocklist... Comment away ...
  11. i run apex on vista and never elevated so that equals being a restricted user i belive, no problems for me...
  12. Released: ApexDC++ 1.0.0 Beta 3

    no crashes or problems here yet, except once the known bug in changelog :D
  13. ApexDC++ Translations

    this line is so wrong in so many ways (2) p.s. that's from the comment in the rar file :P
  14. nuff' said enjoy http://kjarni.cc/?id=48
  15. Does anyone know if "Visual Studio 2008 Beta 2 Professional Edition" can compile apexdc? you can get it free here: http://www.microsoft.com/downloads/details...;displaylang=en
  16. Visual Studio 2008 Beta 2

    i have never had problems with m$ betas, even their operating system betas work fine :)
  17. Released: ApexDC++ 1.0.0 Beta 3

    -=[ Uptime: 1 day 13 hours 51 min ][ Cpu time: 0:22:27 ]=- nothing bad yet ;)
  18. Show us your desktop

    here
  19. Great link tracking Script

    Great link tracking Script This script is quite beautiful in it's simplicity A user clicks a link to the url http://mysite.com/?id=123 the index.php file notices that the id is set and checks the database if id 123 exists, if it does it will return the user this code header("Location: http://www.linkto.com"); that will redirect the users client to www.linkto.com Run this mysql command on your mysql database CREATE TABLE `linker` ( `id` int(10) unsigned NOT NULL auto_increment, `path` varchar(255) NOT NULL default 'http://localhost', `comment` varchar(255) default 'no comment', `counter` int(10) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM; Put this code into index.php in the root of your domain <?php header("Cache-Control: no-cache, must-revalidate"); /* ERROR REPORTING ACTIVE !!! */ //error_reporting(E_ALL); /* * Redirecter version 1.2 * * ## THIS IS THE MAIN FILE * * Created by Aztek */ require_once('database.php'); if (isset($_GET['id'])) { CallToDb(); $fileid = $_GET['id']; $mysqlresult = mysql_query('SELECT `path` FROM `linker` WHERE `id` = \'' . mysql_real_escape_string($fileid) . '\';'); $stringvalue = mysql_fetch_row($mysqlresult); if (!$stringvalue) { //if user specifies invalid id return with die('<h1>An error has occurred...</h1><br /><h2>Incorrect ID or database error !</h2>Error ID: 2 ( ' . mysql_error() . ' )</font>'); } else { if ($_SERVER['REMOTE_ADDR'] == '000.000.000.000') { header('Location: ' . $stringvalue[0]); mysql_close(); die(); } else { mysql_query('UPDATE `linker` SET `counter` = `counter`+1 WHERE `id` = \'' . mysql_real_escape_string($fileid) . '\';'); header('Location: ' . $stringvalue[0]); mysql_close(); die(); } } } // if ?id= is not defined return with... /* !!! OPENS WEB !!! */ header('Location: path/to/your/main/site/'); mysql_close(); die(); /* !!! OPENS WEB !!! */ ?> change "if ($_SERVER['REMOTE_ADDR'] == '000.000.000.000')" to your ip so not to count your ip's clicks (or not and then no clicks will not be counted) now create database.php put this in there <?php /* * Redirecter version 1.2 * * ## THIS FILE IS FOR DATABASE CONNECTION * * Written by Aztek */ // Settings $database_username="put your database username here"; $database_password="put your database password here"; $database_name="put your database name here"; $hostname="put your database hostname (usually localhost) here"; function CallToDb() { mysql_connect($hostname,$database_username,$database_password); mysql_select_db($database_name) or die( "Unable to select database" ); } ?> Now, all you have to do is to add stuff to the database, For example... INSERT INTO `linker` (`id`,`path`,`comment`,`counter`) VALUES (' ','http://www.google.com','Google (external)',' '); then open http://yoursite.com/?id=1 and you should see google.com, also the database will have 1 in the counter row... now when that's finished, it should be easy to make your own script to show the counter data or something like that i do have this admin area but i haven't tested it very much, i think it works though admin.php <?php header("Cache-Control: no-cache, must-revalidate"); /* * Redirecter version 1.2 * * ## THIS IS THE ADMINISTRATION AREA * * Written by Aztek */ require_once('database.php'); CallToDb(); if (isset($_POST['delete'])) { mysql_query('DELETE FROM `linker` WHERE `id` = \'' . mysql_real_escape_string($_GET['delete']) . '\';'); mysql_close(); } if (isset($_POST['id'])) { mysql_query('INSERT INTO `linker` (`id`, `path`, `comment`) VALUES (\'\', \'' . mysql_real_escape_string($_POST['path']) . '\')'); mysql_close(); } echo '<form method="POST">URI: <input type="text" name="path" value="http://" size="64"><br />Comment: <input type="text" name="comment" size="64"><br /><input type="submit" value="Add" name="submit"></form>'; echo '<hr>'; $mysqlresult = mysql_query('select * from `linker`'); while ($testtext = mysql_fetch_row($mysqlresult)) { echo '<a href="?delete=' . $testtext[0] . '">Delete</a>'; echo '&nbsp;&nbsp;&nbsp;&nbsp;'; echo '<b>id: </b> ' . $testtext[0]; echo '&nbsp;&nbsp;&nbsp;&nbsp;'; echo '<b>url: </b> ' . $testtext[1]; echo '&nbsp;&nbsp;&nbsp;&nbsp;'; echo '<b>Counter: </b> ' . $testtext[3]; echo '&nbsp;&nbsp;&nbsp;&nbsp;'; echo '<b>Comment: </b> ' . $testtext[2]; echo '<br>'; } echo '<html><head><title>Kjarni - ID System Administration</title></head><body>'; echo '</body></html>'; } ?> I am 90% sure there are some errors in the code but hey it works for me so far atleast, this script is awalible to anyone and anyone can make any modifications to it. Thank you for wanting to use my script, Aztek gunni87@gmail.com p.s. yes i made this script myself, although the php error handler helped me alot :)
  20. Great link tracking Script

    would it be possible to disable the edit post timeout ? atleast for subscribers :(
  21. Great link tracking Script

    i love php too, you are welcome to use this script at will... i was just told this script is just like microsofts fwlink system for example they have http://go.microsoft.com/fwlink/?LinkId=xxxxx mine is just cleaner (http://domain.com/?id=xxxx) but has potential for multi admin access (many users submitting id's)
  22. Screenshot Story of ApexDC++

    good point, not like i want to use 0.1.0
  23. Programming

    Found this somewhere on some screenshot i found somewhere long time ago...
  24. Screenshot Story of ApexDC++

    d0ne must have been some settings stuff, i started with 0.1.0 binary and updated my way up... also the suicidepill in the old clients is kinda frustrating, had to block internet access for the clients to be able to make those ss's
  25. Themes - Screenshots

    ... Continued ... Light Grey and Dark Blue by RadoX http://kjarni.cc/m/uploads/1185487490.png Light Grey and Black by RadoX http://kjarni.cc/m/uploads/1185547150.png Grey by Zebedee http://kjarni.cc/m/uploads/1185538917.png Green by Crise http://kjarni.cc/m/uploads/1185561445.png Classic by Lizard http://kjarni.cc/m/uploads/1185486693.png Purple by Aztek http://kjarni.cc/m/uploads/1185487648.png ------------------- omg 10 max... and the reduced size is also annoying :P