Moved server to Linux, and now everything has stopped working!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lezah
    New Member
    • Jun 2007
    • 3

    #1

    Moved server to Linux, and now everything has stopped working!

    please help...
    is this a valid code in using mozilla? window.open( "print_subject. php", "myWindow",
    "status = 1, height = 600, width = 650, resizable = 1, top=1, windows=1, toolbar=1, menubar=1" )
  • sumaabey
    New Member
    • Jun 2007
    • 29

    #2
    yes.code is valid

    <a href="" onclick='window .open( "test.php", "myWindow",
    "status = 1, height = 600, width = 650, resizable = 1, top=1, windows=1, toolbar=1, menubar=1" )'>ffff</a>

    Comment

    • lezah
      New Member
      • Jun 2007
      • 3

      #3
      thanks for the reply...but i still have problem....i think my connection to my database is good but i have a problem....when i used my program in the windows os there was no problem but now in linux,whew,impo rtant labels with their fields do not appear.....i simply can't explain thoroughly my problem....

      Comment

      • pbmods
        Recognized Expert Expert
        • Apr 2007
        • 5821

        #4
        Changed thread title to better describe the problem (did you know that threads whose names contain words like 'help' actually get FEWER responses?).

        Heya, lezah.

        You will want to check all the file paths you specified in your code, as *n?x and Windows do things very differently in those departments. For example, if this works on the Windows side:
        [code=php]fopen('C:\\Docu ments and Settings\\someu ser\\somefile.e xt', 'rb');[/code]

        You'll need to change it to something like this:
        [code=php]fopen('/home/someuser/somefile.ext', 'r');
        [/code]

        It all depends on how your server is set up, but if you run into any problems, post back and we'll help you out.

        Comment

        Working...