Jump to content
xisto Community

jordanliuhao

Members
  • Content Count

    34
  • Joined

  • Last visited

About jordanliuhao

  • Rank
    Member [ Level 1 ]
  1. How about PDA with phone inside. The best thing is you get something not only the phone. I have bought an TMobile pocket pc with phone edition. It not very expensive compare to some phones. And you can install many softwares. Such as GPS route softwares, so you can drive with it. Some games is also very insterested. The phone function is also more powerful than normal phones. You can record the conversation. Even access internet. It is also very stable. I like the PDA.
  2. Installing the steam does not necessory mean that counter strike has finished installed. Maybe you can see that counter strike is activated. But actually it still take a long time to download some more files the first time. I have noticed that you are using dial-up, and take 1 day to download steam. So you may still need take half a day to download more.From my experience with wideband, it take about 1 hour to download the steam. And it take me around 15 more minutes in the pre-cache status the first time. Just try longer and have fun.But I think dial-up is not good to play CS. The delay is too much.
  3. I have found more reasonable way to this, which I think is provided by any domain registrar. I describe the process in the mydomain.com. After a new domain registered, the domain is configured to host on their 4 domain servers by default, which are ns1~ns4.mydomain.com. But you can configure the domain servers to ns1.trap17.com & ns2.trap17.com. (You should apply for package 2 in Xisto with the domain name first) These configuration are submitted to the internet core network by mydomain.com. It may take 2 days to reflect the change to all of the domain servers running in the internet. After that, you can surf your Xisto hosting with the domain name. Of course, before that, you can configure your pc to use domain server ns1.trap17.com, ns2.trap17.com directly. There is some problem for my JSP host. But I have tried, these really works. After hosting problem being resolved, I can show you my web site.
  4. It seems Xisto is using apache 1.3.x + tomcat 5.0.x + mod_jk 1.2.x for jsp solutions. Jsp access go to apache first, then go to tomcat through connector mod_jk. The problem is the jsp file should be put under the webapps folder under tomcat. But Xisto only provide the ftp access to apache web folders. So how is it possible to run a jsp web site. I would like to know anyone of you has hosting Jsp successfully. If yes, can you tell us how do you make it. Thanks.
  5. It seems Xisto is using apache 1.3.x + tomcat 5.0.x + mod_jk 1.2.x for jsp solutions. Jsp access go to apache first, then go to tomcat through connector mod_jk. The problem is the jsp file should be put under the webapps folder under tomcat. But Xisto only provide the ftp access to apache web folders. So how is it possible to run a jsp web site. I would like to know anyone of you has hosting Jsp successfully. If yes, can you tell us how do you make it. Thanks.
  6. As you know, the tomcat application need be restart before the changed xml file effect. Now I'm using struts/tiles. I need to restart my module to make them effective.Is there a way to that.
  7. You need a counter to track the clicks. There are 3 ways to do this. One is shared memory. Reference http://ca.php.net/manual/en/function.shm-attach.php One is files. You track the count in your file. Be care of the synchronize problem. the process should be: <? fopen() flock(LOCK_EX) fread() count++ fwrite() flock(LOCK_UN) fclose() ?> One is database. You save the click to database.
  8. The others can find what they want when search in the forum. Do you want others to get the wrong answer?
  9. This will not work in a busy web site. Because there are many concurrent access, we need some mechanism to synchronize the access. The error is 1 The count may not be correct. Suppose one request get count=1. At the mean time, another request get the same count=1. after both write finish, count=2 instead of count=3 2 The write to the file may cause the file corrupt, because fopen is not locked even you open it for write. the process should be: <? fopen() flock(LOCK_EX) fread() count++ fwrite() flock(LOCK_UN) fclose() ?>
  10. I'd like to use session_register <?php if (!session_is_registered('count')) { session_register('count'); $count = 1; } else { $count++; } ?> <p> Hello visitor, you have seen this page <?php echo $count; ?> times. </p> <p> To continue, <a href="nextpage.php?<?php echo strip_tags(SID); ?>">click here</a>. </p>
  11. Havn't got you. It seems php and html are not competent technologies. HTML is the basic for the website, more focused on the client. Php is a server technology to generate dynamic content for HTML. Actually php is competent with JSP. Suppose without any HTML, what can php do in a website?
  12. Give you a clue. If your game need the user have a very good video card, choose C++. or else, you can select Java. Why? A good video card means you may need directly operate the card to achieve optimized performance. Java is not good at this. But using Java, your code may be easy to port to different platform and easy to maintain.
  13. http://www.cnet.com/deals/ It contains the comments from user for the hardware. It also have a price comparison of different shop. Please also give the web site you like.
  14. Someone may confused when surf the internet.The memory in desktop pc is normally Non-ECC memory. ECC is the verification bit. Normally ECC memory is for the work station or server. Choose carefullyThe DDR memory of desktop is 184 pin. 200-pin is used in laptop.
  15. I've bought a dell dimension 3000 desktop with 256MB. To add more memory, I find the clause "dual channel DDR". It says dual channel will give higher performance.This make me headache and try to find out what is it.Generally speaking, with this technology, the speed of memory I/O will be doubled.So the question comes, how can I get the "dual channel". After research several days, I got these answers.1 To support dual channel, the chips on your mother board must support dual channel, such as Intel 865, 875.2 There is no dual channel DDR memory or non-dual channel DDR memory. To get dual channel, at least two memories is required. Selection criteria is decided by the mother board chips. Some chips is flexible, you can use even different capacity memories, such as one 256MB and another one 512MB. But intel chips is very strict, that's why it makes me headache:a) DDR memory should be the same capacity, such as both 256MB or both 512MB. The chips on the DDR memory should be the same capacity. It means if the number of chips on these memory are same, then it is ok. You may meet 4 chips, 8 chips memories, etc.c) The chips of the memories should be both on single side or on double side. It means for 8 chips, all the chips should be on only one side or 4 chips each side.d) The memory no need to be the same brand, same speed(system downgrade to the lowest speed automatically)After got these, I check my memories, it is an NANYA 256MB DDR400 8 chips single side memory(Why doesn't dell choose Kingston?). I go to the shop and bought a Kingston 256MB DDR400 8 chips single side memory. Now the system is woking in the dual channel DDR mode.
×
×
  • 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.