Quantcast
Channel: User Chris - Stack Overflow
Browsing all 42 articles
Browse latest View live
↧

Comment by Chris on Scrum: Technical items in a backlog that is managed by a...

More than one backlog leaves the product owner and dev team in conflict. If there is trust between both sides then this isn't a problem. If there isn't trust you have larger issues.

View Article


Comment by Chris on Good practice to 'authorize' HTTP-File-Upload to...

This will work if the session cookie is on the same domain. You don't want to pass the PHP Session ID around.

View Article

Comment by Chris on Dates difference wrongly stored in MySQL database

I would start by checking the format of the date your sending, and the format it becomes when its in MySQL. This is a classic problem a lot of PHP developers have when dealing with date/time math...

View Article

Comment by Chris on Finding out which Javascript methods are never called

The only way to be 100% sure is to write tests.

View Article

Comment by Chris on Why underscorejs use blocking style without callback?

Can you post an example?

View Article


Comment by Chris on tooltip doesn't work in a table cell

If there is a way to manually show the tooltips without binding them to elements this would be a good use case for delegate

View Article

Comment by Chris on Can't make admin landing page work

Look at your apache logs, and see whats going on in there. You may need to configure it to show redirects. Secondly make sure Rewrite is enabled, or it will never hit codeigniter's .htaccess file.

View Article

Comment by Chris on how to disable button jquery or html

This looks like a mixture of PHP and javascript. PHP can't execute Javascript and vice versa. If you enclose the javascript in script tags and echo it as a string It will probably get you what you...

View Article


Comment by Chris on Run the remote script in linux without login

@Ashwin using public key authentication you won't need a password. You should still have some kind of authentication but ssh key auth won't require a password unless you put a password on the key.

View Article


Comment by Chris on Mysqli Error, what went wrong?

Back-ticks are on the tilda, top left of the keyboard when you don't use shift if you're looking for it "`"

View Article

Comment by Chris on Show parks in terrain view

Sorry it took me so long to see your tweet. I don't remember doing anything special when we did instaearth. Our zoom level is very high so we're right down on top of the map when you zoom in. I think...

View Article

Comment by Chris on Why does adding an unnecessary ToList() drastically speed...

If you're only going for a single record you should use .Single, by using .First you run across the chance that there is more than one matching row and you may not be getting the data you expect.

View Article

Comment by Chris on Content-Security-Policy (CSP): how to allow svg image in...

It should be noted that this opens the page up for an attack vector for any item on the page using object-src data. If your goal is security you'd be better off using a sha hash of the script trying to...

View Article


Answer by Chris for MySQL - What JOIN should i use? 2 Tables, Not the same...

I think you need to rethink your table structure. Having member_1, member_2, member_3, member_4 is just going to cause more problems in the long run. Especially when your trying to relate data.I'd...

View Article

Answer by Chris for JQuery UI: Drag-and-drop disables mouseover events?

You have to re-assign the event to the object after dropping it.The drag and drop is probably removing the old object and putting a clone of it in the new place. Rather than maintaining the same...

View Article


Answer by Chris for Is there += for window.onload in Javascript?

In jquery you can do $(document).onload(function() { // do something}//then later on do $(document).onload(function() { // do something here too!}jQuery will intelligently add both events to the onload...

View Article

Answer by Chris for How to prevent subview from overlapping tab bar?

In the interface builder make sure that you've set the navigation bar and tab bar spacers up. It should be the first list of options on the first tab in the Interface builder Properties view. This will...

View Article


Answer by Chris for Callback function is not executed

take $.ajax({ type: "POST", url: action, data: formData, dataType: "html", success: function(msg){ alert('23'); } });and adderror: function(error) { console.log("an error", error);}using firebug.it may...

View Article

Answer by Chris for Object Oriented Programming with PHP: Refreshing Kills my...

PHP isn't statefull every request is a new process on the serverYour best bet is to use session data and hand the session data to the objects when you instantiate them. Have the contructors pull the...

View Article

Answer by Chris for What is safer? Should I send an email with a URL that...

I've always been a fan of setting a hashcode and giving them a link. Sending an email to the user afterwards letting them know they requested a password recovery link, and after they set one telling...

View Article
Browsing all 42 articles
Browse latest View live




<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>