Best way to edit and deploy pages to remote host.

Hi All,
I wasnt sure whether to ask this in General or here.... sorry
if this is the wrong forum.
When I make a site using an access database & asp pages
In the DW I tend to do everything from the remote server.
I set the site up in my properties and test remotly etc and
it all works out fine.
But what I find is remotely it seems to slow up my PC and DW
hangs quite often when I try to close it down or change sites..
My problem is I have a connection string for my database and
Locally the database is just in the root of the site so I used to
use a Server.mapPath to get my connection..
But on the remote server My DB is in an outside Private
directry and my connection string needs the full path to the DB.
What im finding is if I test locally and upload the
connection string online chenges to the local connection string and
I have to go and change it to get the proper paths on the server
again, even if I choose not to upload dependant files this seems to
happen.
Im wondering how you guys do this and if there is anything im
missing in my set up and the best way to edit test and upload your
files in DW.
Thanks again
Tag

Hi Envision,
I tried DSN locally and it worked very well, but not all
servers support it even if they allow an access database and I have
found some just allow DSN-Less so plumped to do this that way...
Thanks ;-)

Similar Messages

  • Dw, css, and a template, what is the best way to create a 20 page website with a different header in each page?

    dw, css, and a template, what is the best way to create a 20
    page website with different header content on each page? i am
    trying to insert a specific image and background color for each
    header on every page. what is the easiest or best way to do this?
    thanks, bryan

    "mediastream13" <[email protected]> wrote in
    message
    news:f47bes$9om$[email protected]..
    > ok, murray, here is the site.
    http://www.helphotline.org
    > in I.E. 6 i can't see the background color behind the
    header images,
    I'm seeing a hot pink background (which is my browser default
    - so that I do
    remember to declare a background color). You need to add:
    body { background-color: white;} to your stylesheet, or into
    the imbedded
    styles on your page.
    In Firefox, the very top black section, #headertop is hidden
    behind the
    header image.
    > background of the date/time isn't stretching the full
    length of the
    > screen, and
    > the margins aren't working in the main content area. how
    can i put a
    > background
    > color behind the header images?
    I can see the header image stretching right across the page..
    so not sure
    what color is missing there.
    > is there anyway to download i.e. six on my computer if i
    already have
    > i.e.7? i
    > just want to be able to preview the site before i upload
    the changes. it
    > seems
    > everything works in i.e. 7.
    Yes, I used this and it works really well.
    http://tredosoft.com/Multiple_IE
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au

  • Best way to view and edit OpenOffice files on my new iPad Mini (originally Word and Excel files). Thanks!

    Can someone tell me the best way to view and edit OpenOffice files on my new iPad Mini (originally Word and Excel files)? Thanks!

    wmf files is a MS Windows video file, you will need a tool to covert the wmf files to another file format OS X will read. Simply Google to find a converter you are interested in and use it.

  • What is the best way to EDIT a voice narration in Premiere Elements 11?

    What is the best way to EDIT a voice narration in Premiere Elements 11 when words or paragraphs have to be repeated?

    TomVideo4477
    The rough description of Preview Window trimming..
    a. double click clip in Project Assets to bring up Preview Window
    b. move Timeline indicator to beginning of section, hit Set In; move Timeline indictor to end of section, hit Set Out.
    c. next you can drag the segment from the Windows to the Timeline audio track and/or drag the segment from the Preview Window to Project Assets to become part of the project's media.
    The following should give you some thoughts on the above.
    http://www.atr935.blogspot.com/2013/06/pe11-project-assets-organization-for.html
    Although more from a video trimming perspective, the principles apply to an audio clip as well.
    Now "delete and close gap" can be interesting depending on what is around the area involved.
    Please check out the details on that in the following.
    http://www.atr935.blogspot.com/2014/02/pe-delete-and-close-gap-failures.html
    Not sure I am clear on
    The “delete and close gap” option in the edit menu does not work. Do I have to move the file to the Narration Track on the Timeline to do the actual trimming?
    You should be able to trim the narration in the Preview Window opened by right clicking the narration clip in Project Assets and then drag the segment to an audio track or narration track or dragging the trim to Project Assets for source media.
    Please check out the above and then let me know if you are OK with the information. If not, let me know where I need to clarify what I have written.
    Thanks.
    ATR

  • What is the best way to edit meta data..

    What is the best way to edit meta data and tag photos, faces, places etc. and have the data saved to the original photo.
    On a PC I would just use Windows Gallery. iPhoto on the Mac allows for some tagging, but it doesn't save to the original file.
    I like to have my photos in a folder, edit them and save the changes.
    What software would work best on a MAC to accomplish this?
    Thanks for any help,
    Nick

    iPhoto is a database and any metadata you add or edit is available in any app - if you learn how to use it.
    iPhoto is a non-destructive processor. It never touches the original file - it treats it like a film shooter treats the negative.
    If you want a copy of the original file with the metadata included simply export a copy.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.
    As an FYI:
    For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491

  • Best way to declare and use internal table

    Hi all,
    As per my knoledge there are various techeniques (Methods) to declare and use the internal tables.
    Please Suggest me the Best way to declaring and using internal table ( WITH EXAMPLE ).
    Please Give the reason as well how the particular method is good ?
    What are benefits of particular method ?
    Thanks in advance.
    Regards
    Raj

    Hello Raj Ahir,
    There are so many methods to declare an internal table.
    Mainly I would like to explain 2 of them mostly used.
    1. Using Work Area and
    2. With header line.
    This with header line concept is not suggestable, because, when we shift the code to oops concept.. it doesn't work... Because OOPS doesn't support the Headerline concept...
    But it all depends on the situation.
    If you are sure that your program doen't make use of the OOPs concept, you can use HEADER LINE concept. If it invols OOPs use WORK AREA concept.
    Now I'l explain these two methods with an example each...
    1. Using Work area.
    TABLES: sflight.
    DATA: it_sflight TYPE TABLE OF sflight.
    DATA: wa_sflight LIKE LINE OF it_sflight.
    SELECT *
      FROM sflight
      INTO it_sflight
      WHERE <condition>.
      LOOP AT it_sflight INTO wa_sflight.
        WRITE / wa_sflight.
      ENDLOOP.
      In this case we have to transfer data into work area wa_sflight.
    We can't access the data from the internal table direclty without work
    area.
    *<===============================================
    2. Using Header line.
      DATA: BEGIN OF it_sflight OCCURS 0,
              carrid LIKE sflight-carrid,
              connid LIKE sflight-connid,
              fldate LIKE sflight-fldate,
            END OF it_sflight.
      SELECT *
        FROM sflight
        INTO it_sflight
        WHERE <condition>.
        LOOP AT it_sflight INTO wa_sflight.
          WRITE / wa_sflight.
        ENDLOOP.
    In this case we can directly access the data from the internal table.
    Here the internal table name represents the header. for each and every
    interation the header line will get filled with new data. If you want to
    represnent the internal table body you can use it_sflight[].
    *<======================================================
    TYPES: BEGIN OF st_sflight,
             carrid LIKE sflight-carrid,
             connid LIKE sflight-connid,
             fldate LIKE sflight-fldate,
           END OF st_sflight.
    DATA: it_sflight TYPE TABLE OF st_sflight,
          wa_sflight LIKE LINE OF it_sflight.
    This is using with work area.
    DATA: it_sflight LIKE sflight OCCURS 0 WITH HEADER LINE.
    This is using header line.
    <b>REWARD THE POINTS IF IT IS HELPFUL.</b>
    Regards
    Sasidhar Reddy Matli.
    Message was edited by: Sasidhar Reddy Matli
            Sasidhar Reddy Matli

  • The Best Way To Edit Multiple Photos On One Scan

    Hi...
    I would like to know what the best way to edit out photo’s from a scan that has multiple photo’s?
    It seems like I must make a duplicate of the scan, in the amount of photos, on that one scan and then crop each “duplication”.
    Is there some other way that is better?
    Any suggestion, comments and opinions will be appreciated
    Thank you in advance...

    Catharsis:
    If you're using Canon's Canoscan Toolbox application to scan the photos try deleting its preference file, com.canon.CanoScan Toolbox 5.0.plist, and try again.
    In the CanoScan window make sure Select Source is Platen, Scan mode is Color (Mulit-scan) as seen in the screenshot below. That will crop and save each photo to its own file.
    Click to view full size
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Best Practices for Packaging and Deploying Server-Specific Configurations

    We have some server-specific properties that vary for each server. We'd
    like to have these properties collected together in their own properties
    file (either .properties or .xml is fine).
    What is the best-practices way to package and deploy an application (as an
    ear file), where each server needs some specific properties?
    We'd kind of like to have the server-specific properties file be stored
    external to the ear on the server itself, so that the production folks can
    configure each server's properties at the server. But it appears that an
    application can't access a file external to the ear, or at least we can't
    figure out the magic to do it. If there is a way to do this, please let me
    know how.
    Or do we have to build a unique ear for each server? This is possible, of
    course, but we'd prefer to build one deployment package (ear), and then
    ship that off to each server that is already configured for its specific
    environment. We have some audit requirements where we need to ensure that
    an ear that has been tested by QA is the very same ear that has been
    deployed, but if we have to build one for each server, this is not
    possible.
    Any help or pointers would be most appreciated. If this is an old issue,
    my apologies, would you please point me to any previous material to read?
    I didn't see anything after searching through this group's archives.
    Thanks much in advance,
    Paul
    Paul Hodgetts -- Principal Consultant
    Agile Logic -- www.agilelogic.com
    Consulting, Coaching, Training -- On-Site & Out-Sourced Development
    Java, J2EE, C++, OOA/D -- Agile Methods/XP/Scrum, Use Cases, UI/IA

    The one draw back to this is you have to go all the way back to ant and the
    build system to make changes. You really want these env variables to be
    late binding.
    cheers
    mbg
    "Sai S Prasad" <[email protected]> wrote in message
    news:[email protected]...
    >
    Paul,
    I have a similar situation in our project and I don't create ear filesspecific
    to the environment. I do the following:
    1) Create .properties file for every environment with the same attributename
    but different values in it. For example, I have phoneix.properties.NT,phoenix.properties.DEV,
    phoenix.properties.QA, phoenix.properties.PROD.
    2) Use Ant to compile, package and deploy the ear file
    I have a .bat file in NT and .sh for Solaris that in turn calls theant.bat or
    ant.sh respectively. For the wrapper batch file or shell script, you canpass
    the name of the environment. The wrapper batch file will copy theappropriate
    properties file to "phonenix.properties". In the ant build.xml, I alwaysrefer
    to phonenix.properties which is available all the time depending on theenvironment.
    >
    It works great and I can't think of any other flexible way. Hope thathelps.
    >
    Paul Hodgetts <[email protected]> wrote:
    We have some server-specific properties that vary for each server. We'd
    like to have these properties collected together in their own properties
    file (either .properties or .xml is fine).
    What is the best-practices way to package and deploy an application (as
    an
    ear file), where each server needs some specific properties?
    We'd kind of like to have the server-specific properties file be stored
    external to the ear on the server itself, so that the production folks
    can
    configure each server's properties at the server. But it appears that
    an
    application can't access a file external to the ear, or at least we can't
    figure out the magic to do it. If there is a way to do this, please
    let me
    know how.
    Or do we have to build a unique ear for each server? This is possible,
    of
    course, but we'd prefer to build one deployment package (ear), and then
    ship that off to each server that is already configured for its specific
    environment. We have some audit requirements where we need to ensure
    that
    an ear that has been tested by QA is the very same ear that has been
    deployed, but if we have to build one for each server, this is not
    possible.
    Any help or pointers would be most appreciated. If this is an old issue,
    my apologies, would you please point me to any previous material to read?
    I didn't see anything after searching through this group's archives.
    Thanks much in advance,
    Paul
    Paul Hodgetts -- Principal Consultant
    Agile Logic -- www.agilelogic.com
    Consulting, Coaching, Training -- On-Site & Out-Sourced Development
    Java, J2EE, C++, OOA/D -- Agile Methods/XP/Scrum, Use Cases, UI/IA

  • Is down loading projects to DVD's a safe way to edit and save?

    Yesterday I posted "Is down loading projects to DVD's a safe way to edit and save?". It got deleted. Being a newbe I got it in the wrong forum. I got it in "Post New Thread in Forum Comments". I was asked what path I used; I opened the home page. I ticked Discussions / Start New Discussion. I was so baited by the lure to post, I did not see the small "Adobe Forums" at the top and bottom of the page. I also did not understand the large "Post New Tread in Forum Comments". It was a bit confusing to me. But thanks to you guys I see the light.
    I read the discussion I started in "Why do we keep moving Post?". I was branded as a lost soul. I want to thank all of you for helping find my way. No one was rude or even harsh. I have been on other Forums and if you make a mistake you get blasted.
    I also want to thank you for all the answers I got for my original post. I read up on SATA and I can see that is where I need to make some changes to my portioned HD. I am sure I will be leaning on you for a lot of help for such a "Lost soul". And that I am. I am your typical 61 year old who got started late on computers.
    The fact that my HD is portioned is not a good thing I learned. I am not sure if my computer has the Power Supply or the Mother Board to convert to SATA. My question is: Will eSATA work in place of the internal SATA?
    Will I need two; one for editing and one for storage.
    I have an outboard I Omega with about 650GB, I think. Not sure if it is SATA, but it has worked well for my backup videos and general files.
    Thanks Again and I hope I got it right this time.
    I'm timid about ticking the "Post Message" , but here goes......Ohhhhhhhhh.....

    The system process in control panel MAY give you some of that information
    It should ALL be available with the information the system builder gave you... he DID give you the paperwork that came with the individual components?
    Taking the side panel off the case and looking inside with a flashlight might also help... but, of course, you'll need to know what it is you are seeing, and it sounds like you don't know much about hardware, so that may not help much
    Sadly, if the person who built this "video editing" computer didn't really understand video editing, you are left with a computer that won't do what you want, and no easy way to make it work
    You may need to find a computer shop to do this for you... and make sure part of their price is giving you a written list of everything you HAVE and everything they DO in the way of additions or configuration changes

  • Traveling with MacBook Pro, Mac at home. Best way to edit photos now but save later?

    Hello. I'm traveling with my MacBook Pro w/Mavericks for a few weeks. I have a new Mac (Mavericks) at home. All of my current photos are stored in iPhoto on my Mac at home. Both computers have iPhoto.
    What is the best way to edit my photos (taken with an iPhone 5s) now while traveling but in a way that I can still import them into iPhoto on my Mac when I return home? I don't want photos split between the two iPhoto libraries. If I import them into iPhoto now, on my MacBook Pro, and then edit them, is there a way to send them over to my iPhoto on the Mac when I return home?
    If I import them into iPhoto (Macbook Pro) and edit them now, then when I get home export them as Current from iPhoto on the Macbook Pro and then import them into iPhoto on the Mac, will there be any data loss?
    Is there another solution?

    The solution is to use iPhoto Library Manager to move the shots and all the versions and metadata from one library to another.
    This is the only way to move everything between Libraries.
    If you export, you lose either your original or your version. Unless you export with care you can lose metadata too. If you are going to export, don't use 'Current' as you can get higher quality with other settings.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • What is the best way to store and search 2D data

    Hi,
    There is a set of data (~10k records ) in 2D dimension.
    like this :
    Col 1, Col 2, Col3....
    What is the best way to store and search those records ?
    Thanks in advance
    Wilson

    Hi,
    Either userObjet[][] if you know how much data you have, and the data size is fixed, or use a list of lists. E.g. A Vector of Vectors (some will probably say that you should use an ArrayList instead, and that could be the case, but it sounds like you would want to display the data later on, and a DefaultTableModel (for JTables) uses a Vector as data holder).
    Kaj

  • What is the best way to scan and sort old photos in iPhoto

    What is the best way to scan and sort old photos in iPhoto?  They do not have digital dates.

    Hey Chicago Sue,
    Once you scan them and have them on your desktop. You should use Automator and assign the common IPTC tags to the images, so that when you do import them into iPhoto, they get recorded.
    Here is an example of an action in Automator:

  • How is the best way to backup and organize Adobe layered .PSD files on iMac OSX maverick?

    How is the best way to organize and backup Adobe layered PSD files on iMac desktop OSX maverick?
    I lost all my Adobe Photoshop files + everything else on my IMAC when it crashed. They reinstalled Operating System.  But now i must install programs such as MS Word & Adobe indesign suite.
    Please help me determine what is the bestway to backup Adobe layered  PSD files? I believe these are my choices to be assured this doesn't ever hapen again. Please comment.
    Buy Apple Airport Time capsule $280.  But I am not sure if it can store PSD layers. Can it or do you have to have Apple Apperture  software to act be sure layers are saved
    I had had trouble getting Adobe Cloud to sync to save files and so just trusted my computer to not ever crash.  Any hints on this procedure
    Are there any hints on PhotoShop image organization for a current IMac usser ?
    Please help.
    Teann  ucreateit

    My backup plan is to use Time Machine to make a backup to an external disk drive plus I also do a clone of my system disk. So far between the bootable clone and the Time Machine backup this plan has covered all of my needs.
    Allan

  • HT1364 I just bought a new PC and now have ample space on my C drive to house my music Library which is currenlty installed on a external drive.  What is the best way to install and move the itunes library to my C Drive?

    I just bought a new PC and now have ample space on my C drive to house my music Library which is currenlty installed on a external drive.  What is the best way to install and move the itunes library to my C Drive?

    If the entire library is on the external drive then simply copy the iTunes folder into <User's Music> on the new computer, then install iTunes. If you've already installed iTunes you will want to remove the empty iTunes folder in <User's Music> first.
    If it turns out you only have the media folder on the external drive then take a look at this post...
    tt2

  • Is there any way to edit and save an existing spreadsheet file that was not created from my iPad? I get excel spreadsheets emailed to me and would love to edit them on my iPad and not ever use my PC.

    Is there any way to edit and save an existing spreadsheet file that was not created from my iPad? I get excel spreadsheets emailed to me and would love to edit them on my iPad and not ever use my PC.

    Thanks. I tried an app called Office2HD and it does exactly what I need. I can even email my edited file from this app.

Maybe you are looking for

  • Windows 2008 R2 on Cisco UCS B200M networking problems

    This is driving me completely nuts.  Let me start by saying I am new to blade servers and Cisco UCS.  I did take an introduction class, and it seemed straight-forward enough.  I have a chassis with two B200M blades, on which I am trying to configure

  • Can't use plugins on safari for windows

    On myspace and youtube I cannot watch any videos or listen to music and i've downloaded the newest versions of flash player and it installs fine but it doesnt work in safari. please help!!

  • INTERNET stopped working

    Hi, I've tried all the fixes I can find for this and nothing has worked. Safari, Firefox and Software Update have all stopped functioning, anything involving the internet won't load up. But when I check the network connection it says it's working pro

  • I am trying to install an updated version of the Adobe flash player for my videos to play.

    I have a Linux computer with Ubuntu, and I use Google Chrome. I uninstalled the older version of the Adobe flash player, and now I cannot install the newer version of the Adobe flash player. What do I do?

  • T430s bluetooth linux magic trackpad

    I'm trying to use an apple magic trackpad in linux with the built-in bluetooth module from my t430s.  It works fine, but only if I keep the trackpad within 30cm of the laptop.  As I go further away, it starts to become unresponsive an then the cursor