8,966 Posted Topics
Re: The facebox plugin script is not included. Also, remove line 2 and keep only the latest jQuery version. Including two usually works, but is rather pointless. | |
Re: Are you coding it yourself, or are you using Google Site Search? Is your content in files, or in the database? | |
Re: Is it a requirement you do this in code? For synchronizing folders on my servers I use [Beyond Compare](http://www.scootersoftware.com/). Works like a charm. | |
Re: Search this forum for "pagination", you'll get a lot of results. | |
Re: You said yourself, they crashed because of low disk space. Your new machine most likely has plenty of space, so no issues arise. The table data is fine on the disk, but the server requires disk writes for all kinds of stuff. | |
Re: What do you mean "not compatible". If it's Javascript it should work. | |
| |
Re: Try adding your CSS/images with absolute links, for example: `/styles/default.css` | |
Re: Depending on what data type you use, just write a function that does this for you. If you want a little more advanced code, you can use operator overloading, so you could use any type you want for the time part. The basic function declaration (with strings) could look something … | |
Re: Indent with 4 spaces, or start and end with `~~~` (needs an empty line before it. | |
Re: Define "not working everytime". Browser caching? Session functions all in the right place? Local or remote server? | |
| |
Re: http://www.uploadify.com/forums/discussion/922/progress-barreporting-does-not-work-correctly/p1 | |
Re: I know you solved it, but I think the problem is that `session_start` has to go before `ob_start` | |
Re: If you google the error, you get a lot of hits. See if any fit your situation. | |
Re: I am experiencing the same. A lot of timeouts. At times it appears okay, but not for long till it breaks again. | |
Re: Perhaps there is an error in your session handling, as I have never had this problem. Show some code. | |
Re: I think you should search for a Javascript solution, so the images get resized BEFORE uploading. Resizing with PHP solutions, can be found in this forum. [This one](http://www.daniweb.com/web-development/php/code/387843/php-thumbnailer) for example | |
Re: Be patient, the issues are being addressed. Can you post the offending line? In the mean-time, check this: http://www.phpfreaks.com/forums/index.php?topic=140656.0 | |
Re: Google for "ajax tutorials" and start there, or get a [book](http://www.packtpub.com/ajax-and-php-2nd-edition/book) . | |
Re: Where it says "Details are entered into the table!" you should output the new HTML table, which should be returned by your PHP insert script. | |
Re: Does your web.config allow rewrite rules then? What are you trying to convert this to, IIS? Are you using IIS URL Rewrite? | |
Re: Just adding `media=handheld` is not enough, you'll have to adjust your CSS file too. Usually means creating new smaller images. | |
Re: Instead of `$quantity=$_GET['txt1'];` use: $quantity = isset($_GET['txt1']) ? $_GET['txt1'] : 0; to give it a default value if it was not specified. (Next time use code tags please.) | |
Re: In Opera, after posting it shows `Show Comments`, after refresh `Edit Post` | |
Re: > Also is number an int or string, if int remove single quotes. Works with and without for an int, and there is no need for splitting the string like that. | |
Re: > Wouldn't that rewrite it the opposite way? Yes. That is basically how it works. What you type in the URL is `/product/12` (this is your virtual page). The rewrite rules change this to `product.php?id=12` (your actual page) which should be the script you have, with the parameters you need. … | |
Re: Echo your query before inserting, I am sure it is invalid. | |
Re: Just tried it, and am having the same issues. In my opinion, the mouse enter should have been disabled too. You should report a bug at JVCL. | |
Re: How about this? It does not included query parameters (yet): [CODE] $new_comment = preg_replace('%(http://)?(www\.)?(my_website_url\.com)([/\w]*)?%m', '<a href="\1\2\3\4">\1\2\3\4</a>', $comment); [/CODE] Note that it may need some tweaking to get all your url's correctly. | |
Re: You could store the POSTed value in a session variable, just be sure you do not overwrite it. | |
Re: The timezone can be fixed by including a default timezone in php.ini | |
Re: Just use an auto increment column in your table. You can prepend/append anything you like in your select query, or afterward in PHP. | |
Re: Can you please give an example of what you want? (Try to use code tags too.) | |
Re: You cannot do payments without a 3rd party tool, unless you (or your company) are a bank certified payment provider. Basic validations can be found all over the net. | |
| |
Re: Show the code that saves it to file. Should be the easiest way to see how you can retrieve it again. | |
Re: Can you give an example? I'm not quite sure what you mean. | |
Re: Well sure, if he divides [iCODE]$diff[/iCODE] by [iCODE]$minute[/iCODE] the result is what he wants to output, he'll just need a single line..... (Something similar for the rest of course, the whole thing can probably be done within 20 lines of code.) Perhaps he gets paid by line... ;) ![]() | |
Re: What do you mean, you use the handheld's browser ? Or do you want to make an actual app ? For the first, you'll just have to make sure your layout fits on small screens. Depending on what you build, a CSS change might just be enough. | |
Re: Convert your num (string) to an int first, using parseInt: [CODE] var hex = parseInt(num).toString(16); [/CODE] | |
Re: Provide some details about the error. | |
Re: Not quite sure if this is what you mean, but if the answer decides the next question, you can add a second parent id (next question id) to the child table. | |
| |
Re: What do you mean by connect the two ? One extends the other, so they are already connected. | |
Re: What is not working? You only specified what you want to happen. | |
Re: Do you want to write it all in PHP? See glob, file-get_contents, str_replace or preg_match in the manual to get started. The lazy way would be to execute grep (if you have it) and let that return the results. | |
Re: [url]http://msdn.microsoft.com/en-us/library/ms174377.aspx[/url] |
The End.