Jump to content
xisto Community

jordanliuhao

Members
  • Content Count

    34
  • Joined

  • Last visited

Posts posted by jordanliuhao


  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.

     

    I need a phone. Money is not really an object here, for if the object is good I'll pay for it. My requirements are thus:

     

    - It needs to be robust.... Have you dropped your phone? Did it survive?

    - It needs to be fairly small.... I'm gonna be carrying it around

    - It needs to have some connection with my PC, so i can put stuff on it.

    - It doesnt need masses of features, but they are always a plus

    - Preferably stylish, but I can afford to cut this one.

     

    I'm posting this as I want an unbiased view... (as in: not the view of the salesman in the Tmobile store!)

     

    Any help appriciated! Thanks very much!

     

    - Vacant

     

    EDIT: no, i still cant spell appriciated...

    49687[/snapback]


  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.

     

    Thanks jordanliahuo. As you have written I will wait until your site is hosted here. I hope it will work. Best of luck.

    45418[/snapback]


  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. 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.

     

     

    I want a PHP code to display the most popular clicks/links on certain pages.

     

    Can anyone help?

    13863[/snapback]


  7. 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()

     

    ?>

     

    First upload a file anmed 'counter.txt' and chmod it to 666 with your ftp.

    Then put this on your file:

    <?php$count = file_get_contents('counter.txt')+1;fwrite(fopen('counter.txt', 'w+'), $count);echo $count;?>

    8061[/snapback]


  8. 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>

     

    to put something in the session

    $_SESSION['variable_name'] = "some_value";
    make sure you do not do the following

    $variable_name = "another value";
    in any part of ur page

    it will overwrite the value in ur $_SESSION['variable_name']

    4054[/snapback]


  9. 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?

     

    Well, what do you'll think?  I personally like a combination of php and html, but I'll stick with php because it's easier to maintain your website, but I'm really experienced in HTML.  So reply and vote to what you'll like and why please!

     

    -Josh :D

    25260[/snapback]


  10. 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.

     

    The only programming language I currently know is Java, and was wondering what the pros and cons of using it compared to other languages.  I've heard it's slower than C++, but Java 1.5 is supposed to be as fast or faster.  What's yall's opinion?

    12067[/snapback]


  11. 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.:D 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.


  12. First of all, Delphi is an IDE just like visual c++, not a language. The language used in Delphi is PASCAL.

     

    Since Delphi is an IDE, so you can test your code in Delphi itself. Delphi is also the editor.

     

    You can study the manual/help of delphi to learn it. It's simple. The example in Delphi is the best code you can start with.

     

    I want to learn one more programing language, and I have some questions about delhpi:

    how can I test my codes writen in delphi? where can I find some editors or tutorials? where can I find some good opensource program writen in delphi (I want to study the source code) ? Thank you!

    40070[/snapback]


  13. I want to know What type of application we can make in Delphi, I mean to say is it use for Desktop Application ?

     

    It is suitable for Desktop Application, Database Application

     

    or Server Side Application ?

    It is not suitable for server side application.

    or it is like C#, or Perl ??

    Delphi is a tool just like Visual C++. Its language is PASCAL.

     

    Whats its advantages ???

    It is very easy to build the GUI. It is something like Visual Basic environment but more powerful.

     

    How its different from other Languages ??

    Pascal is popular in univ. theory study, because its grammer is more strict than c/c++.

     

    Why we have to use Delphi ??? What is the Major Different in comparison with other languages ?

    Delphi is a RAD tool help you develop GUI application fast.

     

    What is the future of Delphi ???

    It can't be the main direction of development. But to know it may help you develop prototype before start a big project. Or you can use it develop some tools.


  14. My suggestion is start from a book, which you can search in https://www.amazon.com/. There are many comments for a book. From the comments, you can judge if it is suitable to you.

     

    Delphi is suitable to develop database applications or GUI applications. To develop some system application, such as low level hardware controller, it is better to use c++.

     

    I've been learning C++ alot lately and would like to learn Delphi/Pascal and I seem to not be able to find anywhere to begin...so does anyone know where I could find a Delphi/Pascal tutorial? And uh...what's Delphi like? Is it as good as C++?

    44821[/snapback]


  15. "JavaScript: The Definitive Guide" published by O'Reilly is a good place to start.

     

     

    Hi, I'm trying to learn Javascript. The thing is, I don't have any reference material around, so I'm gonna need to buy a book or something. Are there any which you would recommend? I looked on some websites but there are literally hundreds of books of this kind. :D

     

    (in answer to the below, sorry sauron, didnt see that one)

    4988[/snapback]


  16. There are many open source forum on the internet. For example, phorum for PHP, eForum for JSP.

     

    You can search in google. I believe you can find one you like.

     

    I have just started creating a site and would like to get a forums page in it. I am clueless though on how to set one up. If anyone could like me to a page that has instructions on how to setup and easy forum, or if you know how please respond :D

    34375[/snapback]


  17. From my understanding, it seems the user don't care if an e-mail is sent. It's just an implementation detail for developers.

     

    My suggestion is:

     

    1 The user fill a form in your web page, then submit

    2 php or jsp on the server collect all the information. Then call system api to send a mail with these information. You can search the mail() on http://php.net/ or JavaMail API on java.sun.com

     

    Server technology is better than client technology for your requirement.

     

    Thanks to all,

    Followup Question:

    Once I create the popup window & link it via url to the content webpage,

    How do I make the webpage send the info to my e-mail account?

    This may seem obvious to youall but I'm totally new to this sort of thing.

    I guess what I'm asking is-Where & How do I put the link to my e-mail account url in the webpage?

    Thanks again,

    RGPHNX

    43059[/snapback]


  18. Strangely enough. This feature is not described in any direct link, which I think is the most powerful.

     

    After you purchase their domain

     

    In their tools, there are one called "Update Domain Contacts"

     

    In it, you can do "DNS management". In it, you can define a NS for a subdomain.

     

    "An 'NS' or 'Name Server' record allows you to delegate one of your subdomains to other name servers. These other name servers are responsible for providing A, MX, etc. records for the delegated subdomain. Note that to change the NS records for your base domain name (yourdomain.com), you must do it through the domain's registrar. To change the name servers of domains of which we are the registrar, use the "update name servers" link on our main account management page.

     

    Examples:

    subdomain.yourdomain.com NS ns1.any.com

    subdomain.yourdomain.com NS ns2.any.com

    "

     

    But I have not tried this yet. That's what I want to try on Xisto.com. You can wait until I got 25 posts. I will tell you the result after I got my free hosting. :-)

     

     

     

    I have checked there but they are providing just only url forwarding. I have not found there about DNS. Can you give the specific page address.

    45037[/snapback]


  19. when you register a domain, it is yourdomain.co

     

    in http://www.mydomain.com/, they provide a service.

     

    You can map subdomain, such as http://www.yourdomain.co/ to be analysized by another DNS. I think Xisto.com can host your subdomain DNS.

     

    Then your website host at Xisto.com is really http://www.yourdomain.co/, redirect is not required at the http level, since DNS has resolved it. You don't need change your code anytime.

     

    I think other registrar may also provide this service.

     

     

    I am using .co.nr free domain for my website. And I have choosen path forwarding. (For example if someone types  http://www.mywebsite.co.nr/contact.html he will be directed to http://forums.xisto.com/no_longer_exists/ ) . For this i have to change my all internal links to mywebsite.co.nr/filename.html . Now i am feeliing that search engines are not indexing my all pages. Is there any solution for that or I have to disable path forwarding and using internal links in my source code???????????

    42693[/snapback]

×
×
  • 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.