|
I'm not a sysadmin, but I play one on TV: I'm trying to fix a problem for my mom's tiny non-profit company's server. I set up a Windows Server 2003 machine as a domain controller and file server. Everything has been working well for a few months, but ...
Started by Larry Hamelin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Is it possible someone else on the network has the file open for read-write? log.
Into the file server & start the Shared Folder MMC snap-in (short is fsmgmt.msc) Have a look at Open for the saves.
|
|
Hi,
I am thinking to save server load, i could load common javascript files (jquery src) and maybe certain images from websites like Google (which are almost always never down, and always pretty fast, maybe faster than my server).
Will it save much load...
Started by chris on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
You might consider putting up another server that does nothing but serve your static files using an ultra efficient....
Are there lots of small web pages and lots of users? If so web account to save bandwidth .
Your server load is like now.
|
|
I have a wp plugin file on server B who's purpose is to retrieve a zip file from a remote server A.
Once Server B receives the zip file, it should extract the contents and copy the files into a specific folder on server B overwriting any existing files...
Started by Scott B on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Function openZip($file_to_open, $debug = false) { global $target; $file = realpath('/tmp/'.md5($file_to_open).'.zip'); $client = curl_init($file_to_open); curl_setopt(CURLOPT_RETURNTRANSFER, 1); $fileData = curl_exec($client....
|
Ask your Facebook Friends
|
Hi everyone, i am moving to a new file server under Server 2008 Standard 32bit edition. I will refer to the older server as just "server", the new one i named as server2.
i have updated server2 and patched it. I have also joined the domain as member server...
Started by dasko on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
With DFS you build a namespace for yourServer 2008 may be different... .
In a nutshell, it can make server name issues for file servers Just Go Away(TM).
server, I'd like to draw your attention to DFS - Distributed File System .
|
|
Have taken over a client from another consultant.
the current file server that is a member server is joined to the domain. BUT, if you look under control panel>administrative panel>local users or accounts
the domain_name\Administrator is not added...
Started by dasko on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Take a look at this webcast on best....
As previously mentioned the domain admins group gets added by default not an account .
Always create a domain level group and add that to the local group on the server.
Individual accounts to a server.
|
|
Hi, I'm trying to upload a file via FTP from my local computer to an FTP server, which is also on my local computer at the moment. I've got this sub I'm calling:
Public Sub UploadFTPFile(ByVal ftpservername, ByVal fullfilepath, ByVal filename, ByVal username...
Started by Kenny Bones on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Additionally, make sure you file is test.mp3.
The correct privileges to write to that server.
|
|
Just wondering if it is possible to convert sql-server *.mdf file into sqlite file ?
Started by portoalet on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.itshareware.com/prodview-code_65203--download do the conversion from SQL Server....
DBConvert features: Unicode a direct access to MS SQL server, etc.
To migrate data from SQLite to MS SQL server and from MS SQL to SQLite.
|
|
I have a script on my one server and I want that script to create a file on another server of mine using PHP, NOT VIA FTP?
Started by Roland on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
There are of course other protocols that enable you to create a file, but they all require server through an absolute file path) WebDaV (PHP client libraries available) SCP (Finding a PHP client script on the remote....
server.
|
|
How to move file from one server to another server? Plz help When user uploading the excel file i am moving that file to another server this is the code i am using
string destFilename = @"\\192.168.1.2" + @"\\xyz\\xyz1\\" + fileName + ""; System.IO.File...
Started by Xyz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Not sure exactly what you want, but here is a sample that transfers files using webservices http://articles.techrepublic.com.com/5100-10878_11-5805105.html
Your destination path is wrong it would turn out to be
\\192.168.1.2\\sabre\\Mapping Rules....
|
|
I'm trying to move my database.mdf file from a development environment to a SQL Server Express server that is hosted on my VPS - but I can't figure out how to attach the file to my database server. Help!
Started by steve on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Your application....
I am not sure if you can, but you could use the Sql Studio Management Express, which allows you to connect (and then attach) the database .
Sp_attach_db (or CREATE DATABASE FOR ATTACH) - don't forget to bring the LDF (log) files, too.
|