New Leopard server installation; no user calendars via Web?

We have just done a clean install and migration of all users from a Mac OS X 10.4 (Tiger) server to a 10.5 (Leopard) one and are trying to figure out how to enable the user calendars.
Have done the step of turning on iCal server, which seemed to be necessary anyway to get the blogs working, and configuring it for SSL with a self-signed cert. Have also enabled calendaring in Workgroup Manager for the users we wish to provide with calendaring. Have also been able to figure out how to subscribe (read-only) to a user or a group calendar, and how to add an account via iCal to get read/write access to a user calendar via the "Preferences... Accounts" method described in other threads.
Why is it, though, that no user calendars or even links to them show up via the "Users" pages on the collaboration-services-driven web pages? Is the calendaring for users in Leopard server set up only to allow access via CalDAV clients, and not display these user calendars in or near the user's web pages, like the one that hosts their blogs? It seems odd that one can view and edit a group calendar via the web, but a user cannot see or edit his or her own calendar in the same way via the web. Did we miss something or do something wrong?

First of all: Don't store passwords. Store a hash of it. E.g. the specialized
Rfc2898DeriveBytes class or a
SHA hash. Make yourself familiar with the concept of salts.
Also important: Don't concat strings to build SQL commands. This is prone to
SQL injection. Use parameterized statments instead of it. E.g.
public DataSet RetrieveUserProfile(string email, string passwordHash)
DataSet result = null;
const string SQL_COMMAND_TEXT = "SELECT * FROM Detailed WHERE Email = @Email AND PasswordHash = @PasswordHash;";
using (SqlConnection connection = Class1.GetConnection())
connection.Open();
using (SqlCommand command = new SqlCommand(SQL_COMMAND_TEXT, connection))
command.Parameters.Add("@Email", SqlDbType.NVarChar);
command.Parameters.Add("@PasswordHash", SqlDbType.NVarChar);
command.Parameters["@Email"].Value = email;
command.Parameters["@PasswordHash"].Value = passwordHash;
using (SqlDataAdapter dataAdapter = new SqlDataAdapter(command))
result = new DataSet();
dataAdapter.Fill(result);
return result;
We are normally using CamelCase as it's C# not Java, thus method names start with upper-case letters. Also Get is a reserved verb like set or do. It's only used for explicit getter methods. Parameter names are started with a lower-case letter.
Use the
using statement for classes which implement IDisposable. So your objects are properly disposed, even when an exception occurs in the inner scope.
And least, but not last: use a layered architecture. The actual WebMethod is only a
facade. So that you can use unit tests. See
Unit Test Basics.
p.s. there must be an
UNIQUE CONSTRAINT on the Email column in your table.

Similar Messages

  • New OSX Server Installation - User Home Folders Dissapear after on logout

    hi all,
    Can anyone help me identify this problem that i`m getting with a new fresh install and setup of OSX-server 10.4.10? Basically i have setup the server but when users are logging out of their binded 10.4.10 macs their home folders are dissapearing off of the server. If anyone needs anymore detailed information on the configuration please let me know
    thanks,

    Hi
    You will see the 99 folder on the Server. It will be in the folder designated for Home Folder creation and automounting. It gets created if there are no home folders.
    Is this the only server on the network?
    What happens if you create a new user and home folder, one whose log in name and password does not exist anywhere else and is also not the clients local admin account. On the client click other and log in with that account. On logout does this users home folder disappear off the server?
    Tony

  • TIP: Use VNC for Headless Leopard Server Installs

    Wish I had figured this one out before...
    Quick little tidbit for all those installing Leopard Server on a machine that doesn't have a display. You can use server admin tools and 'Server Assistant' running on a different box. Or, once the installer has started on the Leo Server box, you can VNC into it directly! Then its just like installing it with a display connected.
    This was useful for me to be able to run disk utility on an old XServe that didn't have a display card.
    Once you've figured out what IP the box has (take a look in the Server Assistant for this info) VNC into this using your favourite client (or Leopard Client's Screen Sharing app):
    The username is blank (i.e. no username), and the password is the first eight characters of the machine's serial number.
    Very useful little addition there by Apple.

    Craig Bowman wrote:
    So does anyone here run their Mac Mini headless for both iTunes serving (to include iTunes TV and movies) and i-device syncing?
    i do
    Is it practical?
    pretty much.
    Would I use Snow Leopard Screen Sharing to control it?
    i use a combination of screen sharing and iTeleport on my iPad.
    what i found to be necessary is to enable +automatic login+ for the user account on which iTunes is running via system preferences > security for when you do software updates and the mini needs rebooting.
    JGG

  • Leopard server and windows users

    We run a mac + pc environment with some users on macs, many on pcs, and our office server is a windows exchange for email etc. As a multi-location consulting firm, we need to set up a good collaboration system that is hosted internally (to preserve confidentiality) and allows us to create a web-based knowledge creation, sharing and collaboration environment. We have looked at some of the new web services offers, but all are hosted by the providers.
    We are considering buying a mac leopard server and have the following questions:
    1/ will windows users be able to use the wiki, chat, calendaring and podcast facilities from their laptops without any problems, and will they have the same easy user interface?
    2/ does the wiki server enable group collaboration like:
    2a/ sending out email notifications on new posts (without changing our exchange server)
    2b/ allowing groups to create project and team specific areas
    3/ The problem we face is one of adoption. If we can make this as easy as facebook, then lots of people will migrate within 48 hours. But is this possible with the leopard server?
    4/ finally, we are based in Singapore and our offices are all in Asia? Do we need a lot of experienced Apple-savvy technical people to create any of these applications, or is leopard server as easy to use as a mac is for a home user?
    Any thoughts or inputs would help. FYI, alternatives we are evaluating are jive software's clearspace or basecamp or zoho's web based suites.
    thanks / Suresh
    Message was edited by: suresh Venugopalan Shankar
    Message was edited by: suresh Venugopalan Shankar

    suresh Venugopalan Shankar wrote:
    1/ will windows users be able to use the wiki, chat, calendaring and podcast facilities from their laptops without any problems, and will they have the same easy user interface?
    Yes, the web based interfaces work just fine for both OS's, the chat server is using jabber (clients on about every OS) and the calendaring is using the standards based iCalendar format.
    2/ does the wiki server enable group collaboration like:
    2a/ sending out email notifications on new posts (without changing our exchange server)
    2b/ allowing groups to create project and team specific areas
    I don't know of functionality to send out e-mail notifications on new posts, but you can subscribe to RSS feeds of things posted in the blog section of the wiki server. I'd need a little bit more information to understand what you're looking for as far as creating project and team specific areas.
    3/ The problem we face is one of adoption. If we can make this as easy as facebook, then lots of people will migrate within 48 hours. But is this possible with the leopard server?
    On the front end most of this stuff is very easy to use, and is in my opinion even simpler than facebook and such.
    4/ finally, we are based in Singapore and our offices are all in Asia? Do we need a lot of experienced Apple-savvy technical people to create any of these applications, or is leopard server as easy to use as a mac is for a home user?
    It's pretty easy to set the server up as long as you read the documentation. There's also a lot of resources online if you have problems (like this forum). It would probably be helpful to have someone familiar with LDAP systems and at least some command line usage on the server, but like I said, the documentation is pretty good. You can go read it to get an idea at http://www.apple.com/server/macosx/resources/
    Hope that helps out some.

  • Setup iCal server accessible to the LAN via web browser

    Hello guys,
    I am newbie in mac server and I believe there are lots of guys over there that could help me.
    Here's my environment:
    Software/Server: Mac OS X Server 10.6
    Hardware: Mac Mini Server Snow Leopard
    LAN/internet Setup:
    Broadband -> router -> mac mini server
    -> mac users
    -> pc users
    Now, here's my scenario:
    The mac mini is already running (OS is already installed) and act a normal computer usage like internet browsing, doing some documents and so on and so forth. But now, we decided to make the mac mini server as a server(calendar (iCal) server, address book server, web-server). I'm not so much familiar with DNS, DHCP or networking things to make the client computers connected to server.
    My main concern is that I want the calendar to be accessible via web browser in our local network (something like this -> http://calendar.company/ or can access via IP address of the server like.. http://192.168.1.20/), in this case Mac and PC users connected to our LAN(router) can able to access and share their our calendar.
    Now questions are:
    1. How can I setup the mac mini server and calendar server to be accessible via web browser to the mac and pc users?
    2. Do I still need to setup DNS and public IP for my server?
    3. Where can I get a step by step tutorials that I could follow?
    All recommendations and comments are all appreciated
    Thanks in advance,
    Emmman

    I can't find any clear and step by step instructions with my concern. I am not expecting this to be easy(can setup even non-IT) as apple advertise but as I am reading the documentations I notice these things to be properly setup:
    1. Functional DNS system. - This is a high level networking Stuff(Non-IT can't even understand it).
    2. IP addresses, reverse IP's etc - Non-IT can't even understand it
    3. Router Configurations - Non-IT can't even understand it.
    and so on and so forth.
    We, the newbie on mac server just need a clear and step by step scenario on how to setup the whole thing.
    Thank you.

  • 4402 guest users authetication via Web (username and password)

    Hello Everyone,
    We have an issue with Wireless controller model 4402 loaded with 4.0.179.11. This box has stopped authenticating (Layer3 security Web Policy based local usernames and password) last night.
    Steps taken to resolve the issue:-
    1) Created local usernames and password via Web and tried using wireless through Guest ssid, when user enters this information web page loops back to authentication.
    2) Tried authenticating via another Laptop, had no luck.
    3) Changed WLAN SSID Guest from Layer3 security Web Policy to Layer2 Security, created Mac filter table for guest on the Controller. Guest was able to connect to the internet.
    We have not made any configuration change. As this issue affected all Users, we restarting the controller after which issue was resolved. As per my colleagues this has happened couple of times and every time restart fixes this issue.
    Please shed some light on this.
    Regards,
    Mujahid

    Hi Mujahid,
    Just to add a note to the great advice from Richard (5 points for your good work on many posts Richard!)
    Have a look at these bugs that I'm pretty sure we were hitting with this WLC Version as well;
    CSCsi91600 Bug Details
    Internet Explorer redirects to login page with webauth due to cache
    Symptom:
    Client using IE, and web authentication has passed authentication, Policy Manager is in a RUN state, and when the user clicks on the "home" button, or types in the address of their normal homepage, they are continually redirected to the web-auth page
    Conditions:
    Client using IE, and web authentication has passed authentication, Policy Manager is in a RUN state, and when the user clicks on the "home" button, or types in the address of their normal homepage, they are continually redirected to the web-auth page
    Workaround:
    Enable IE client to check for newer versions of stored pages on "every visit to the page" option instead of "automatically" (default).
    Tools -> Internet Options... -> Temporary Internet files -> Settings... -> Check for newer versions of stored pages: Every visit to the page.
    1st Found-In
    4.0(179.11)
    Fixed-In
    4.1(176.6)
    4.1(177.0)
    4.1(181.0)
    4.2(31.0)
    4.2(61.0)
    Related Bugs
    WLC Web-auth homepage leads back to reauth page if redirect URL is used
    In a web-auth deployment with or without guest anchoring. If the redirect url is populated, the users homepage will no longer be able to be reached. Whenever the user navigates back to his homepage it will show the reauth page and the user will no longer be able to reach their homepage. Homepage leads back to reauth page if redirect URL populated
    CSCse90894 Bug Details
    Internet Explorer redirects to login page with webauth due to cache
    Even after the commit of CSCse03666 - which added the following line to the
    default webauth HTML -
    IE 6 continues to redirect its home page back to the webauth login page.
    This is due to a known bug in IE.
    1st Found-In
    4.0(155.5)
    Fixed-In
    3.2(193.4)
    3.2(193.5)
    4.0(206.0)
    4.1(171.0)
    Hope this helps!
    Rob

  • How can I import my Google calendar to iCloud calendar via web or ios?

    I've decided I want to move from contacts/calendar in gmail to icloud. I was going to do the same with mail, but it seems iCloud doesn't have the level of functionality that gmail does.
    My problem is that all instructions for importing my gmail calendar into icloud require some sort of desktop (I use PC) mail/calendar program. I don't use one. I manage my mail & calendars purely on my iphone or on the website(s). How can I import my .ics file into iCloud calendar via either the iCloud web interface or via my iPhone?

    The only possible way I could imagine it might work ( can't guarantee it ) is as followed.
    #1 Your Google Calendar is synced with your iphoen and you go into settings to turn it off.
    #2 It will ask you: "What would you like to do with excisting local calendars on your iphone", you click keep them on iphone.
    #3 Now you sync your empty icloud calendar with your iphone and hopefully the local calendar would sync on your icloud calendar?
    Might work...not sure, play around with the settings in the iphone calendar app etc...

  • User Management via Web Services

    Hi,
    We are investigating building a user management application that will control user creation and management across a range of applications, including SAP ECC6 and BW.  The idea is to use web services to interact with the systems.  I have seen that a range of BAPIs exist for managing users (e.g. BAPI_USER_CREATE, BAPI_USER_CHANGE) - does anyone have any experience in using these BAPIs via web services that they would be willing to share?
    Thanks

    HI Colin,
    We did that successfully. It was webservice/infopath based Interactive . net form which would do user management and also Workflow funtionality. In summary from my experience
    - Initial cost would be cheaper, however ongoing maintainance on whole infrastructure should be considered.
    - SAP BAPI/FM/webservice development was very easy
    - Integration with Infopath was challange
    - Fronted development was pain as you would need other people to do that for you
    - Once operational, was very easy to managed
    - Future enhancement was limitless
    - Limitation of integration to other technology
    - Should only be justifiable in absence of IDM solution
    - Too much custom development
    - Change management in SAP was easy (Transport, testing, QA etc) however Infopath and Frontend change Management was not easy
    Let me know what other information you need. Finding BAPI's and designing in SAP is the easy part, you should think more about how you are going to deploy Webservice to end users.
    However if your IT department has more bucks to spend, think about more longer term solution and towards IDM or product such as GRC etc.

  • How to test a new SQL Server installation

    Hi,
    We are in the process of consolidating several database on a single SQL Server instance.
    We first installed a test server and we want to use this installation as the base for our production server.
    I checked:
    - the server collation is the one required SQL_Latin1_General_CP1_CI_AI
    - services are running: SQL Server Database engine, Analysis services, Report Services, Integration Services  are running
    I identified the following problems:
    - SQL Server Agent is not running and I can not start it from the services panes of the computer management
    - When I want to connect to SQL Server Integeration Services from SQL Server Management Studio I get a pop up error message:
    failed to retrieve data for this request (Microsoft.SqlServer.Management.Sdk.Sfc)
    acces is denied
    What else should I check?
    We are a small team and I am new to database administration, every advice is appreciated.

    And make sure to configure all the basic configuration as per the requirment... few of them is below... there might be many but its all upto you and your business requirments...
    Memory
    Backup compression
    Error Log
    Securit, logins, aduiting ( Minimum failed and successful logins )
    Ports ( Static or dynamic -- Named Instance )
    Default location of the data,log(ldf),backup -- If you have missed this at the time of installation.
    authentication mode
    disable or change the SA password ( Enforce password policy )
    Service packs and hot fixes, CU's
    Configure all the required basic maintenance jobs
    SQL Service accounts or MSA in case of standalone hosts Windows 7, Windows Server 2008 R2 or later ..
    http://technet.microsoft.com/en-us/library/dd560633%28v=ws.10%29.aspx
    Monitoring if required
    Move all the required configuration details from your existing servers using --- sp_configure
    Move all the logins and jobs..
    https://support.microsoft.com/kb/918992?wa=wsignin1.0
    Change the databases compatibility level after restoring in new server
    rebuild the index and update the stats once after restoring it in new server.
    Most importantaly review the setup log once after the complete installation.. and sql error log, eventlog..
    DAC --- http://technet.microsoft.com/en-us/library/ms178068%28v=sql.105%29.aspx
    In case if you use policy based management please check that as well..
    http://msdn.microsoft.com/en-us/library/bb510667.aspx
    Raju Rasagounder Sr MSSQL DBA

  • Update User Password via Web Services

    Hello. I am attempting to update the password for a user via the Rights Management web services, https://{mydomain}/soap/services/RightsManagementService?wsdl&lc_version=9.0.1, using .NET 4.0 (C#).
    Below is the function I have written. When I execute the code it always returns false. I have searched the documentation and forumns but have not found anything. Can someone provide any ideas on how I can successfully update a users password in LiveCycle via the exposed web services?
    public bool UpdateUserPassword(string userName, string password)
                bool result = false;
                WebServices.RightsManagement.UserImpl user = new WebServices.RightsManagement.UserImpl();
                user.userid = userName;
                user.canonicalName = userName;
                user.domainName = DefaultPolicySets.DefaultDomain;
                user.principalType = "USER";
                user.local = true;
                user.locked = false;
                user.disabled = false;
                user.system = false;
                Console.WriteLine(this.rmSvc.resetExternalUserPassword(user, password));
                return result;

    The answer to this question was to use another function exposed by the Directory Management Web services, {domain}/soap/services/DirectoryManagerService?WSDL&lc_version=9.0.1.
    The function in question is called updateLocalUser().
    You can find more information here, http://help.adobe.com/en_US/livecycle/9.0/programLC/javadoc/com/adobe/idp/um/api/Directory Manager.html#updateLocalUser%28com.adobe.idp.um.api.infomodel.User,%20java.lang.String%29.

  • Lost window, using published application on server 2012, when access it via web remote.

    Hi,
    We use an edi software installed on a Server 2012.
    When we use this software accessing the server by Remote Desktop, everything works normal.
    When we use the same software accessing the server by web access, (...softname/RDWeb/Feed/webfeed.aspx) where was published this soft application, we lost some windows after different actions.
    For example if I do a modification for a value in one specific window, after I click save, that window disappear but can appear again only if I click again anywhere on my desktop.
    In other words that window lost the focus and probably is still open under another window. Clicking again anywhere, will reactivate it and that window appear again.
    Can you please help me to find a solution to this problem?
    Thank You!

    Hi,
    For example if I do a modification for a value in one specific window, after I click save, that window disappear but can appear again only if I click again anywhere on my desktop.
    Would you please tell us which window and what has been modified specifically?
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Viewing pvt calendars via web browser securely and remotely - not sharing

    Everything in the iCal section is geared towards "sharing" which is...well...just weird. I need to be able to view my calendar info when I'm not at my imac desktop, and I need to do this from any computer web browser, over the net, securely. I don't want to publish my calendar info for anyone else but me to see. This seems like a fairly obvious application, not everyone carries a crackberry, but I see no way of doing this. I'm sure I'm just missing some obscure article somewhere...Thanks in advance!

    My last comment on this is.
    I'm using the gmail calendar, and have a program called "Spanning Sync"
    to synchronize them.
    If .mac could provide me with a working Calendar functionality, I would
    have bought it. But now I'm content with using gmail instead.
    Of course .mac has other functionality, but I only need email and calendar,
    sync:ed and accessible from work, home-mac and mobile.
    I think eventually, Apple will realize that their Calendar solution can be
    improved and do this.
    Tallyho/Claes

  • MySQL installation in Snow Leopard Server appears to be broken?

    I tried
    sudo gem install mysql -- --with-mysql-config=/usr/bin/mysql_config
    and it failed.
    The mkmf.log said (in part):
    "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin10.0 -I. -DXOPENSOURCE -DDARWIN_CSOURCE -I/usr/include -fno-omit-frame-pointer -pipe -DP1003_1BVISIBLE -DSIGNALWITH_VIOCLOSE -DSIGNALSDONT_BREAKREAD -DIGNORESIGHUPSIGQUIT -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE -fno-common -pipe -fno-common conftest.c -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch x86_64 -pipe -L/usr/lib -lmysqlclient -lz -lm -lruby -pipe -L/usr/lib -lmysqlclient -lz -lm -lpthread -ldl "
    ld: library not found for -lmysqlclient
    collect2: ld returned 1 exit status
    checked program was:
    /* begin */
    1: /top/
    2: int main() { return 0; }
    3: int t() { mysqlsslset(); return 0; }
    /* end */
    So, I checked mysql_config:
    Usage: /usr/bin/mysql_config [OPTIONS]
    Options:
    --cflags [-I/usr/include -fno-omit-frame-pointer -pipe -DP1003_1BVISIBLE -DSIGNALWITH_VIOCLOSE -DSIGNALSDONT_BREAKREAD -DIGNORESIGHUPSIGQUIT]
    --include [-I/usr/include]
    --libs [-pipe -L/usr/lib -lmysqlclient -lz -lm]
    --libs_r [-pipe -L/usr/lib -lmysqlclient_r -lz -lm]
    --socket [/var/mysql/mysql.sock]
    --port [0]
    --version [5.0.91]
    --libmysqld-libs [-pipe -L/usr/lib -lmysqld -lz -lm]
    Note that mysql_config appears to have been compiled with an assumption that /usr/lib
    would contain a -lmysqlclient shared library.
    Which assumption fails on my Snow Leopard Server installation:
    minisvr:~ root# ls -la /usr/lib/mysql
    ls: /usr/lib/mysql: No such file or directory
    Now, I'm reasonably certain that I have done nothing to cause this library to be missing;
    as I am also reasonably certain that the mysql_config found in /usr/bin is one shipped by
    Apple (as opposed to one I could have picked up somewhere else).
    Can anyone else out there verify: does Apple ship /usr/bin/mysql_config?
    If so, does it supply linker options like -L/usr/lib -lmysqlclient?
    If that also is true, does your /usr/lib actually contain an Apple-supplied libmysqlclient.*?
    Now, assuming that my installation is reasonably close to what Apple actually shipped,
    what should I do about it? Would I be better off to go find a source distribution,
    and build and install mysql, foregoing the Apple-supplied integration with
    management tools (e.g., using Server Manager to start/stop and monitor logfiles)?
    What do other users of mysql on Mac OS X Server do?
    Thanks,
    Tommy K

    I tried
    sudo gem install mysql -- --with-mysql-config=/usr/bin/mysql_config
    and it failed.
    The mkmf.log said (in part):
    "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin10.0 -I. -DXOPENSOURCE -DDARWIN_CSOURCE -I/usr/include -fno-omit-frame-pointer -pipe -DP1003_1BVISIBLE -DSIGNALWITH_VIOCLOSE -DSIGNALSDONT_BREAKREAD -DIGNORESIGHUPSIGQUIT -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE -fno-common -pipe -fno-common conftest.c -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch x86_64 -pipe -L/usr/lib -lmysqlclient -lz -lm -lruby -pipe -L/usr/lib -lmysqlclient -lz -lm -lpthread -ldl "
    ld: library not found for -lmysqlclient
    collect2: ld returned 1 exit status
    checked program was:
    /* begin */
    1: /top/
    2: int main() { return 0; }
    3: int t() { mysqlsslset(); return 0; }
    /* end */
    So, I checked mysql_config:
    Usage: /usr/bin/mysql_config [OPTIONS]
    Options:
    --cflags [-I/usr/include -fno-omit-frame-pointer -pipe -DP1003_1BVISIBLE -DSIGNALWITH_VIOCLOSE -DSIGNALSDONT_BREAKREAD -DIGNORESIGHUPSIGQUIT]
    --include [-I/usr/include]
    --libs [-pipe -L/usr/lib -lmysqlclient -lz -lm]
    --libs_r [-pipe -L/usr/lib -lmysqlclient_r -lz -lm]
    --socket [/var/mysql/mysql.sock]
    --port [0]
    --version [5.0.91]
    --libmysqld-libs [-pipe -L/usr/lib -lmysqld -lz -lm]
    Note that mysql_config appears to have been compiled with an assumption that /usr/lib
    would contain a -lmysqlclient shared library.
    Which assumption fails on my Snow Leopard Server installation:
    minisvr:~ root# ls -la /usr/lib/mysql
    ls: /usr/lib/mysql: No such file or directory
    Now, I'm reasonably certain that I have done nothing to cause this library to be missing;
    as I am also reasonably certain that the mysql_config found in /usr/bin is one shipped by
    Apple (as opposed to one I could have picked up somewhere else).
    Can anyone else out there verify: does Apple ship /usr/bin/mysql_config?
    If so, does it supply linker options like -L/usr/lib -lmysqlclient?
    If that also is true, does your /usr/lib actually contain an Apple-supplied libmysqlclient.*?
    Now, assuming that my installation is reasonably close to what Apple actually shipped,
    what should I do about it? Would I be better off to go find a source distribution,
    and build and install mysql, foregoing the Apple-supplied integration with
    management tools (e.g., using Server Manager to start/stop and monitor logfiles)?
    What do other users of mysql on Mac OS X Server do?
    Thanks,
    Tommy K

  • Best Practice - Leopard Server and a Windows Server/Application

    Our family owns an accounting practice in Northern California. We all use MacBook Pros running Leopard as our client machines.
    Our customers all use QuickBooks for Windows for their accounting software. We currently host and store our customer's QuickBooks company files on a Windows 2003 SBS Server. Our staff connects to the Windows Server to launch QuickBooks and perform our accounting services. We do not use any of the features of the Windows Server besides the ability to log in with multiple user sessions to launch QuickBooks from both internal and remote office locations.
    Since we all use MacBook Pros, we'd like to use Leopard Server and implement mail, calendaring, wikis, etc. My dilemma is figuring out if this is technically possible because we need to continue to log into a Windows PC, Server, etc with multiple staff's sessions to perform our accounting services with QuickBooks for Windows.
    Can someone suggest a way we can do this? I'm not very technical since I am an accountant! We're hoping this can be done somehow!
    Thanks for any suggestion and assistance!
    John

    We also have Quickbooks as our legacy Windows app.
    Quickbooks files for several companies are stored on our Mac OS X Server, which is accessed by a Windows 2003 Server.
    I considered using Parallels or VMware, but the administrative overhead seam excessive. (One installation of Windows is too many). Windows Terminal Services seamed the best fit. Additional client access licenses were required from Microsoft as Windows Server only comes with two administrative RDP licenses.
    Our staff and staff from accounting and tax consulting firms connect to Quickbooks on the Windows server via RDP. Internally, we have a couple of diskless thin clients, and iMacs with RDP software installed. Externally, both Windows and Mac OS X clients connect to our 10.5 server IPSec VPN, and then to the Windows server, again via RDP.
    Performance is acceptable, as here in Australia we now have ADSL service with 1-2Mbps upstream. On my 23" display (Mac OS X 10.5), situated 1200miles away, a RDP connection at 1280x1024 works seamlessly.
    On the Mac Server side, we have recently upgraded to Leopard Server, and thus haven't implmented all the fabulous new features such as calendar sharing and wikis, but we are using network spotlight, and of course the Mail server. Additionally, we have a Fujitsu SnapScan which scans documents that are then automatically OCR'd, and made available by network spotlight. All very cool.
    Further work to be undertaken;
    - Have the Windows server logins authenticate with our Mac OS X Open Directory. Currently account credentials are duplicated.
    - Implement public key cryptography for the VPN, so that we can revoke individual client VPN installations
    - Implement two factor authentication (probably CryptoCard)
    - Batten down the permissions on the Windows server. The default Quickbooks installation required an unacceptable level of user rights.

  • Problems deleting pdf's generated from files off of Snow Leopard Server

    The small design studio I work at has just upgraded from G5's running 10.4 Tiger, working off Tiger Server, to new iMacs running 10.6 Snow Leopard and a Mac Mini Server, on Snow Leopard Server.
    Normal working practice is to open files off the server across the network, making changes and saving them back down. Most of the time, a pdf will be generated from the file to send to the client when copy changes have been made, then saving down the pdf file to the iMac to email to the client.
    The issue is now that when the pdf has been emailed, attempting to delete it brings up a warning window that 'You do not have sufficient accesses privileges to delete the file' and this then has to be done by selecting secure empty trash.
    We are all registered users on the Mac Mini Server and this was not an issue we had when using Tiger.
    Could anyone suggest any setting changes that would be required to get around this issue?
    As a note, all the work files were originally on a older G4 being used as a sever and were copied to the new Mac Mini Server, that was set up as a new machine and was not done via transfer files.
    Thanks
    Ben

    Hello Ben,
    I'm very sorry, but this is not the correct forum in which to post your question! Universal Access is the facility for ensuring that all Mac users can benefit fully from their machines, regardless of disability.
    Try Snow Leopard Server—Installation, Setup and Migration instead!
    Cheers,
    Archie

Maybe you are looking for

  • Icons in data dictionary table

    how do i get icons in a data dictionary table. i make this:   DATA: BEGIN OF ls_structure,         list TYPE TABLE OF dictionarytable,         END OF ls_structure.   DATA: wa_list LIKE LINE OF ls_structure-list.   LOOP AT ls_structure-list INTO wa_li

  • Versioning Error in weblogic 7.0

    What does this error mean in weblogic7.0 : weblogic.common.internal.VersioningError: No WebLogic packages defined in CLASSPATH ? I get this while trying to do a JNDI lookup from my application on Iplanet 6.0 to the ejb which is on weblogic server 7.0

  • Back up /sync fail

    everytime i back up or sync itunes freezes....and when it does work i get a pop up message saying ''itunes could not back up because the back up could not be saved on this computer''......help?!?!?

  • Transport of matplant

    hi,   I have added new attributes to the mat plant and tried to transport it but i am getting the following error: "Error/warning in dict. activator, detailed log  --> Detail" " Structure change at field level (convert table /BI0/PMAT_PLANT)" "Table

  • Help required - For ALV program

    Hi Guys, I have created an ALV  (using containers) with , say , 10 fields. As the container size is not large enough to accomodate all the 10 fields, it is getting displayed as field1, field2,field8, field9 and field10. When I click on the horizontal