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 Mike Lewis 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. peteschulte

    Migrate website from PHP 5.3 to 5.5

    South Beach, that's a good question. I need to backtrack with Kevin and learn what the error was before they restored the old interpreter. Thank you! Gandalf458, thank you for the migration guides' locations. That is essential information. Phil AKA Vacunita, I was hoping to hear that about "a...
  2. peteschulte

    Migrate website from PHP 5.3 to 5.5

    Hello Guys and Gals, The website www.kevinschafer.com was created in PHP version 5.3. I didn't create it, but over the years I've been Kevin's go-to guy for HTML page revisions,PHP-My Admin tasks, a new JavaScript window, etc. Recently the PHP interpreter on the server was upgraded to 5.5. The...
  3. peteschulte

    JS variable works to display pictures but not file names

    Thank you Chris. I made those changes, then viewing source in Chrome I saw a lot of messed up tags, unrelated to the changes you advised. It's time to "zoom out" conceptually and correct other errors that may be breaking the page...
  4. peteschulte

    JS variable works to display pictures but not file names

    Hi Chris, I took your advice to get rid of the <layer> element like this. No joy. Any suggestions? <script> <!-- document.write('<DIV ID="caption"><layer ID="cap" pagex=0 pagey=460><CENTER>'+picNameArray[2]+'</CENTER></layer></DIV>'); --!> document.write('<DIV ID="caption" pagex=0...
  5. peteschulte

    JS variable works to display pictures but not file names

    Thanks again Chris! I was on a wild goose chase. Next to figure out the implementation, maybe over the weekend. Pete S
  6. peteschulte

    JS variable works to display pictures but not file names

    ChrisHirst, Thanks again for taking an interest and in advance for your reply to the following. You wrote, "Give the caption element an ID" and I don't know what caption element you are referring to. Are you referring to the following? <SCRIPT> document.write('<DIV ID="caption"><LAYER...
  7. peteschulte

    JS variable works to display pictures but not file names

    Chris, thanks! For my benefit, I'm noting some W3 Schools code here to explain your directions. <html> <head> <script type="text/javascript"> function displayResult() { document.getElementById("myHeader").innerHTML="Have a nice day!"; } </script> </head> <body> <h1 id="myHeader">Hello...
  8. peteschulte

    JS variable works to display pictures but not file names

    Here is the URL for the page: Link Thanks again! Pete S
  9. peteschulte

    JS variable works to display pictures but not file names

    Hello Coders and Problem-Solvers! At the end of this, see the code for the entire page. On an old web page, six thumbnails are visible on the right. On the left, one of them is displayed bigger, changing as the mouse moves over the thumbs. We would like for the correct file name to appear...
  10. peteschulte

    how to procss an XML file of 352 megs?

    Thanks again, Olaf. The discussion of SAX is interesting for future use. We were fortunate in chopping the file into parts, creating tables for each in different folders, and appending. Peter Pete S
  11. peteschulte

    how to procss an XML file of 352 megs?

    Thanks Dan and Dave! Pete S
  12. peteschulte

    how to procss an XML file of 352 megs?

    Hello Coders, We use filetostr() and VFP 8 limits strings to 16,777,184 chars. Any suggestions on how to break up this file or re-set VFP or ... ? xmlcontent = FILETOSTR(xmlfile) lcXML = xmlcontent loXMLAdapter = CreateObject("XMLAdapter") loXMLAdapter.LoadXML(lcXML,.F.,.T.) Thanks, Pete S
  13. peteschulte

    How to obtain count of days from dates?

    Thanks you jrbbldr for the solution I used, brigmar for the good answer and bborisov for the version I filed away for future use! This is what I was missing IF VARTYPE(tdDate) == [T] tdDate = TTOD(tdDate) ENDIF Well "days" happily is being stored to the table, after I switched from...
  14. peteschulte

    How to obtain count of days from dates?

    I need to obtain the count of days in the billing cycle. Below is one way, to use Olaf's post from before. * billingsummary.cycle_end and cycle_star look like 03/21/09 * type is DateTime How can I convert cycle_end and cycle_star to work with function dayofyear()? Refer to thread 184-1016445...
  15. peteschulte

    how to get mm/dd/yyyy from DateTime var?

    I got it, CTOD. TY anyhow ;-) Pete S
  16. peteschulte

    how to get mm/dd/yyyy from DateTime var?

    Hello Fox Coders I have been clicking around in the help files and trying various ways to get from replace billdate with iif(!isnull(billsummary.billdate), datetime(billsummary.billdate),'') yielding 20081012 to another code expression that would yield 10/12/2008. I can get the former but...
  17. peteschulte

    FILETOSTR error while converting XML

    Hi Olaf, I'm working with the path db's local and global as you advised. Here is the code. && creates 14 tables and requires 10 minutes && SET DEFAULT TO \\Gmc\d\Stmt\Monterey\UB_Test_1231\ *********************** Local lcXMLPath lcXMLPath = GetPath("XMLFILE") Local lcXMLFile, lcXML...
  18. peteschulte

    xmlAdapter with Append From, to a batch of files

    Olaf, Tamar and other friends, When I came back to this and tried it, it worked GREAT! Thank you, for real. It's a big help to my team here at work. A small contribution may help to mark recognition of your contributions to the Forum! Happy Weekend...
  19. peteschulte

    xmlAdapter with Append From, to a batch of files

    Tamar and Olaf, thank you, I'll check it out and report results!
  20. peteschulte

    xmlAdapter with Append From, to a batch of files

    Hi Tamar, How do I "use xmlAdapter and append from its tables collection to a batch of files"? That is, for each loXMLTable in loXMLAdapter.Tables, find it's name matched in the list of file names from the folder, and write the xml from one loXMLAdapter.Tables table to that matched table in...

Part and Inventory Search

Back
Top