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

  1. effennel

    multiple local db to one test db

    I'm working on a website with multiple developers in multiple locations. Considering the fact that each developers will develop locally, is there a way to sync all changes to a "master" test database automatically on a regular basis?
  2. effennel

    vsftp: ftp access, not bash

    Good cue. For others who may be looking for this info, see: http://chrootssh.sourceforge.net/index.php Thanks FnL
  3. effennel

    vsftp: ftp access, not bash

    All right, I'll try to make myself a little clearer: I want users to be able to ftp to their home directory. No shell access whatsoever and chroot'd there. With chroot_local_user=YES in vsftpd.conf and /bin/bash in passwd, users can go outside their home directory using a ftp client (sFTP...
  4. effennel

    vsftp: ftp access, not bash

    RhythmAce, I appreciate your help, however as I mentioned: chroot_local_user is set to YES and users can still browser outside their home directory. Users can't login via FTP when /sbin/nologin is set in the /etc/passwd file. Any other tips? Thanks FnL
  5. effennel

    vsftp: ftp access, not bash

    Hello, I am trying to setup vsftp on CentOS. My test user can connect via sftp and is chroot'd to the proper directory. However she can browse /, /etc, more... and has access to bash. I want to limit the user to her own directory and no access to bash. This is the current /etc/passwd #...
  6. effennel

    Meaningful bullet needing ALT attributes

    Great idea BabyJeffy! Combine with Foamcow dd seems a good combo. Cheers FnL
  7. effennel

    Meaningful bullet needing ALT attributes

    Hello, .li_pdf { font-family: Verdana, Arial, Helvetica, sans-serif; color:#000000; line-height:20px; font-size:12px; list-style-image:url(/images/icons/acrobat.gif); } This class is used to style bullets in lists of hyperlinks. The icon (a little PDF logo) indicates to the users...
  8. effennel

    Mesuring duration of session

    Thanks for your help. I like creative solutions... Cheers, FnL
  9. effennel

    Mesuring duration of session

    Hi, I need to log the precise duration of a session. I can log the time at session start. I do I get the time at session end if, for example, the user leaves by closing the browser? Duration has to be precise, no timeout after x minutes... Thanks FnL
  10. effennel

    Custom display for incomplete form entries

    Hello, I would like to customize the message I get when I use the "_required" tag on form entries. I get this ugly grey box... Any ways I can change that? Thanks FnL
  11. effennel

    Version of C#

    I just wanted to repost chinu123's question to find out if there is any new suggestions out there, one year later. I am finding myself in the same position, wanting the same information... Thanks, FnL
  12. effennel

    Can't locate object method bootstrap via package Crypt::DES

    Hi, I get this error: Can't locate object method "bootstrap" via package "Crypt::DES" at /home/usr/domain/cgi-bin/lib/Crypt/DES.pm line 23. When running this: #!/usr/bin/perl use lib '/home/usr/domain/cgi-bin/lib'; use strict; use CGI qw( standard ); use CGI::Carp qw(fatalsToBrowser)...
  13. effennel

    incrementing array index

    Beauty! Cheers. FnL
  14. effennel

    incrementing array index

    Is there anyways that the variable $insAmt_[$i] be available as $insAmt_1 $insAmt_2 $insAmt_2 etc.. outside the loop?
  15. effennel

    incrementing array index

    OK. Looks good. Thanks for your help Dweezel! Cheers FnL
  16. effennel

    incrementing array index

    I am trying to access the content passed via $_POST in a loop. What I'm trying to get is this: $insAmt_1 = $_POST"['1ins1']"; $insAmt_2 = $_POST"['1ins2']"; $insAmt_3 = $_POST"['1ins3']"; then $insAmt_1 = $_POST"['2ins1']"; $insAmt_2 = $_POST"['2ins2']"; $insAmt_3 = $_POST"['2ins3']"...
  17. effennel

    datetime - how to compare the time?

    I have a variable using the datetime format "0000-00-00 00:00:00" How do I proceed to determine if the hour is between 10:00:00 and 15:59:59? Thanks FnL
  18. effennel

    Same query on 2 tables

    I get it. Is fair to say that my two first blocks above would be more performant (although less elegant...)? Which would allow the best performance? I can I evaluate/test this? Thanks FnL
  19. effennel

    Same query on 2 tables

    I'm trying to find out whether user_id 5 has - at least one row with a string the in field timeStamp starting by 2005. - in at least one of the tables I tried a join before, but didn't get what I was looking for. Perhaps I had the wrong syntax. If I remember well, it was something like...
  20. effennel

    Same query on 2 tables

    I'm new to PHP/MySQL... Any ways I can check out the performance associated to the 2 solutions above? Thanks FnL

Part and Inventory Search

Back
Top