Piskvor
|
Registered User
|
Rents brain for food.
|
|
8h |
comment |
Php Login Issue (Users cannot login and users can use others passwords to access their own accounts) In addition to the answers, you don't need to SELECT password in $loginSubmitQuery, it's enough that it's in WHERE clause. SELECT username,password... doesn't hurt anything, except the performance (a tiny bit); yet it's a bit wasteful to get two values from DB and discard one without using it. |
|
8h |
revised |
rails app unable to save anything after deployment edited title |
|
8h |
comment |
rails app unable to save anything after deployment Note: People may help you, but using "it's urgent to me" will actually lower your chances of getting an answer. It will get you, in the best case, a response saying "well, that's too bad" - the problem's urgency is not relevant to its content. |
|
19h |
comment |
Check for daylight saving time with WMI on Vista/Win7 Indeed, it seems to work in practice. Yay for undocumented API. |
|
22h |
awarded | ● Nice Answer |
|
23h |
comment |
What is the best comment in source code you have ever encountered? @Andrei Rinea: "I swear, honey, I've reformed myself. I'm totally different now." Although it might be true, I'm not inclined to believe it. |
|
1d |
comment |
Multiple application instances on the same database If you choose MyISAM, note that it has table-level locks. E.g. one client is doing an UPDATE on their rows of the table, all the other clients have to wait until it completes. InnoDB doesn't have this problem. |
|
1d |
answered | Multiple application instances on the same database |
|
1d |
accepted | Setting the HTTP request type of an <iframe> |
|
1d |
revised |
Setting the HTTP request type of an <iframe> added 166 characters in body; added 1 characters in body |
|
1d |
answered | Setting the HTTP request type of an <iframe> |
|
1d |
comment |
XSS attack with javascript in img srs attribute How about "try and see for yourself"? |
|
2d |
asked | Check for daylight saving time with WMI on Vista/Win7 |
|
2d |
revised |
How can i get the current month and previous three months using PHP corrected brackets |
|
2d |
awarded | ● Enlightened |
|
2d |
accepted | Is it possible to protect from downloading a video from a site. |
|
2d |
revised |
Is it possible to protect from downloading a video from a site. added 105 characters in body |
|
2d |
revised |
Is it possible to protect from downloading a video from a site. added 83 characters in body; added 81 characters in body; added 38 characters in body |
|
2d |
comment |
Is it possible to protect from downloading a video from a site. +1 Hey, this model works for the cinemas, right? |
|
Nov 24 |
awarded | ● Nice Answer |
|
Nov 24 |
revised |
Is it possible to protect from downloading a video from a site. added 104 characters in body |
|
Nov 24 |
revised |
Is it possible to protect from downloading a video from a site. added 1279 characters in body; added 219 characters in body |
|
Nov 24 |
comment |
Is it possible to protect from downloading a video from a site. Trivial, maybe. Obvious, not really. |
|
Nov 24 |
answered | Is it possible to protect from downloading a video from a site. |
|
Nov 24 |
answered | What do you wish Fiddler could do that it can’t… or that you can’t figure out how to do? |
|
Nov 20 |
revised |
What is the magic behind that DOT which makes Fiddler work? edited tags |
|
Nov 20 |
comment |
Fiddler slows down my browsers You can set Fiddler to only keep the most recent 200(?) sessions in memory (on the Filters tab). This keeps its memory usage in check. |
|
Nov 20 |
comment |
Fiddler slows down my browsers GMail does have a "you are on a slow connection" warning. Since you can instruct Fiddler to simulate a slow connection, maybe that's what you saw? |
|
Nov 20 |
comment |
Why is http-response in chunked transfer-encoding only for some clients @RickNZ: BHOs and browser toolbars, registry settings, ActiveX objects, plugins? |
|
Nov 20 |
comment |
Fiddler (v2) Hidden Features? @EricLaw: Created the related question at stackoverflow.com/questions/1769495/… |
|
Nov 20 |
revised |
What do you wish Fiddler could do that it can’t… or that you can’t figure out how to do? added 90 characters in body; added 35 characters in body |
|
Nov 20 |
comment |
What do you wish Fiddler could do that it can’t… or that you can’t figure out how to do? There's a drag-and-drop Process Filter button on the toolbar (at least in the current beta), which lets you select a window and only watch its associated process. |
|
Nov 20 |
comment |
What do you wish Fiddler could do that it can’t… or that you can’t figure out how to do? static function OnBoot(){ FiddlerObject.UI.ActivateRequestInspector("RAW"); FiddlerObject.UI.ActivateResponseInspector("RAW"); } // in CustomRules.js |
|
Nov 20 |
comment |
Save me from IE6 Make the users do what? Make the who read? Not likely. |
|
Nov 20 |
comment |
Why would IE/Fiddler see different cookie setting/deletion from Chrome and FF/Live HTTP Headers? Indeed, PHP session management functions set cookie time to past and content to literal "deleted" when deleting them. |
|
Nov 20 |
asked | What do you wish Fiddler could do that it can’t… or that you can’t figure out how to do? |
|
Nov 20 |
revised |
GMAIL rss don’t see tag description.How to see Request headers of my iis 5 website added 481 characters in body |
|
Nov 20 |
comment |
Why is http-response in chunked transfer-encoding only for some clients @RickNZ: EricLaw is the creator of the excellent Fiddler, so he probably knows what it does or does not ;) Anyway, if you want to minimize the observer effect, try capturing your traffic off the network, e.g. with Wireshark. Although it's a bit harder to use, it is a passive capture, so the traffic is not affected. |
|
Nov 19 |
comment |
Is it legal to use logos of other companies in my website/blog? @Nachiket: legal, n.: 1) related to law, 2) lawful. I believe that the "legal" tag you see is used in sense #1. Yes, natural languages are ambiguous. |
|
Nov 19 |
comment |
problem with RewriteRule and apache [mydomain.org] is a character class, i.e. all these characters will match: h,t,p,s,m,y,d,o,m,a,i,n,r,g, colon, slash, dot. |
|
Nov 19 |
comment |
How long the time funtion works in php @Lukman: yes. But from our track record, it seems likely that many embedded systems will still use 32-bit Unix timestamp. Y2K all over again. |
|
Nov 19 |
comment |
Issue a redirect (HTTP 302) to act on _top frame without using Java script Can't do that without JS - I'd post via AJAX in that case. If "no JS" is a hard, immovable requirement, then "cannot do that" is the answer. Could you go the JS way, and use your "click to redirect" link in a <noscript> tag? |
|
Nov 19 |
answered | Issue a redirect (HTTP 302) to act on _top frame without using Java script |
|
Nov 19 |
comment |
Intranet and IE8 render mode @hsivonen: you are correct, it's more complicated than I thought |
|
Nov 19 |
revised |
Intranet and IE8 render mode added 49 characters in body |
|
Nov 19 |
accepted | GZIP Compression causing web page expiration |
|
Nov 19 |
comment |
GZIP Compression causing web page expiration No, that shouldn't matter. Accept-Encoding means "I can deal with those encodings", but you are free to ignore this capability and serve the plain version. |
|
Nov 19 |
answered | GZIP Compression causing web page expiration |
|
Nov 19 |
comment |
Why is http-response in chunked transfer-encoding only for some clients I had some problems when gzipping and chunking the same response (a bit of an edge case), maybe that could be an issue? |
|
Nov 19 |
comment |
Why is http-response in chunked transfer-encoding only for some clients Why is this a problem? You seem to be using MSIE8, which handles both chunked and non-chunked responses well. The response, for the end-user, will look the same - after dechunking, both responses will be identical. Do you have some functionality that depends on chunks being present? |
