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. Zodiak99

    Meeting Agenda Script

    Please use google or any other searchengine for this. You will find dozens of programs which fall into this category. For the search terms 'groupware php free' I get already several hundred links. Just pick your favourite ;-) Zod
  2. Zodiak99

    Browser Question....

    No browser should ever interpret any of you php code, since PHP is a serverside scripting language it is always interpreted/executed on the server (in case the server is configured corretly). HTML however and also Javascript are clientside and thus interpreted on the client/browser. The effect...
  3. Zodiak99

    application logic design

    David, you rock! I will study your .fla now, thanks a ton meanwhile! Zod
  4. Zodiak99

    application logic design

    Hello list, in a collaborative project I am supposed to make a few design suggestions for a web application. Think about an application where the user will be able to: login / logout create, delete, archive projects, upload and download data work on different projects within an application...
  5. Zodiak99

    comparing 2 files and changing 1

    Hi awk gurus, my wife has asked me if I could program something for her, but my last experience of working with sed and awk dates back to like 1995. Perl would be another option I guess to accomplish this task but I have a feeling it might be even easier in awk. But let me explain the problem...
  6. Zodiak99

    empty $_POST array

    Are you talking about non-well-formed HTML or are you talking about reaching some limit of form fields that can be extracted?! That (2nd case) would be indeed very bad ;-( Zodiak
  7. Zodiak99

    Selecting records that have not been previously selected

    The first thing that came to my mind was adding at least one extra field to your DB table(s) that stores a flag 'already_dloaded' with 0/1 as possible values. On a second thought this is a rather suboptimal solution since you will problably have more than one customer downloading records. In any...
  8. Zodiak99

    Postfix + Cyrus SASL

    Yes I am reading it too, actually just found out there is a new postfix forum ;-) Anyway, I am afraid I cant help you with SASL since I have not fiddled with it so far - but it's on my todo list since a while.... if I have info for you I'll post it here ofc. Regards, Zodiak
  9. Zodiak99

    feature: body_checks

    Hi postfixers, I recently started playing with the header_checks and body_checks feature. I got the first one working just fine, however I cant seem to get body_checks working. These are the 2 lines in main.cf: body_checks = regexp:/etc/postfix/body_checks body_checks =...
  10. Zodiak99

    Samba and DNS troubles .... newb

    Well, I suggest you read the samba docs first. From my experience I can only guess what your problem might be: 1. you didn't add the users you created to your smbpasswd file (type smbpasswd -h to get info) 2. check all the basic settings in smb.conf like the workgroup = YOURWORKGROUP (you seem...
  11. Zodiak99

    empty $_POST array

    Well I try a shot in the dark.... did you try HTTP_POST_VARS["send"] instead? Also I noticed you are using $_POST["send"] first and then $_POST["email"] later, look at that too. I didn't have time to fully analyze your code - have to get coding myself now instead...
  12. Zodiak99

    Can some one please help me out

    Hi, maybe it would be more efficient to give us a link to the page where you downloaded this tool and a short but detailed description about the changes you need plus maybe also why you need them. Sometimes people come up with a better way to achieve something when they know the actual goal ;-)...
  13. Zodiak99

    System calls in unix

    I'd like to add that while being a convenient way using system calls via the backticks or in whichever way should be thouroghly testing before putting them on a production server. Especially when we are talking about CGI programs and you give users the possibility of entering valus that...
  14. Zodiak99

    Perl code analizer

    A starting point would be Open Perl IDE which you can find at http://open-perl-ide.sourcefourge.net/ Together with ActiveStates Perl for Win32 it's a nice tool to have if you work under Win* . For UNIX/Linux you have a wide range of choices starting with Emacs (lots of Lisp modules available to...
  15. Zodiak99

    Why won't this work?

    I'll be much easier for us to debug your script with some extra info. This is what your server says: "The server has encountered a server error. If this problem persists please inform the site administrator, it may be a scripting error in the program you are trying to access..." If...

Part and Inventory Search

Back
Top