Help setting up USB 6009 for experiment

Hi,
I am a new LabVIEW user. I have purchased a USB 6009 and I need it to acquire data from a pair of electrodes and a differential pressure sensor. Below is a schematic of how I think everything should be hooked up. I just have some questions regarding the setup before I run my experiment.
I will be using the electrodes to measure voltage drop. However, I am wondering whether I need a ground reference connected to the bottom GND pin. This is because I will be operating the electrodes in the +/- 20 V range and according to the user guide, each pin has a maximum voltage of +/- 10 V with respect to GND. I assume this means that if the +ve electrode measures +15 V wrt to GND and the -ve electrode measures -5 V wrt to GND, the DAQ will provide a reading of 15 V instead of 20 V. So if I need a ground reference, what do I connect to the bottom GND pin?
During this experiment, I will also be collecting data from an Omega PX26-030DV differential pressure sensor, which has a maximum voltage output of 100 mV. It will be powered by a Circuit Specialists CSI3005T power supply at 10 VDC. I believe I have made the right connections, but do I also need to connect the terminal 4 GND on the DAQ to the power supply GND?

You definitely need grounds!  The internal circuitry of the DAQ device is referenced to the DAQ Ground. Since the device is USB connected, the DAQ ground is also the computer ground.  All grounds should be connected together, ideally on only one place to avoid ground loops.
1. On the 10 VDC power supply shown in your diagram what is the relationship of + and - to ground? The ideal situation for a strain gauge pressure transducer is +5 V and - 5 V because that reduces the nominal common mode voltage to zero. Regardless, there needs to be a reference connection between the power supply and AI GND.
2. What is the circuit (or equivalent circuit) to which the electrodes are connected? That also needs a reference connection to AI GND.
3. What is the source impedance of the electrode circuit? The USB-6009 has a relatively low input impedance (144000 ohms) and it is terminated to a non-zero voltage. I do not have the manual readily available but I think I recall the equivalent voltage is about 1.4 V.  Both of these can cause significant problems for some measurements with "floating" electrodes.
4. The +/-10 V limit with respect to ground is absolute. You cannot have +15 V to ground on one electrode and - 5 V to ground on the other electrode and expect it to work. The only way a 20 V differential rangs is possible is with one signal at +10 V and the other at -10 V. A 15 V signal will not be measured accurately and could result in damage to the DAQ device.
Give us all the information about your system so we can provide appropriate answers.  You may need some external signal conditioning for parts of your system.
Lynn

Similar Messages

  • Help setting up port forwarding for Ekiga

    Hi
    I am trying to set up Ekiga on my Arch X86_64 box but I can't get port forwarding to work on the Thomson TG585v7 wireless router, which I am sharing with a neighbor.  I have tried some how-to's I found via Google and set up Application/Game Sharing for the ports Ekiga uses.  I also set up static IP connection as it seems to be needed by the router for port forwarding to work but Ekiga still reports that it cannot set up my network connection and asks me to set up port forwading manually, which I have already done.
    I would very much appreciate any help to get Ekiga going for me.
    My thanks in advance.

    graysky wrote:No idea for you specific hardware but should be pretty trivial.  http://wiki.ekiga.org/index.php/Enable_ … g_manually
    Thanks, but the problem is that setting up the router doesn't seem to work. I checked and repeated the set up a few times but no result. I feel I am missing a little detail somewhere but can't put my finger on it :-(

  • I need help setting Win7 Advanced attributes for the USB drive connected to my EA4500 router

    I can drill down to the Permission Entry for [foldername] window for a folder on the USB drive. There I learn that user group Everyone does not have the Full Control permission box checked. When I check the box and then click Apply, I get an Error Applying Security window. If I click Continue there, I get a Windows Security window that says "Unable to save permission changes on [foldername]. Access is denied." with no way out but an OK button.
    I have Administrative authority in Win7, but maybe I need to know some Unix voodoo to come to terms with my router-mounted drive. I put the drive on the router to make always available, and I'd like to get it to work. For example, I can't turn the archive bit off for any file or folder on that drive when it's mounted on the router. Not with ATTRIB -A and not with XCOPY /M.
    Just to stuff it in my face, XCOPY /M returns a two-line error message for every sub-folder that exists in the target folder:
    Access denied
    Unable to create directory - foldername
    Help! And thanks in advance.
    :+)
    Solved!
    Go to Solution.

    Bill Dennes,
    (Solutions/Work-Arounds below this paragraph, but sets up some useful information.)
    As for the Security tab, I'm unsure of exactly why it doesn't appear on the tab itself for folders; however, clicking "Advanced -> Change Permissions -> Edit" will display the permissions; although, this doesn't appear to be a part of the problem in a sense. Additionally, “Everyone” always only has read & execute and is also not a part of the issue. To go further with this, the only users that have delete permission are “0” and “root” and since we can delete, we “should” be logged in as one of them and as such have “Full Control.”
    As for the drive type, I'm unsure of why it "changes" it from FAT32 to NTFS (probably something to do with how it handles permissions); however, this is also not a part of the issue.
    I have a flash drive formatted to FAT32, albeit only a 4GB and on an EA6500 with secure sharing enabled, that it does these both to and "xcopy testfolder Y:\ /e /m" works on it when all files and folders have the A attribute; however, disabling secure sharing makes it fail.
    I’ve looked further into this and there are three ways I know of, as of right now, to make copying files with the bat file work for you:
    The first way is to enable secure sharing and map the drives using it, once that is done you won’t need to enter the password again and your script will work as you currently have it coded. Given you have no need for the secure sharing, but it’s a simple solution. This is also the only way to be able to modify any attributes, although the only ones I know of that it will accept are R and A.
    The second way is to instead use ROBOCOPY with the options /e, /m, and /copy:dt.
    For example: "robocopy testfolder Y:\ /e /m /copy:dt"
    /e = Copy subdirectories, including empty ones. (or use /S which will not copy empty folders)
    /m = Copy only files with the Archive attribute and reset it.
    /copy:dt = Copy data and timestamps, does not copy attributes, security, owner info, or auditing info.
    The only important option to use is /copy:dt, the others can be replaced with whatever you need. Note that things like Song Author will still get copied as they are a part of the data section. I don’t believe XCOPY supports doing this, and in either case robocopy is a better solution that comes with Windows Vista and up, and can be gotten for those below Vista.
    The third way is to add a section to the script to remove attributes from all folders before using xcopy to copy to the NAS, or modify the section that is causing the folders to have the A attribute as xcopy will gladly still copy them with /E or /S enabled.
    The issue seems to be that when secure sharing is off, the server refuses attribute changing of folders, which is what is causing XCOPY to fail, as I suspect it attempts to change the attributes on the folders. Similarly, using robocopy without /copy:dt will also fail but gives you “Error 5 … changing file attributes [folder/path] Access is denied”. This is why I suspect that when XCOPY says “unable to create directory” that it is actually trying to change the attributes of the directory. Furthermore, it seems that the reason this works while secure sharing is on is that while it is on, the server pretends to accept the attributes but in reality ignores all attributes besides R. The server then adds the A attribute to all files put onto it, which you can only modify when secure sharing is enabled for some reason. The exception to this is that in either case, any file with the “H” (hidden) attribute, will not be copied, even if explicitly told to copy it. (This is true for both robocopy and xcopy; you also cannot manually add it afterwards.)
    Is there an issue with the files on the NAS having the A attribute? If so the only way I currently know of to get rid of it is to enable secure sharing and have the script remove the attribute after copying. For example, when you look at the permissions, the user "0" and “root” have full control as I've previously stated. You can tell Windows to specifically use one of them when mapping the drive, which in turn should give you full control; however, the server still refuses modifying attributes without secure sharing on for some strange unknown reason. Although, I am no "UNIX gearhead," so there may in fact be another way that I do not know of. The only time they are not listed as “Full Control” on my end is when a file was previously marked Read-Only, in which case they all share the same limited control. When I said in the beginning that the permissions are not a part of the problem in a sense, it’s more of that for the general case of what you need to do, they aren’t the problem as long as you don't need the R attribute and having the A isn't an issue, as it seems to be more of the server is refusing attributes even though we should have permission; however, they do appear to be a bit weird and are possibly displaying incorrect when secure sharing is disabled.
    I'd like to apologize in advance for any unclear, weirdly stated, or just plain odd things said in this post as I was pulled away to do a bunch of things and ended up editing, adding things, and finishing it late into the night and hope that one of the above is an acceptable resolution to your issue.

  • Help setting up an ipod for a gift

    i'm purchasing either a nano or an ipod for a friend for christmas and sending it to her in another state. i'd like to set up an itunes account for her with her info originating on my pc, set up the ipod on my pc, add files to the ipod's library and then send it. is this possible? any help would be much appreciated.
    nano, or 30g    

    Go ahead and put the movies on the iPad. However, when the person receiving the gift sets up the iPad in their name, the movies will be erased. So, you could put the movies on a USB flash drive and they could reinstall using the camera connection kit.
    How to use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
    Pad2, the new iPad Supported Video Formats & Movie Formats
    H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
     Cheers, Tom

  • Need help setting up LDAP server for Address Book

    I've set up Panther servers before for AFP which is pretty simple but now the office I work at wants me to setup an LDAP server so they can share the same contact information, probably about 2,000+ entries. I'm guessing that this will have to be entered in the LDAP server entry by entry.
    I need to know how to setup the server and what settings need to be on the clients' computers, such as in Address Book.
    The server is an older G4 tower and I've got 8 computers hooked up to it on a simple network. I don't think I'll need to make the LDAP server accessible from outside the network but it's something I'll have to worry about for the future.
    Thanks for any help you can offer.

    bump

  • Help setting up Lion Server for remote access

    I have been going in cricles for weeks trying to set this up correctly.  Can anyone tell me what I'm doing wrong?
    I got Lion Server and Server Admin Tools all updated and have been trying to follow Terry Walsh from We Got Served's guide but I missing something.
    I purchased a domain from GoDaddy. Let's call it bradnet.com
    My domain and dyn domain are not really what I have typed here but close enought that they should work for my example and trouble shooting.
    Because my ISP (Comcast) doesn't provide a static IP I registerd for an account with dyn.com.  This is where I get really confused.  With dyn.com i created a host name: bradnet.dyndns-rocks.com and downloaded there updater software.  It found my public IP address and said everything is ok.
    I went back to GoDaddy and in my DNS manger page added the host: bradnet.dyndns-rocks.com and entered my public IP.
    I then went to the server pane to edit the host name.  I followed your instructions to edit the name and selected Host Name for Internet.  I left the computer name as mini (what I had previously named it for file sharing before the server upgrade) and entered  mini.bradnet.dyndns-rocks.com as the host name.  When it takes me back to the server pane, in the bottom window it states:
    Your Server's host name is mini.bradnet.dyndns-rocks.com, and its IP address is 192.168.1.10. You can change network settings in the Server pane.
    I never get the your network is configured properly message.
    I went and set my computer's IP to DHCP with manual address (although all of my machines are set up with DHCP reservations so I guess that is a little redundant) to 192.168.1.10.
    I skipped the port forwarding step because I am using the latest AirPort Extreme as my router.
    I then opened a browser and tried:
    http://bradnet.com
    http://mini.bradnet.dyndns-rocks.com
    http://mini.bradnet.com
    http://bradnet.dyndns-rocks.com
    All of these got me the can't find the server response from Safari.
    Also, I have not yet set up Directory Services.  Terry's guide seems to suggest to do this step first.
    I'm sure I have messed up some step somewhere can you see what I have done wrong?
    Also, is it a problem to set up open directory services using a .local host and then go back and change it for internet access later or do you need to set that up from the start?  My family is getting impatient with me trying to get this to work.
    Thanks for any help anyone can offer!
    Brad

    That manual page is not fully correct. There is written:
    Public UDP Port(s): <enter the appropriate UDP port value(s)>
    Public TCP Port(s): <enter the appropriate TCP port value(s)>
    Private IP Address: <enter the reserved IP address of the host device (from step 1)>
    Private UDP Port(s): <enter the same Public UDP Ports or your choice>
    Private TCP Port(s): <enter the same Public TCP Ports or your choice>
    But it should be:
    Public UDP Port(s): <enter unique UDP Ports of your choice>
    Public TCP Port(s): <enter unique TCP Ports of your choice>
    Private IP Address: <enter the reserved IP address of the host device (from step 1)>
    Private UDP Port(s): <enter the UDP Ports used by your device>
    Private TCP Port(s): <enter the TCP Ports used by your device>
    Make sure you use the same ports in the private settings as you have defined in your IP camera. Normally a camera will use port 80 by default, so use 80 here.
    The Public ports must all be unique. If you have not defined a port 80 here, you can also use 80. This will fail however when using multiple cameras. I for instance have 5 IP cameras and use the public ports 8451, 8452, 8453 etc.

  • Help setting up ipad minis for our two kids.

    We purchased ipad minis for my two kids this Christmas (ages 6 &amp; 8).  I have been working on setting them up so they are ready to use.  I created gmail accounts and Apple ID accounts to use for messaging and FaceTime only.  I put restrictions so they can not use email, Facebook, Twitter, Safari, etc.  I plan on using a kid friendly browsing such as Mobicip.  The part I am getting hung up is being able to put certain things on their iPads from my wife's iTunes account.  We have decided to use her account to sync with their new iPads.  Obviously, the kids will not have access to her password on iTunes.  She has very few game apps on her ipad.  I would like to add fun appropriate kid games to her iTunes account to sync to their iPads, but not my wife's.  The same thing with iBooks and music.  Some of my wife's books are not kid appropriate.  I know you can create playlists to share music.  What is the best way to go about setting up iTunes?  Any other things I am forgetting to keep inappropriate material from curious kids.
    Thanks.

    How to use multiple iPods, iPads, or iPhones with one computer
    http://support.apple.com/kb/HT1495
    How to Share a Family iPad
    http://www.macworld.com/article/1163347/how_to_share_a_family_ipad.html
    Using iPhone, iPad, or iPod with multiple computers
    http://support.apple.com/kb/ht1202
    iOS & iCloud Tips: Sharing an Apple ID With Your Family
    http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/
    How To Best Use and Share Apple IDs across iPhones, iPads and iPods
    http://www.nerdsonsite.com/blog/2012/06/07/help-im-appleid-confused/
    Be sure to set up Restrictions for In-App purchases.
     Cheers, Tom
    How to Childproof Your iPad
    http://ipad.about.com/od/ipad-family/a/How-To-Childproof-Your-iPad.htm
    Set up a kid-friendly iPad
    http://www.macworld.com/article/2041627/set-up-a-kid-friendly-ipad.html
    How to set up an iPad or iPod touch for kids
    http://www.pcadvisor.co.uk/how-to/apple/3422580/how-set-up-ipad-or-ipod-touch-fo r-kids/
    Message was edited by: Texas Mac Man

  • Help setting up windows auth for lighttpd/ldap etc

    I'm running a server on my office that I only have accessible to people in our workgroup. I'd like to set it up to authenticate into our windows domain for ease of password management. I havent been able to get ldap working..and was wondering if anyone could point me in the right direction? most of the how-tos I find online are for setting up ldap for user account authentication. I dont need the users to be able to log into the box at all..just webserver.
    my company uses secure ldap and I have the needed certificates, though I cant seem to get basic ldap queries working so I must be setting something up wrong. I'm open to using other authentication methods than ldap as I just need to auth into lighttpd.
    Here's basically what I want to do:
    Specify a list of users that are allowed to access the page.
    If the users are in the allowed list, query the windows domain controller to validate their username/password.
    thats it. nothing really fancy or complex. is ldap the best way to do this or kerberos, etc..? I would even be willing to switch to apache if that would simplify things.
    any help would be greatly appreciated.

    How to use multiple iPods, iPads, or iPhones with one computer
    http://support.apple.com/kb/HT1495
    How to Share a Family iPad
    http://www.macworld.com/article/1163347/how_to_share_a_family_ipad.html
    Using iPhone, iPad, or iPod with multiple computers
    http://support.apple.com/kb/ht1202
    iOS & iCloud Tips: Sharing an Apple ID With Your Family
    http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/
    How To Best Use and Share Apple IDs across iPhones, iPads and iPods
    http://www.nerdsonsite.com/blog/2012/06/07/help-im-appleid-confused/
    Be sure to set up Restrictions for In-App purchases.
     Cheers, Tom
    How to Childproof Your iPad
    http://ipad.about.com/od/ipad-family/a/How-To-Childproof-Your-iPad.htm
    Set up a kid-friendly iPad
    http://www.macworld.com/article/2041627/set-up-a-kid-friendly-ipad.html
    How to set up an iPad or iPod touch for kids
    http://www.pcadvisor.co.uk/how-to/apple/3422580/how-set-up-ipad-or-ipod-touch-fo r-kids/
    Message was edited by: Texas Mac Man

  • Help setting up a proxy for usenet (nntp) and Tor

    I am trying to set up a newsreader (Thoth) to connect to a newsserver using tor (http://www.torproject.org/). The manual for tor (http://www.torproject.org/docs/tor-doc-osx.html.en) shows how to do this for Safari, but not for a socks connection. Or is it as easy as setting the socks proxy to 127.0.0.1 and using port 8118.
    Hope this made sense.

    Look here, this will answer your query.
    <http://www.northernsecurity.net/articles/torify_old.html>
    Glad to help,
    Ray

  • "it's always DNS" - Need Help setting network/DNS settings for MacMini Serv

    Well, I must admit defeat and ask for help. I've set up an Xsan or 2, but for the life of me cannot set up my mac mini server. My basic two problems seem to be these:
    1) Service Order in System Preferences/Network
    I want to run my private LAN through Ethernet, using a 10.1.17. IP range, and use my Airport Extreme Base Station (Technically a Time Capsule) for the Public ISP 192.168.1 DHCP service. Cannot get both to work. The only way I can get the server to work and to be able to login using Open Directory is to either set the Ethernet as Primary for both my client and server, in which case there is no internet service AT ALL for either. I have a sneaking suspicion it has something to do with either DNS or a few extra DNS entries in the ethernet or airport categories, but for the life of me I cannot find the right combination. Is there any way to have BOTH Ethernet LAN and Airport internet service?
    2) Related to the first question, I think, is that my local FQDN (not registered, just meant for internal LAN use only right now) and DNS name only show up to my client computer in Server Admin, Directory Utility, Workgroup Manager if I DISABLE my airport card. Otherwise, they come up as <servername>.local and not the FQDN <servername>.editdog.com, and I cannot login using OD.
    3) I'm not sure what happend to the Binding I used to have to do in OSX Server 10.5, but maybe that's the issue? I have the Peachpit OSX Server Essentials Book, and it's been less than helpful.
    Any ideas out there?

    bump

  • I need Help setting up port forwarding for my foscam FI8910W.

    I am currently on Mac OS X 10.7.5. My ISP is verizon FIOS and I have an Actiontec MI424WR router with the wireless turned off. I have an AirPort Extreme running from the actiontec router for my wireless network. First of all I need to know if I should plug the Foscam into the actiontec router or the Airport Extreme? Then I need to know if I should set up the port forwarding on the Actiontec or the Airport Extreme. Lastly I need detailed instructions on how to set up the port forwarding. Hopefully someone has a solution. Thanks

    OK, and what sort of help do you need?

  • Need help setting up Mac server for dental practice?

    My dentist is running windows server 2003 and wants to do a total upgrade to Apple server components. The issue is that the software his office uses for patient records is not Mac compatible. He is really set on the Mac environment and is curious if he can run the software on a Mac running Windows and I guess my question is the same. I don't have the specifics on the software he needs to run but from what he says it is fairly low overhead and handles some large jpeg files but mostly small data files.
    I am curios how difficult the task of migrating all the info into the Mac environment will be? He is also curious about remote access from home or wherever he needs to get to his info and am curious if a VPN or other method is best.
    Thanks

    Ok, I am a sucker. I will bite.
    The answer is yes. OS X and OS X Server can run Windows in a virtual machine using Parallels of VMWare (or virtual box, or Crossover, or... you get my point). This will allow you to run Mac hardware with Mac software but at the same time run Windows and the required applications.
    But, there is a cost penalty here. First, there is the cost of the hardware. Not a big deal, Apple is competitive in price and the server hardware is very nice. Then there is the cost of Windows and the VM software. This is your tax. You have to add these costs on top of what you are already buying and then there is the hidden cost of the additional support. You are now supporting two operating systems, OS X and Windows. And just because Window is running on a Mac does not make it immune to viruses/spyware/trojans/etc.
    If this guy really wants to go the Mac route, then go all Mac. Check out http://www.macpractice.com/mp/dds/ or http://www.macdentpro.com/index.php or do a search. There are a number of products that can handle dental practices on Macs, including the radiology aspect. Google is your friend.
    As for remote access, OS X Server has a VPN built in that works well. That is not a problem. Or you can get a dedicated VPN appliance to handle security. Once bit of advice. Make sure you implement a good backup solution. Don't be foolish and think that TIme Machine alone is going to save you. This is medical records. Do not mess with them. Spend the dollars to properly harden the environment and ensure record retention policies are met.
    Hope this helps

  • Need help setting up BI Mobility for an iPad

    I'm brand new to everything BusinessObjects, as we have just purchased and installed BOE Platform 4.0.  I'm trying to get report mobility up and running on an iPad.  I have tried to follow the steps in the 403 Guide, but got stuck on the step "Creating an SAP BI URL."
    It says to create a URL that lets users have this pre-populated parameters for a connection, it needs to be in this format:
    sapbi://addconnection?name=<ConnectionName>&server_url=<ServerName/IP:Port>&cms=
    <ServerName/IP:Port>&authType=<AuthenticationType>&default=<yes/no>&user=<User
    Name>&password=<UserPassword>&save_password=<yes/no>
    My questions are:
    1. Where do I even type in the above config string to generate the pre-configured connection?
    2. One of the parameters in the config statement is "server_url".  What is that, and how do I generate/locate the server_url for my system.
    Sorry if these questions are overly basic, but I've got to start somewhere!  Thanks for any help you can provide!
    Dustin

    Hi Dustin ,
    I guess your query is already answered in the page you viewed your URL.
    The URL needs to be put in the browser window on your ipad.
    Also, the serverurl simply means the servername or ip address of your BO machine with port number as 8080(tomcat default) while for cms= servername and cms port (6400)
    Select the authentication type default (enterprise)
    Regards,
    Atul

  • HELP Setting up visual voicemail for samsung s5

    I am trying to access my visual voicemail on my new phone and I keep getting this error: "Unable to verify subscription status. Please try again later". I don't know what to do to get this set up. I thought it was as simple as activating my new phone and everything transferring over.

        I'm sorry this is happening with your voice mail joehamed. Please try powering phone all the way off, then re-add feature via My Verizon, http://vz.to/1ottQL0, then power back on and try to set up on your phone. Let's see if this helps. Please keep us posted.
    Thank you,
    VanessaS_VZW
    Follow us on Twitter @VZWSupport

  • Help setting up external service for email (MX record)

    I am new to all of this so bear with me....
    I am trying to set up mail using an external service...
    Previously my website and email was hosted by justhost.com... i used muse to develop the website so i recently switched to business catalyst to host and im using domain forwarding to the new site hosted through the business catalyst. (not sure if this plays a role in my issue)
    my email was (as i said) through justhost and i had it set up on my computer with outlook and on my phone. worked fine before...
    when i switched to busines catalyst email went down so now im trying to set it up with the mx record. I have gotten it to work intermittantly but overall no success.
    seems like im missing something simple???
    please help

    Thank You a_chin
    However, my client in frustration for not getting mail on his phone and (I'm sure at this point) thinking that I don't know what the heck I am doing with his website call ipage.com.
    They confirmed to him that the name servers are pointed at worldsecuresystems.com (the Business Catalyst server). My client told me that told him that he had to wait for the MX server to propgate. My client told me that they made no indcation that they did or would make any changes on the ipage.com side of things. Oddly my client started getting emails after about an hour. I check the new muse website I had built and the URL pointed at his old wordpress site. I was confused to say the least. I logged on the the ipage.com admin panel and the name servers where changed back to the ipage defult name servers.

Maybe you are looking for