Search results

  1. O

    How does x10 generate error.log file in the folder itself ??

    Hello, X10 very beautifully implements the generation of error.log file. I have seen that an error.log file is generated in the folder where the error occured. Can someone share the php.ini settings which is responsible for this ?? Thanks in advance, Imoracle
  2. O

    SigChat

    Its an OK chat for the starters probably.....load of improvement in the chat design and syncronization is needed. Its like a chat room which makes it a lot more simpler. When you try to make a user to user chat then you might know the tit-bits of it. Anyways a nice try and good work. Imoracle
  3. O

    How does Jabber based Chat client works ??

    But try analysing the gmail integrated chat or facebook chat for instance They dont send a packet untill you type in something, and if you are patient enough try analysing this with a friend on the other side. Start chatting and you see packets going. Stop chatting no packet goes. And suddenly...
  4. O

    How does Jabber based Chat client works ??

    Hello Everyone, I have made a browser based chat client using Ajax and MySQL. I will in short explain how is it done: Suppose we have user A and user B. Now browser of both A and B keep pinging my server for new message. If a new message is found in the database tables, it is taken back and...
  5. O

    ASP.NET not linking to code behind??

    This basic code works perfect for me: <%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Page_Load(object sender, EventArgs e) {...
  6. O

    row missing in an auto-increment field of DB table

    You can go back to operation and set back the auto-increment field to 3 which must be 5 by now. Or you can use standard sql query to set that to 3. Also if you hard code it, you shd be able to insert a row with auto incrememt id = 3
  7. O

    How to get number of uploaded bytes in php

    Yaa i kindaa have come across a perl script on net an hour back :) Will try out myself and if it works i wil post it here
  8. O

    is my .htacces slowing down my site?

    can u share the exact problem n solution
  9. O

    AJAX Refresh problem with IE

    Well I finally killed and tracked the problem. The problem was that IE was not allowing the ajax request to load the data from the server every time. It used to load the data from the browser cache by default. I have blogged down the same here as to how to encounter the problem and successfully...
  10. O

    AJAX Refresh problem with IE

    Yaa that example do run, but what the hell is that site When I presses download source code, it asks me to login even if I am logged in. If I login again, it takes me to my home page and when I navigate back to the page for this example, and presses download, It again asks me to download Hell...
  11. O

    AJAX Refresh problem with IE

    Hi, I have made a small chatroom on my users page, which works wonderfully well in all browsers except for IE. On load I get last 10 messages from the server and displayed that to the users. Then as someone types in a message, the new messages are displayed. However I guess the ajax goes fine...
  12. O

    How to get number of uploaded bytes in php

    Thanks a lot, let me try this out and I will get back to you
  13. O

    having godaddy.com domain troubles

    Well thats how I have been doing. I have added 8 sub-domains like this. It did never worked for me when I tried using parked domain thing, It turns out to be like two domains pointing to public_html With subdomain you get to point it to a specific folder. Though you will also get an...
  14. O

    Rounded Corners

    http://www.roundedcornr.com/ You dont need to set the height or width for this. Just generate the images and set the height yourself in html code. Though you cannot set height and width more than 1024 i guess
  15. O

    having godaddy.com domain troubles

    1. Go to manage domains under your account at godaddy 2. There click on your domain, or check the box next to the domain name you want to configure 3. That will highlight and enable a few options at the top. 4. Click the nameserver option. 5. Check the custom namesever option from the available...
  16. O

    Rounded Corners

    http://www.roundedcornr.com/ This is the answer to your query. However they have a restriction over the height and width that you can have within rounded corners. Nevertheless you can derive something from here.
  17. O

    gmail-type-attachment-how-to-make-TUTORIAL

    For those looking for gmail type attachment functionality, here is a tutorial and source files i have written for the same. Feel free to use them :) http://abhinavsingh.com/blog/2008/05/gmail-type-attachment-how-to-make-one/ Enjoy ! Imoracle
  18. O

    Rounding Corners in HTML

    http://www.roundedcornr.com/ Use it n say thanks to me :P
  19. O

    PHP and Ajax (Authentication how to ??)

    Hi, Well we all see in orkut and facebook, the way they have implemented reply to messages using Ajax. They simply take the value from the textbox and then send it through ajax to a server side php (for facebook) and aspx (for orkut) which then saves that message in the db tables and reply...
Top