Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
6k views

Frustrating: Can't force IE 8 into “Compatibility view”!

I've got two very different websites. Both of them have different errors when displayed in the "Internet explorer 8" browser mode! When clicking the "Compatibility view" button next to the address ...
2
votes
1answer
111 views

Htaccess to force use WWW for mutlidomain

I found this code to force using www. RewriteEngine On RewriteCond %{HTTP_HOST} !^www.example.com$ RewriteRule ^(.*)$ http://www.example.com/$1 [R=301] But i have many domain that pointed to same ...
0
votes
1answer
51 views

Accessing a CSV File outside python folder

So my files are the exact same size, with a row header and a column header. I need to add the values thare are in the rest of the cells besides the row and column header. This is the function I am ...
0
votes
2answers
102 views

Forcing users to type in only numbers in a field (RoR)

There is similar question like this for ASP.net, but I wanted to know if there is a 'relatively' easy way to do this on RoR. I have a field for "Price" where I want the user to only type in numbers. ...
0
votes
2answers
208 views

Reverse of Get Specific Version, overwrite files on server

Our source control is on a hyper-v virtual machine, and last night a snapshot-merge of the image went horribly wrong. The source control server now contains a months-old version of the source; all ...
0
votes
1answer
477 views

Flex : forcing extension on a file name

In flex when I allow user to download a file using : dwFile = new FileReference(); dwFile.download(downloadURL, dwFileName); Is there a way to ensure that the downloaded ...