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 SkipVought 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: *

  1. Jakobud

    What is the best approach to user authentication?

    Okay thanks for your help guys. It helped out a bunch!
  2. Jakobud

    What is the best approach to user authentication?

    So I'm setting up a php/mysql driven website on our company's intranet. I need to setup username's and passwords for different individuals because they all need access to different parts of the site. Now I'm reading up on how to do user authentication. One way I am reading about, involves...
  3. Jakobud

    Print/Scan/Copy on OfficeJet G55 over wireless printer server?

    I was thinking about buying a Linksys wireless print server for my OfficeJet G55. I know that with this setup, i'll be able to print from any computer in the wireless network. But will I be able to do other things like scan and copy (from software)? I just question this because I would think...
  4. Jakobud

    Module for hostconnections and shares on my LAN?

    I am using ActivePerl on Win32 and I am having a hard time finding what module/command I need to use to logon to another host or server on my local network. If I have this host: computerHost and this share: my_share I want to be able to specify a login and password and connect to that...
  5. Jakobud

    Very basic string conditional question...

    Ah... I think i just figured it out... guess I shoudl have continued reading to the next section... == is a numeric-only thing I guess. But for strings you have to use "eq". That seems odd that in Perl, it's smart enough to figure out what type your variables are, but not smart enough to use...
  6. Jakobud

    Very basic string conditional question...

    So I am just picking up Perl to learn and this simple string conditional is boggling my mind. Where is my syntax incorrect? my $var = "hello"; if ( $var == "goodbye" ) { print "goodbye everyone!"; } else { print "no goodbye's today"; } my output: goodbye everyone! What is up with that...
  7. Jakobud

    Forcing remote reload of PHP page after database change...

    I have a bit of an odd question. I'm developing a mysql database and have users access the data via homemade PHP pages that query data. When the user(s) open the PHP page or query on it, it fetches the data from the database and then refreshes the page showing the new data. If something in the...
  8. Jakobud

    Block all IP's/MAC's except what I specify?

    Well in my company we have about 5000 computers and I only want to give about 20 computers access to this one server. I don't think I want to do that hostfile thing for 4980 computers... Is there NO software that block's computers based off of their MAC address??? Come on
  9. Jakobud

    Block all IP's/MAC's except what I specify?

    I have Windows 2000 Server running on a machine on our LAN. There are only certain computers on the LAN that I want to give access to this server in order to regulate bandwidth and stuff. So I want to basically block all computers except the ones I specify. Well at first I tried to just load...
  10. Jakobud

    IE6 ignores my simple CSS styles?

    Oh okay thanks. I thought that the point of CSS was that you could make up your own tag and their styles... I will try your suggestion. Thank you
  11. Jakobud

    IE6 ignores my simple CSS styles?

    Take a look at this test page here: www.jakobud.com/cssTest.php Mozilla of course shows the text in red and at 8 pt. like the style tells it to be, but in IE6 it completely ignores the style. What am I doing wrong? How do I make styles that are the most cross-browser compatible? Thanks! Jake
  12. Jakobud

    Block all but specified MAC's/IP's/Hosts on a LAN?

    I have Windows 2000 Server running on a machine on our LAN. There are only certain computers on the LAN that I want to give access to this server in order to regulate bandwidth and stuff. So I want to basically block all computers except the ones I specify. Well at first I tried to just load...
  13. Jakobud

    Block all but specified MAC's/Hosts on LAN?

    No one can help me with this? Surely this is a problem that people face besides me...
  14. Jakobud

    Block all but specified MAC's/Hosts on LAN?

    I have Windows 2000 Server running on a machine on our LAN. There are only certain computers on the LAN that I want to give access to this server in order to regulate bandwidth and stuff. So I want to basically block all computers except the ones I specify. Well at first I tried to just load...
  15. Jakobud

    Simple PHP file uploading script... can't upload anything > 1 meg...

    BTW here is my php code: <?php $numoffile = 10; // Fix path of your file to be uploaded, don't forget to CHMOD 777 to this folder $file_dir = &quot;/home/jakobudc/public_html/upload/&quot;; if ($_POST) { for ($i=0;$i<$numoffile;$i++) { if...
  16. Jakobud

    Simple PHP file uploading script... can't upload anything &gt; 1 meg...

    Hello everyone, I followed a simple tutorial online for using PHP to create a form on a page to allow me to upload multiple files to my website. However the problem i am facing is that it doesn't seem to upload anything greater than approx 1 meg... When I choose a big jpg (like the 5 meg one I...
  17. Jakobud

    Win2k Terminal Services... how to remotely run an .exe

    Hmmm... i'm not familiar with the AT command. It schedules when to run programs? Is this really the only way to do this? The /interactive flag on that AT command is what I am looking for regarding making the executable run intereactively on the desktop with the currently logged in user, however...
  18. Jakobud

    Win2k Terminal Services... how to remotely run an .exe

    Okay well if I can't run Terminal Services on a Win2k Pro machine what is this Telnet Server I am running? Is it just a different thing? Is it possible at all to remotely execute an exe from the commandline (no VNC stuff please)?
  19. Jakobud

    Win2k Terminal Services... how to remotely run an .exe

    Yeah I'm not interested in VNC stuff. I know all about that. I want to be able to execute a remote exe from the commandline for scripting purposes. Thanks, but that doesnt help me :(
  20. Jakobud

    Win2k Terminal Services... how to remotely run an .exe

    I just realized that maybe &quot;Telnet Server&quot; is different than &quot;Terminal Services&quot;... I dunno. Anyways, can anyone answer my question or tell me how to remotely exectute and .exe on another machine?

Part and Inventory Search

Back
Top