Search results

  1. O

    [urgent]...

    Hi, As brandon said I configured my backup, and got a mail on sunday that the backup is complete. I went to my .vm and clicked the backup file thinking it will start downloading. WTF, it started extracting itself and don't know where. And now when I try to connect to my database through...
  2. O

    VPS Damn slow and at times time out

    Hi My VPS is just responding way too slowly as compared to other days and at times it even do time out. Please see to it. Imoracle
  3. O

    Convert a DIV into image

    Hello Friends, I have for example say a div on an html page and I want to convert it to animage say gif,png etc etc Eg. <html> <body> <div id="importanttext"> <h4>Hello World!</h4> <img src="someimage.gif"/> </div> <div id ="blahblah">...
  4. O

    iframe javascript problem

    Hello All, I am having this problem. I have a page main.html. Inside that I have a page inside an iframe, frame.html. Now I have some tabs in iframe, and for changing tabs i need to call few javascript functions within the frame itself. In frame.html I have a javascript function...
  5. O

    Help with .htaccess mod_rewrite

    Hi, I am using rewrite rules on my website. Something like this for example: RewriteRule ^jobs jobs.php RewriteRule ^jobs/ jobs.php Now this works perfectly, http://mysite.com/jobs works as http://mysite.com/jobs.php However when I try to add the following: RewriteRule ^jobs jobs.php...
  6. 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
  7. 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...
  8. 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...
  9. 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
  10. 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...
  11. O

    Best way to get clients local time.

    Hi I have a kindda forum and chat room, where users can poll thr messages etc etc. However I don't know what is the best way to manage time. I mean suppose we have 2 users, one in US and one in India. Now both messages in the chat room and there messages gets saved in the database tables. Now...
  12. O

    .htaccess mod_rewrite help

    Hello All, I am currently using something like this in my .htaccess file: RewriteRule ^users/([a-zA-Z0-9_-]+)$ users/profile.php?q=$1 RewriteRule ^users/([a-zA-Z0-9_-]+)/$ users/profile.php?q=$1 I actually copied this from somewhere and doesn't really know why they wrote almost the same thing...
  13. O

    Help with Pay Pal integration.

    Hello All, Here I need some help with my pay pal integration. I am ready to donate 200-300 credits for the same. I have following things to do: 1. Will my customer needs to have a paypal account to pay me ? 2. I have a page where customer generates coupons. Now he can set a few parameters...
  14. O

    How to get number of uploaded bytes in php

    Hello All, I know there exists a few upload progress showing scripts, but I wanted to know for knowledge sake how do I get to know how many bytes have been uploaded till now. move_uploaded_file($FileTemp,$FileUploadLocation) after giving this command how do I know how many bytes have been...
  15. O

    How to charge my customers using Credit cards and debit card

    Hello All, I have to charge my customers for the service I provide. They currently use PayPal, but many complaints of why do I dont have a payment option directly using banking gateways. Can someone share some knowledge as to how can I achieve doing this? Is there any sort of API etc for this...
  16. O

    Uploading MP3, Encoding and trimming them.

    Hello All, Well these are the 3 things I want to do: 1. Upload an mp3 file (easy to do) 2. Encode mp3 to lower quality etc etc. (dont know how to do) 3. Trim mp3 etc etc (dont know how to do) Can someone out there put some references or pointers for the same. Thanks in advance, Imoracle PS...
  17. O

    how to put html, php and perl code samples on HTML page

    Hello All, I was making kindda tutorial and I need to put some html, php and perl code samples up on the pages. However as soon as i put some code samples, the code sample is itself executed. I want to stop the execution of these code samples, so that users can see the code. Any help please...
  18. O

    Embed Alterplayer in Blogs, Websites, Orkut Scraps

    Hello All, Now you can even enjoy service by Altertunes on your blogs, websites, orkut scrapbooks and even facebook walls. http://altertunes.com/embed.php Customize and generate your code and paste it in your blogs or elsewhere. See an embedded Alerplayer in action here...
  19. O

    Embed Alterplayer in Blogs, Websites, Orkut Scraps

    Hello All, Now you can even enjoy service by Altertunes on your blogs, websites, orkut scrapbooks and even facebook walls. http://altertunes.com/embed.php Customize and generate your code and paste it in your blogs or elsewhere. See an embedded Alerplayer in action here...
  20. O

    Convert char to valid mysql date

    Hello All, I have date stored in the following format with varchar dataset: March 31, 2008, 9:52 pm I want to convert this to valid mysql date ? Any suggestions ??
Top