Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mikeEd
  • Content: Threads
  • Order by date
  1. mikeEd

    Disabling script execution

    I've been trying to work out how to disable all server side script execution for a particular directory (ideally using .htaccess) and I'm amazed how difficult it's been to find any solution. I thought I could do something with RemoveHandler in .htaccess to disable all handling of scripts, but...
  2. mikeEd

    deny network access

    If I wanted to prevent a particular application from accessing the network, how would I do it? I'm assuming that, although it can be achieved with iptables, attempting to prevent access at the firewall level is not the best way to do it. Would the best way be to run the program as a user who is...
  3. mikeEd

    Scripting/spaces in filenames

    I'm never sure how to deal with spaces in filenames with bash scripting. e.g. If I have a line like for i in `find . -name '*.txt'` ... and one of the filenames in the current directory has spaces in it, it will return an 'i' for each word in the name. What's the correct way to deal with this?
  4. mikeEd

    strange connectivity problems

    This is a very strange problem I've had a few times with my ISP. I'm not looking for a solution, but just wondering what could possibly be causing it at their end. Last time a friend phoned them up (he had exactly the same problem) and they did admit it was a problem at their end saying they...
  5. mikeEd

    Calculating fields in a view

    I have a view that is something like the following: SELECT (Field1 * 10) AS CalcField1, (Field1 * 10) + Field2 AS CalcField2, (Field1 * 10) + Field2 - 2 AS CalcField3 FROM TABLE i.e. Subsequent fields are calculated based on the value of earlier calculated fields. Is there any obvious way...
  6. mikeEd

    Mandrake Aurora

    How can I stop Aurora running in Mandrake 8.2? I've looked through my init scripts and tried various things but can't seem to get rid of it. In 8.1 you could turn it off in the Control Center, but that option seems to have disappeared. Thanks.
  7. mikeEd

    I'm having frustrating problems wit

    I'm having frustrating problems with files being locked using VS beta 2. If I do for example, Bitmap bmp = new Bitmap(Image.FromFile("image.jpg")); bmp.Dispose(); FileInfo file = new FileInfo("image.jpg"); file.Delete(); I get an IOException, as the file is supposedly...
  8. mikeEd

    glib-config missing

    I'm having trouble compiling XChat and XMMS under Mandrake 8.2 (and had the same problem under 8.1). configure reports that glib-config can't be found, and I've confirmed that it isn't anywhere under /usr, even though I have glibc + glibc-devel 2.2.4 installed. The same thing happens looking for...
  9. mikeEd

    glib-config missing

    I'm having trouble compiling XChat and XMMS under Mandrake 8.2 (and had the same problem under 8.1). configure reports that glib-config can't be found, and I've confirmed that it isn't anywhere under /usr, even though I have glibc + glibc-devel 2.2.4 installed. The same thing happens looking for...
  10. mikeEd

    'IF' function?

    Is there, in MSSQL, a function equivalent to MySQL's IF(expr1, expr2, expr3) (if expr1 then return expr2, else return expr3)?
  11. mikeEd

    Custom Access Permissions

    Does anyone else find that the custom security settings for a COM object are always overriden by the system-wide defaults? I'm running Win2k and find that whatever settings I assign to to particular object they are ignored in favour of the defaults. Any help appreciated.

Part and Inventory Search

Back
Top