Jump to content

dhrubajyoti

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Everything posted by dhrubajyoti

  1. Hi, Can anyone help me in image resizing. I know its too easy to upload and re-size an image, but the prob comes like - the shape (pixel wise) get reduced, but the size(MB/KB) does not get reduced accordingly... Any third party or application so that I can use it my site would have helped.... -Regards Dhrubajyoti
  2. If I type net use Z: \\192.168.1.5\Databases\data\account PASSWORD /user:USERNAME /persistent:no in command prompt and then I try to access Z: thorugh COmmand prompt, it works. But If I try to do the same using PHP, it says "Warning: opendir(Z:) [function.opendir]: failed to open dir: No error in C:\wamp\www\knet\handle.php on line 28"
  3. Why are we putting $letter = "Z"; what does this drive stand for....????
  4. Actually Its in my office and we are not allowed to do any modification. All I have is--a local server installed in my system and the ip of the desired Computer in the network.
  5. Hi, Thanks a lot for your reply. I have seen this tutorial on php.net. But could not build my code accordingly. So, I am supplying with the credentials. If possible, PLZ help me write the code IP to be connected : 192.168.1.4 Folder to be accessed : \\19.168.1.4\folder1\folder_test Username of 192.168.1.3 : user Password of 192.168.1.3 : pass I just want to access folder_test directory. Sir, plz help
  6. Hi, I want to connect to a computer in my network, where the computer is password protected. So what we normally do is, type \\<ip or computer name>. Then when it prompts for username and pass, we provide it in the pop-up window. So, when we do a opendir('directory name'), it opens normally. but what to do if this ddirectory has some pass. Please help. This is really urgent and I am stuck up. My Code is <?php function open_dir ($dir_name) { if ($handle = opendir ($dir_name)) { while (($file = readdir($handle)) != false) { if ($file != '.' && $file != '..') if (filetype($dir_name.'/'.$file)== 'dir') { open_dir ($dir_name.'/'.$file); } else { echo $file." "; echo "-------------"; insert_into_database ($dir_name, $file); } } closedir($handle); } } open_dir ("\\\\192.168.1.2\folder"); ?> What to do if "\\\\192.168.1.2\" computer in the network has password
×
×
  • 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.