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

    How to use Cognos report studio to change default Total() calculation

    Hello! I have a crosstab report that calculates for failure rates for my products ; it has two measures (PASSCOUNT, FAILCOUNT) and a calculation FAILRATE (FAILCOUNT/PASSCOUNT+FAILCOUNT) The report layout looks thusly: OEM MODEL TESTYEAR TESTMONTH PASSCOUNT...
  2. kristo5747

    Does FTP have Auth SSL option?

    I am working with a supplier who's just tightened their security. They moved from an anonymous FTP setup to a more secure alternative. The parameters they gave me Host: blahblah.net Port: 4421 Path: /mailbox User: (...) Password: (...) Auth SSL: yes Passive mode: yes Using ftp -pn blahblah.net...
  3. kristo5747

    Why is sort -k not working all the time?

    I have a script that puts a list of files in two separate arrays: First, I get a file list from a ZIP file and fill `FIRST_Array()` with it. Second, I get a file list from a control file within a ZIP file and fill `SECOND_Array()` with it while read length date time filename...
  4. kristo5747

    Prevent word splitting with file with spaces in name

    ((Smacking forehead)) Duh! That was it. Thank you!!
  5. kristo5747

    Prevent word splitting with file with spaces in name

    Hello, I have a script that "validates" a ZIP file that look like this AAA_20120801.zip => x~back end~20120801.TXT y~time in~20120801.TXT z~heat_chamber~20120801.TXT AAA_20120801.ctlMy task is to compare its contents (i.e the list of files contained inside) with the control file that is...
  6. kristo5747

    Copy-Paste from MS Excel fails with IE but works with Firefox

    I built a very simple app using a PHP form with a bit of Javascript. In my form, I have a text input which I used to run a database search. In case I have multiple values, I have a bit of code that puts a comma in between each. The weird part is this: In Firefox, I can go do MS Excel, copy 5...
  7. kristo5747

    Class 'ZipArchive' not found

    Talked to my sysadmin. He is gonna try `pecl install zip`. We'll see how it goes. Thanks for taking the time.
  8. kristo5747

    Class 'ZipArchive' not found

    Quote from: dzelenika on Today at 03:27:36 PM Is Your server on Windows, linux or some other OS? Linux Red Hat is my server OS. Further investigating via PHPINFO shows PHP was not compiled on my server with ZIP support. The configure command section of PhpInfo() does not show the...
  9. kristo5747

    Class 'ZipArchive' not found

    Hello, I am trying to implement a simple script that ZIPs up a text file. The problem is that I don't think the ZIPArchive is available on my server. Here is an example of my code: <?php $zip = new ZipArchive(); $filename = "./PJR.v2.zip"; if ($zip->open($filename...
  10. kristo5747

    Retrieve default value with grep -e?

    I am parsing text files looking for specific entries like so grep -e 'Model' -e 'Manufacturer' -e 'Man Date' -e 'SW Version' -e' SW Name' -e 'HW Version' -e 'Receiver ID' JGMDTV356.HDD This gives me an output like so Model = HR24 Manufacturer = 100 Man Date =...
  11. kristo5747

    Exception / Error handlers in DB2?

    I have a bunch of SQL scripts (with shell script wrappers) to unload data like so EXPORT TO /tmp/out.csv OF DEL MODIFIED BY NOCHARDEL COLDEL, DATESISO MESSAGES /tmp/out.msg SELECT WIDGETID ... I want to add an error handler to the script the way Oracle does it...
  12. kristo5747

    Can I pass Ajax var result to PHP code?

    Thanks for your help. I need to rework the whole flow of the app. Thanks for taking the time.
  13. kristo5747

    Can I pass Ajax var result to PHP code?

    To clarify... That <div> is supposed to end up being the table name that is returned by the Ajax script.
  14. kristo5747

    Can I pass Ajax var result to PHP code?

    **Disclaimer: It's been a while since I last wrote any code. The quality of my code is likely to be sub-par. You've been warned.** Greetings. I am coding a basic form that uses a SELECT list I populate from my database. However, my user needs the form to be dynamic and wants to be able to...
  15. kristo5747

    Only one select list works on PHP form

    Complete re-write here => http://pastebin.com/raw.php?i=qi5F7X2e There are several problems with my form. a) Neither one of my SELECT lists are ever empty. b) I never check for return the values from my functions. This one is working. Thanks for taking the time.
  16. kristo5747

    Only one select list works on PHP form

    Okay. It makes sense. How do I fix that?
  17. kristo5747

    Only one select list works on PHP form

    **Disclaimer: It's been a while since I last wrote any code. The quality of my code is likely to be sub-par. You've been warned.** I have a basic form that's meant to search flat files on our server. The "search engine" I created as two select lists: one for the file names and one for the...
  18. kristo5747

    fulltext query only works &quot;with query expansion&quot;

    Greetings! I am trying to build a very basic fulltext search app in php. I have found an example here [http://tips4php.net/2010/03/create-your-own-fulltext-searchengine-with-php-and-mysql] so I used it to build my own. This is my table/data (field types are text) name...
  19. kristo5747

    sendmail: trusted-users or aliases?

    Yes, I can. I am gonna have my sysadmin change our sendmail config like so: sendmail.mc define(`SMART_HOST',`host_name.production_email_server.com') sendmail.cf DShost_name.production_email_server.com We'll see how it goes.
  20. kristo5747

    sendmail: trusted-users or aliases?

    For a project that I have been assigned to, I need to send emails to a business partner (business_partner.com) from one production server. However, my emails neither reach their destination nor bounce back to me. Working with our business partner's IT support, the following error was discovered...

Part and Inventory Search

Back
Top