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 Shaun E 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: karnaf
  • Order by date
  1. karnaf

    window.focus() not working in Firefox / Netscape?

    Oh, and the JavaScript console of FireFox displays no error or warning msg. 10x
  2. karnaf

    window.focus() not working in Firefox / Netscape?

    That's the sad part :-( I've narrowed it down when trying to figure out what's wrong to the simplest thing possible <html> <head> <title>test</title> </head> <body> <script type="text/javascript">setTimeout('window.focus()', 10000);</script> bla </body> </html> That's the whole page and it...
  3. karnaf

    window.focus() not working in Firefox / Netscape?

    yes! this is another of those questions about "Is this not working in Firefox???". I can't help it :-) I have a line in my code that goes: <script type="text/javascript">setTimeout('top.focus()', 10000);</script> It works great in Internet Explorer 6, but does nothing in FireFox 1.0.7 or...
  4. karnaf

    Local net addresses vs. www net addresses - how to configure?

    Any option for using wildcards? Something like 192.168.0.101 *.dev.local
  5. karnaf

    Local net addresses vs. www net addresses - how to configure?

    It's like magic!!! [2thumbsup] Thanks.
  6. karnaf

    Local net addresses vs. www net addresses - how to configure?

    Hi, I'm trying to configure my XP Pro computer to know that any address that ends with .local (e.g. http://mysite.local http://anotherone.local) accessed by it will go to my local Linux server, but any other web address (e.g. http://www.tek-tips.com :) ) will go to the outside world. My home...
  7. karnaf

    Session handling

    found it. my PHPIniDir in my httpd.conf wasn't set correctly, and so Apache couldn't find the php.ini.
  8. karnaf

    php.ini won't take effect

    OK, found it. The problem was in my httpd.conf file - my PHPIniDir settings was incorrect. no voodoo after all.
  9. karnaf

    php.ini won't take effect

    Ok, now this is scary. I'm starting to believe in voodoo [afro] phpinfo() tells me that the Configuration File (php.ini) Path is C:\WINDOWS I renamed the php.ini file to php.hide so now there isn't a php.ini file in my windows folder. Apache restarts smoothly, the phpinfo() test script works...
  10. karnaf

    Session handling

    Now this is weird, I'm having sort of the same problem. Running Apache 2 server with PHP 4.3.0 on a WinXP Pro OS I have the same session_start error as it did for lykeat. I tried several times to change the php.ini file under c:\windows but it looks like it doesn't affect the system at all! I...
  11. karnaf

    prompt box

    It's seems like there is a different behaviour of prompt between FireFox and Internet Explorer. In IE when clicking the 'Cancel' button I get the string null In FF I get a "real" null Can anyone confirm the behaviour difference? I tried searching for it but got zilch. thanks.
  12. karnaf

    Forcing PHP5 to be case-sensitive.

    come on! [evil] it doesn't answer my question at all. I hope you meant to be funny. I'll keep it simple - Is there or isn't there a way to make PHP5 parser case-sensitive?
  13. karnaf

    Forcing PHP5 to be case-sensitive.

    Quoting from Zend newletter from May 7, 2001 As it looks to me, PHP5 is still case insensitive when it comes to functions and classes. Does anyone know if there is a way to force PHP5 to be case sensitive? so that if I have class Foo() { function Goo() { print ("Hello world!"); } }...
  14. karnaf

    Add text in a textares while pressing a button

    Found the solution after hours of trying and with the help of some webpage I lost [neutral] Here's a general thank you to all that helped me out there on the web and who's links I've lost. [thumbsup2] <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type"...
  15. karnaf

    Add text in a textares while pressing a button

    this is all nice, but what happens if you don't want to add the text at the END of the textarea, but where the curser is postioned? I still haven't found a solution to this that supports Firefox as well. Only IE supports creatRange :( The following will work only in IE. <script...
  16. karnaf

    Get the environment info with ASP

    thanks, but it's not exactly what I'm looking for. I need some stuff as to which libs are installed, which modules, environment things, not just the globals (what you gave me is more like print_r($_SERVER) in PHP... I guess there isn't a lib function like that in ASP. Thanks for trying :)
  17. karnaf

    Get the environment info with ASP

    Hello all, I've been a PHP programmer for a while and want to try some ASPing. There is a function in PHP that gives a list of all the environment info + installed libs [ phpinfo() ]. It gives out a list of the global variables and their values, the environment info (such as which DB libs are...
  18. karnaf

    Refresh A Frame.

    [sad] still not working. if I check what parent.top.main.location.href contains, I get the correct href and the firfox javascript console shows no errors, but the refreshing doesn't work... weird. thanks.
  19. karnaf

    Refresh A Frame.

    OK, ran into another problem with this... I use parent.top.main.location.href = parent.top.main.location.href; from another frame (menu) in the same window, and it works great until I open a pop up window. After that it doesn't work anymore, no matter if the pop up is open or not. It starts...
  20. karnaf

    Refresh A Frame.

    thanks!! almost did the job fully. I also had to take care of keeping passed variables to the main frame in the form's action part. (for those speaking PHP - I needed to keep the $GLOBALS but lose the $_POST vars :-) ) again, thanks for the fast help.

Part and Inventory Search

Back
Top