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 strongm 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: keak
  • Content: Threads
  • Order by date
  1. keak

    htpasswd, prompted to logn when downloading vidoes

    hi there I have a whole domain which is htpasswd protected I have direct links to video within this site meaning <a href='videofile.wmv'> download video </a> When I click on this or try to right-click save as, I get prompted to login again, for every video. Is there a way to have it so that...
  2. keak

    recursive cp that preserves symbolic links

    Hi there, I am fairly new to Unix and I can't seem to find an answer online for this. Is there a way to do a cp -Rd on a unix? Basically, I need to copy over a folder that contains regular files/folders and also symbolic links in it. I need to preserve the symbolic links in the target...
  3. keak

    every .exe I execute is saying &quot;Access is Denied.&quot;

    HI there, My cmd.exe has been working fine up till now and I just have this weird issue show up from now where. Basically, whatever .exe file I execute from the command prompt, I get a "Access is denied." error. so for example, I have putty.exe in my C:\ When I try to execute this, I get the...
  4. keak

    php prompting me to download after few minutes

    Hi all, Was wondering if anyone had an experience with this. I have a php file that takes some time to execute (a uploading process). Currently, after a few minutes, php prompts me to download the file (upload.php). I am in a load balancing environment but I have verified my file upload size...
  5. keak

    using cast sql statement in a adodb.connection

    HI there I have the following code wich is pretty straight forward: Set Conn = Server.CreateObject("ADODB.Connection") set Rs = server.createobject("ADODB.Recordset") Conn.Open "my db specs here" Rs.Open "select max(cast (mem_id as int) ) as maxid from members", Conn Rs.MoveFirst...
  6. keak

    installing mysql-4.1 with kearnel 2.4 debian

    Hi there, I am currently trying to revert back to a mysql-4.1 after failing to install mysql-server-5.0 Apparently, 5.0 is not compatible with kernel version 2.4 PROBLEM: MySQL-5.x is currently incompatible with kernel 2.4. Aborting. See http://bugs.debian.org/416841 for more information...
  7. keak

    closing a dos batch script

    Hi there, I have a batch script that opens up a program (putty) and automatically logs me into a SSH session. C:\putty.exe -load "server1" -l root -pw password The problem I have is that, when the program putty.exe opens and logs me in, I want to close the command line window. Is there a...
  8. keak

    directly use php's get post variable's name

    HI there, I am working on a piece of code here now written by a previous developer. There is a form submission with a couple variables passed over, and usually one would have to put a code like the following to access this variable. $firstname=$_GET[firstname] however, on this form handling...
  9. keak

    my putty session seems to die too quick

    Hi there, I have a debian server where I have my ssh running. I am connecting to this server from my work via putty, but I noticed that even before I close the session, my putty gives me a disconnected message. When I am on a remote desktop on another server and try to use putty there to...
  10. keak

    redirecting to another url after a long exec command

    Hi there, I have a follwoing code segment in php exec ("some long linux command to execute"); header ("Location:http://www.domain.com/thankyou.php"); I was wondering if there is a way to have the linux command in exec to run in the background and instantly redirect the user to thankyou.php...
  11. keak

    dual monitor; windows gets blacked out

    when I drag stuff, sometimes, over to one monitor to another, half all all of the window gets black area. If I highlight the text within that black section, I can see the text. and everytime I maximize my window, all the text/images show. Is there a setting that may be causing this issue with...
  12. keak

    /etc/resolv.conf is empty

    Hi there, I am on a debian system and currently in my /etc/resolv.conf file, I only see the line # generated by NetworkManager, do not edit! without any entries defined. I do have nameservers info in my /etc/network/interfaces, and even after restarting /etc/init.d/networking restart, I am...
  13. keak

    debian screen distorts after a whil

    Hi there, I have a debian installation and when i boot up the system, everything seems fine. However, after a random time (sometimes 10 minutes, sometimes an hour), the screen distorts and becomes really fuzzy making me not able to read what's on the screen? Has anyone encountered similar...
  14. keak

    .htaccess authentication only seems to promt once

    Hi there. I have a htaccess file with the following entry: AuthName "Members Only" AuthType Basic AuthUserFile /www/www.site.com/.htpasswd AuthGroupFile /dev/null require valid-user Options -Indexes and when I access this website, I get a prompt for user/pass. When I type the correct entry...
  15. keak

    grub not finding my debian OS

    Hi there, I had a server that had both Ubuntu and Debian installed. Most of our production files was on Debian but when I rebooted the server, GRUB is not finding my debian partion. I looked into /boot/grub/menu.lst and I can't seem to find my entry for debian. Is it possible that GRUB updated...
  16. keak

    finding windows network

    hi there it seems that my mac is really "randomly" finding windows network shared folder. Is there a way to clear the cache in mac or something for us to see the shared folder on our windows network ? It really does seem random, where sometimes we just have to wait 5minutes, and other times...
  17. keak

    apache log file size

    Hi there, I am having a problem with apache log files. It seems to log everything until the file reaches 2.1G and it doesn't write anything to it. Is there a way in apache, or linux to allow log file size to larger than this? Thanks!
  18. keak

    mod rewrite rule not working

    Hi there, I am trying to do a redirect to the members sub-folder to another URL and I have the code Options +FollowSymLinks RewriteEngine on RewriteBase / RewriteRule ^members*$ http://www.domain.com/ RewriteRule ^members/$ http://www.domain.com/ RewriteRule ^old\.html$ new.html but instead...
  19. keak

    not sending email

    Hi there, I am trying to send an email through asp but for some reason, it is not going through dim mailbody, mailbody_formatted mailbody = Request("message") mailbody_formatted = Replace(mailbody, "\n", "<br>") Dim Mail Set Mail = Server.CreateObject("CDONTS.NewMail") 'Mail.From =...
  20. keak

    unknown sender issue

    Hi there, I usually send emails via php and I set the From: address through code. However, when I get the emails, i see that the sender is from "unknown sender" and at the top of my email body, i see the text From: user@mydomain.com Is there a setting I'm missing here? thanks!

Part and Inventory Search

Back
Top