similar to: Network App

Displaying 20 results from an estimated 7000 matches similar to: "Network App"

2009 Jun 29
7
Windows XP login
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 When WinXP users login to the samba domain a text file opens that contains: [.ShellClassInfo] LocalizedResourceName=@%SystemRoot%\system32\shell32.dll,-21787 This seems to be tied to the roaming profile, it only surfaced once I enabled roaming profiles but I am not sure how to correct it. I also noticed that the desktop background setting is
2001 Apr 29
1
files not found
i am getting closer!! now when i run the program (as root), wine --debugmsg +file,+dosfs tc2000.exe i get a messagebox: 'Files were missing that are required for TeleChart 2000. Telechart 2000 will attempt to restore your system.' it then bombs-out: Run-time error '429': ActiveX component can't create object' the only modification to config was i added
2011 Feb 15
3
apache 2 and php 5.2
Hi originally I installed php 4 on centos 5.5 and then a few repos including the remi repo to upgrade to php5, which seems to upgrade/work without any issues. However when I make a change to the /etc/php.ini file it doesn't look like apache is seeing it, for example if I change the post_max_size and upload_max_file to 25M each apache still sees the default 2M. I also removed the /etc/php.ini
2014 Mar 05
1
DFS
Robert Gurdon robert.gurdon at gmail.com 12:49 (0 perce) c?mzett: samba Hai, I would like to set up a DFS with this configuration: I have 3 Samba4 servers (4.1.4). 2 of them should work as a DFS "client" the third one will be the DFS stotage (actualy this servers has the required amount of space). So, i configured all shares on DC3 and point to those shares on DC1 and DC2. Everything
2010 Aug 06
1
apply family functions
Hi all, I would like to flag each record in the data according to certain conditions as specified below. For example, If "Close_date" in *dat* is between ("Open" & "Close") or ("Open1" & "Close1") or ("Open2" & "Close2") in *oc, *flag the records as "Valid", otherwise "Invalid" I would like to
2009 Oct 03
3
else if statement error
Hello, I am doing a simple if else statement in R. But it always comes out error such as 'unexpected error' There are two variables. ini and b. when ini=1, a=3; when ini>1 and b>2, a=5; all other situations, a=6. I don't know where it is wrong. Here is my code ini=3 b=4 if (ini==1) { a=3 } else if (ini>1 and b>2 ) { a=5 } else {a=6} Thanks a
1999 Jun 08
6
DESKTOP.INI amd & DNS puzzle
A non-text attachment was scrubbed... Name: not available Type: text Size: 2910 bytes Desc: not available Url : http://lists.samba.org/archive/samba/attachments/19990608/1b2f9b97/attachment.bat
2017 Sep 21
4
CentOS 7: changes to php.ini
Hi, I'm hosting a few web apps like OwnCloud, Wordpress and Dolibarr on CentOS 7 that require a handful of changes to php.ini. I have to define some custom values for post_max_size, upload_max_filesize, etc. I don't know if I'm supposed to edit /etc/php.ini directly or if changes should be put in a configuration file stub in /etc/php.d. For example, I followed the recommendations of
2009 Nov 02
2
Desktop.ini in Startmenue
Hello, I've setup a PDC with Samba 3.0.23 and a ldap-backend. Roaming Profiles are working, but I always have the desktop.ini visible in some folders of the Windows-Startmenue. I found several hints for the dos-attributes in smb.conf, buit notthing seems to work. Any hints? Here is my smb.conf: [global] workgroup = example server string = b-login passdb backend
2005 Apr 20
6
the desktop.ini incident again
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi folks, I also have the problem that the notepad pops up (with desktop.ini opened), everytime I logon. I know the workaround that was mentioned a thousand times before: hide files = /desktop.ini/ntuser.ini/NTUSER.*/ I put the file to the [profile]-share, to the [global]-share, but it won't work! An extract of my smb.conf: [profiles]
2012 Feb 26
10
Software Profili2 on Ubuntu by Wine
Hi Greetings to all Is my first post in this forum sorry for my english Many compliment to all developers for great work in Wine Profili2 is the most famous Windows software for designe airfoil profile for RC airplane models. Some times ago I have installed it in ubuntu 10.10 by Wine(1.3.5) with success This software use an mdb file First I have installed Profili download in this web site
2004 Sep 15
3
Desktop.ini showing up
First of all I am new to Samba. I successfully deployed Samba 3.0.6 as a PDC w/roaming profiles. All the workstations have a desktop.ini file that shows up on the desktop after joining the domain. The contents of the ini differ from workstation to workstation. >From my understanding this file is a supposed to be a hidden file, but it is not. Any ideas? I apologize if I have not included
2002 Oct 03
2
Cannot connect WinXP
Hi All Can't connect WinXP (Remark: Group=SEC WinXP=M40G Samba Server=server.ltsp ipchains stop) # mount -t smbfs //M40G/Shared /mnt/WinXP/ params.c:Parameter() - Ignoring badly formed line in configuration file: 127.0.0.1 localhost localhost.localdomain params.c:Parameter() - Ignoring badly formed line in configuration file: 192.168.0.1 M40G params.c:Parameter() - Unexpected
2015 Feb 03
2
Problem with odbc connector with cdr
Hello, I'm stuck with getting cdr records stored in MySql database. I have a working realtime environment and have verified that the db connection works fine when used via res_config_mysql.conf. I'd appreciate Your help on how to get the odbc connector working as I think there's something wrong with its configuration. The problem presented itself as an error when making a call that
2008 Jan 31
2
[patch] fix crash in ini plugin
The ini plugin segfaults on startup. The following patch fixes it. Not sure why this hasn't been caught before - i guess not many people use the ini plugin. Please apply. randolph diff --git a/plugins/ini.c b/plugins/ini.c index d58f671..2d3c2dd 100644 --- a/plugins/ini.c +++ b/plugins/ini.c @@ -377,7 +377,7 @@ iniParseLine (char *line, char **optionName, char **optionValue) if
2014 Sep 16
1
Oplock break failed on sysvol share
Hi team! Samba 4.1.11 on Debian Wheezy here, configured as a DC. I recently started noticing long startup times for the Windows clients, whenever multiple clients are started at the same time. For example, at 8:00 AM (when around 30 PCs get started simoultaneously, I get this in smbd.log: ### [2014/09/16 08:01:21.320944, 0] ../source3/smbd/oplock.c:335(oplock_timeout_handler) Oplock break
2009 Oct 03
1
if else statement error
Hello, I am doing a if else statement in R. But it always comes out error such as 'unexpected symbol' There are two variables. ini and b. when ini=1, a=3; when ini>1 and b>2, a=3; all other situations, a=6. I don't know where it is wrong. Here is my code ini=3 b=4 if (ini==1) { a=3 } else if (ini>1 and b>2 ) { a=3 } else {a=6} Thanks a
2004 Sep 27
6
PDC for XP: empty desktop and desktop.ini showing up
Hello there, I'm trying to set up Samba as a PDC for Windows XP Professional (SP2). It seems to work fine. Machine accounts are created automatically, passwords between Unix and Samba users get synced, I can logon, profile directories are created - but there's a problem. I know that this is well-known, but it drives me crazy and I don't know any solution. First of all, the
2017 Jan 31
2
time zone
> Date: Tuesday, January 31, 2017 18:16:36 -0500 > From: TE Dukes <tdukes at palmettoshopper.com> > >> From: CentOS [mailto:centos-bounces at centos.org] On Behalf Of >> Richard Sent: Tuesday, January 31, 2017 5:19 PM >> >> >> > Date: Tuesday, January 31, 2017 16:59:32 -0500 >> > From: TE Dukes <tdukes at palmettoshopper.com>
2017 Feb 01
2
time zone
> Date: Tuesday, January 31, 2017 19:35:46 -0500 > From: TE Dukes <tdukes at palmettoshopper.com> > >> From: CentOS [mailto:centos-bounces at centos.org] On Behalf Of >> Richard Sent: Tuesday, January 31, 2017 6:46 PM >> >> > Date: Tuesday, January 31, 2017 18:16:36 -0500 >> > From: TE Dukes <tdukes at palmettoshopper.com> >> >