Jump to content

swap567

Members
  • Posts

    13
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

swap567's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. swap567

    MS-DOS

    No the webserver don't have access to the data server for information: the webserver is a linux server. And I don't think that the data server is an FTP server/web
  2. swap567

    MS-DOS

    No I want to be able to see the content of another server (data server only) But I can see if the content exist but I can link to the content if I know that he exist. So I just want to have a way to verify if the content exist. After I can show it no problem. Do you have an other way (other than php) to see the content of an other source?? I can change my application an write it in an other language.... thx
  3. swap567

    MS-DOS

    I tried all those thing but still give me that the folder don't exist. never mind... Thanks for your help buddy really appreciate I will continu to work on that
  4. swap567

    MS-DOS

    Ok if I can't do this... I have an other question because I tried to do it all in php before doing my application i just need to verify in the server data something like \\servername\folder\...... if the file I'm searching exist. with the function fileExist(file_name) if I try to put the path directly the php return me nothing
  5. swap567

    MS-DOS

    I want to copy a small program that I made with a .exe and that is on a data server only to the c:\temp and execute it so the visitor can see my application I know that maybe for some security we can't do this but maybe and I just want to try. I AM NOT A HACKER THAT FOR MY JOB
  6. swap567

    MS-DOS

    Ok and if I'm using a Linux server but viewing the page on windows?? a saw thing like shell_exec() is that ok??
  7. swap567

    MS-DOS

    Hi I just want a know if it's posible to execute a ms-dos script from a php page thx
  8. wow guys I'm not trying to hack anybody I need this application for my job. My boss ask me to do this. I want to use the user pc just to logging a server if he have the right to. If not a message will show saying that he can have access to those file. So do I. the only reason he's because if my folder path is on the same server that ok my application read them. But if they are on a different server. The application don't make the link. I just want to know if there's a way to make that link. I also try to logging to my own computer file and he don't reconize them.
  9. is there only javascript that php can call??
  10. ok and is it possible to do a little script that my php page will call and that will be running on the pc of the user who's visiting my page. the script will verify if the file exist and will populate my table?? after my hyperlink will work with the file the script found.
  11. I try $fp = fsockopen('\\servername\folder', 80, $errno, $errstr, 30); if ($fp) { echo "exist"; }else{ echo "dont exist"; } and it didn't work any help??
  12. Ok thanks I'll give a try but how can I have the port, errno etc ???
  13. Hi guys I tryed to search on the internet but I didn't found. I need to do a table with all folder in a certain path and give the last modified file of the folder. My application is on a linux server. If my wanted path is on the same server thats ok everything works fine but The wanted path will be on a windows data server. I can acces it by making a hyperlink to it e.g.: <a href='file:\\\serverName\\folder\\an other folder\\file.txt'>file.txt</a> but if I try to see if the file exist e.g.: if(is_dir("\\serverName\folder")){ echo "exist"; }else{ echo "don't exist"; } I even try this if(file_exists('file:\\\serverName\\folder')){ echo "exist"; }else{ echo "don't exist"; } it said that the directory didn't exist any help?? thanks
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.