vote up 0 vote down star

I am having the following difficulties: Three servers A,B,C : A,B in the same network domain; C in another. PHP scripts executing on server A write to a shared folder on server B. The same scripts executing on server C fail to write to server B.

PHP looks something like this:

oject->Output('\\\\serverB\\sharedfolder\\file.dummy');

Is there any way I can make this script work elegantly on server C?

When I remote-desktop to server C and want to see the contents of \\serverB\sharedfolder, a login prompt pops up and asks for a user name and password. This I can provide and subsequently access the shared folder on server B. But how could I do this from a PHP script? Is it possible?

flag

80% accept rate
PHP does not natively support the Samba protocol (windows file transfers). Does your object implement it? – sirlancelot Mar 27 at 15:41
the object in question is an instance of FPDF. The open-source PDF generating component. it's something like pdf->Output('\\\\server\\share\\file.pdf','F'); Don't know about Samba... – MasterPeter Mar 27 at 16:01
All of the machines involved are running Windows. No Samba needed. – MasterPeter Mar 27 at 16:19

2 Answers

vote up 0 vote down check

I think the easiest option with security in mind would be to write the content from server C in to a socket where server A,B reside and have an additional script which will save the content written from the socket to your shared folder.....

http://www.php.net/manual/en/function.fsockopen.php

link|flag
our IT team has rearranged the servers so that it automagically started to work, but I like the proposed solution. This seems like an elegant and secure solution. – MasterPeter Mar 30 at 16:57
I am glad you have found a working solution.....good luck man.... – Ronald Conco Mar 31 at 12:55
vote up 0 vote down

The formats are:

  • UNC — \\servername\sharename%username:password
  • URL — smb://[[domain;]username[:password]@]server[/share[/path]]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.