Connect to ColdFusion web server

I just installed Dreamweaver CS 6 and would like to configure my web server, but can not find the place to connect the server.
Can you please advice how to configure my Dreamweaver to work to connect the web server?
Your help and information is great appreciated,
Regards,
Iccsi,

Thanks for the information and help,
Yes, I got it,
Thanks again for helping,
Regards,
Iccsi,

Similar Messages

  • Connection from the web server to the database which is situated in another machine.

    Thanks for the reply.
    I need to know, whether there shold be a physical connection between the web server and database machine? or can we connect to the database machine through the web, if the database machine has a domain name? if there is a physical connection, we can use the jdbc/odbc connection. but if we are connecting through the web, how can I estblish the connection using a JDBC/ ODBC connection?
    Regards,
    George

    As long as there's a network connection between the two machines, you should be able to make the connection. I'm not sure what the difference between a 'direct connection' and a 'connection through the web' is-- are you actually running a network cable from one machine to another?
    When you cannot make the connection, are you able to do a 'tnsping' on the target database?
    When you say 'connecting through the web', is it possible that you're going through a firewall? If so, the firewall may be blocking the ports you need to communicate on.
    Justin Cave
    ODBC Development

  • Calling SQL Loader from ColdFusion Web Server

    We are trying to Load Data files into Oracle through a Cold Fusion Web Application. Users will browse to a local file on their computers, click a button, and our application will use SQL Loader to load the data into oracle. The ColdFusion web server is Unix and the 11g database server is Linux. When we run the ColdFusion code below we get a file not found error, the sqlldr executable cannot be found. Do we need to install an Oracle client or something on the ColdFusion Web server to get this to work?
    <cfexecute name="sqlldr" arguments="ADVDEMO@ADVDEMO/Transact2011 control=/space/users/www/advfiles/ControlFiles/BS/Bio_ControlFile.ctl" timeout="500"></cfexecute>

    'sqlldr' is part of Oracle server or (full) Oracle client software - NOT the OS - so indeed you need to install at least the client. Unfortunately 'sqlldr' is not part of the Instant Client, which is much smaller than the full client.
    Some guys tried to add 'sqlldr' manually:
    http://my.opera.com/onyxluo/blog/2007/12/28/add-sql-loader-into-oracle-10-instant-client
    Werner

  • What is required to Exchange integration work - (Can't connect to Exchange Web Server)?

    Hi guys,
    We have just 'beaten' our Lync installation until it decided to work with mobility, however the clients (IOS) complain that it "Can't connect to Exchange Web Server". Entirely possible its our own fault!
    My question is:
    What exactly do I need to configure to make this work?
    DNS records,
    Firewall rules,
    etc. 
    We are running:
    Exchange 2010 on-premise
    TMG 2010
    Cheers
    Dave
    Dave

    Hi Dave,
    The Lync 2010 mobile client for iPhone and iPad has a Meeting tab that lists meetings for the day from the Exchange calendar.
    The client uses simple Exchange Autodiscover processes to determine the location of the Exchange server of the user who is signed in. The SIP Uniform Resource Identifier (URI) of the user is used in the attempt to discover the Exchange Web Services (EWS) endpoint.
    However, if the user’s SIP URI and email address are different, the Autodiscover process will fail, the Meeting tab will be blank, and Exchange Unified Messaging (UM) voicemail in the Phone tab will not sync.
    For disjointed email and SIP URIs, the Lync 2010 mobile client for iPhone and iPad lets the user specify a different set of credentials for Exchange integration. For the Exchange Autodiscover process to work correctly, the necessary DNS records must be available.
    To confirm that Autodiscover is working, use Microsoft Remote Connectivity Analzyer at http://www.testexchangeconnectivity.com (http://www.testexchangeconnectivity.com/)
    In addition, please also refer to this document
    Lync 2010 Integration. Hope helps.
    Noya Liu
    TechNet Community Support

  • Lync 2010 iPhone - Can't connect to Exchange web server. you can try again later

    Hi there,
    I installed Lync 2010 mobility, and works fine, but iPhone users have a :
    Can't connect to Exchange web server.
    you can try again later
    Now does this have anything to do with it? And how do i fix it? I searched but nothing relevant

    Total server discovery time: 0.3 seconds
    Starting Lync server autodiscovery
    Please wait; this test may take several minutes to complete...
    Starting automatic discovery for secure (HTTPS) internal channel
    Server discovery has completed for https://lyncdiscoverinternal.contoso.com/.
    Automatic discovery results for https://lyncdiscoverinternal.contoso.com/
    Access Location                          : Internal
    SIP Server Internal Access               : server.contoso.com
    SIP Server External Access               : sip.contoso.com
    SIP Client Internal Access               : server.contoso.com
    SIP Client External Access               : sip.contoso.com
    Internal Auth broker service             : https://server.contoso.com/Reach/sip.svc
    External Auth broker service             : https://lync.contoso.com/Reach/sip.svc
    Internal Auto discover service           : https://server.contoso.com/Autodiscover/AutodiscoverService.svc/root
    External Auto discover service           : https://lync.contoso.com/Autodiscover/AutodiscoverService.svc/root
    Internal MCX service                     : https://lync.contoso.com/Mcx/McxService.svc
    External MCX service                     : https://lync.contoso.com/Mcx/McxService.svc
    Internal UCWA service                    : service URL is empty in the discovery response
    External UCWA service                    : service URL is empty in the discovery response
    Internal Webscheduler service            : service URL is empty in the discovery response
    External Webscheduler service            : service URL is empty in the discovery response
    Server discovery succeeded for secure (HTTPS) internal channel against URL https://lyncdiscoverinternal.contoso.com/
    Starting automatic discovery for unsecure (HTTP) internal channel
    Couldn't connect to URL http://lyncdiscoverinternal.contoso.com/[email protected] (HTTP status code Forbidden)
    Server discovery failed for unsecured internal channel against http://lyncdiscoverinternal.contoso.com/
    Starting automatic discovery for secure (HTTPS) external channel

  • Unable to connect servlet on web server

    Hi all,
    I have wrote the following program to connect to the servlet to the web server:
    public class HTTPTest
         public HTTPTest() {
    public static void main(String[] args) {
         HTTPTest httptest = new HTTPTest();
              httptest.sendHTTP();
    public void sendHTTP() {          
              try
                   URL url = new URL("http://myserver/myServlet");
                   HttpURLConnection conn = (HttpURLConnection)url.openConnection();
                   conn.setDoOutput(true);
                   conn.setRequestMethod("POST");
                   conn.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
                   PrintWriter dos = new PrintWriter (conn.getOutputStream ());
                   dos.println("content=" + URLEncoder.encode("ABC"));
                   dos.println("signature=" + URLEncoder.encode("CDE"));
                   dos.flush();
                   dos.close();
                   conn.disconnect();
              catch(Exception e)
    My servlet does contains some code that write log to the web server log. However, when I examine the log after running this program, nothing was written. But when I access my servlet using an HTML page, it works!
    I am using iPlanet 4.0 SP4, JDK 1.3. Can anyone tell me why? thanks very much!
    Walter

    Thanks very much! It works.
    However, another problem comes. For the two fields that I "POST"ed, it seems that one can reach the servlet but one cannot. When I retrieve the values from the servlet using "req.getParameter("XXX")", one of them got null. But obviously my applet does not send null values.
    Any other thing is needed? Thanks!

  • Not Able to Connect to Intranet Web Server

    We have ASA5550 (ver. 8.0.4). We setup Split-tunneling. The Remote users were NOT able to access the intranet web server using Cisco VPN client. However, they were able to access other internal resources. We were able to ping the IP address of the Intranet Web server, but we were NOT able to ping by name. Do you have any suggestions?
    Thanks.

    Thanks for your response and information. The VPN adapter shows the Corporate office's DNS server. When I typed NSLOOKUP, the Remote computer also showed the Corporate office's DNS server. So, does it mean the DNS is setup correctly on the ASA?
    We have about 100 Remote offices, do we need to put in 100 DNS servers for Split-DNS? The Remote offices are using Cisco VPN client to connect to us.
    Thanks.

  • Losing smart camera connection when using web server on NI1762 smart camera

    Hi
    I am using 2 smart cameras ( old NI1762 and the new NI1772) with Vision builder 2011 . 
    I am trying to find a way to retrieve data and image to a Visual Basic 6 application. i could not find an elegant way to do it , so instead , i am sending TCP command to the smart camera as an input and the smart camera send me back a TCP command a as an output. by this way i could communicate with the smart camera . For transferring images I could not use the TCP step , so I turned on the smart camera web server to get the image by a browser Object . But the problem is that everything is going well with the TCP, but when I turned on the web server and try to communicate with it, sometimes I loose the connection with the smart camera. That is happened with the 1762 smart camera. But when I use the NI1772 it rarely happed.
    Please help me. is there any other elegant way to communicate with the smart camera , and if a TCP and web server is a solution , Why the NI1762 web server is not stable ? Why i am losing the connection when browsing to the inspection page???
    Thanx

    Previous versions of Vision Builder had a COM library that you could use from Visual Basic 6 or other environments and talk over the network to a Smart Camera running Vision Builder AI and control its execution just how you are requesting. In more recent versions, this has been replaced by a native .NET and LabVIEW-native API that is much more fully featured. Unfortunately, I do not think the older COM mechanism is still available/supported (but I certainly could be wrong...).
    However, one avenue you may wish to persue would be to call into the .NET interface from Visual Basic 6. Microsoft designed .NET to allow COM interoperibility in both directions (.NET can call into COM libraries and COM libraries can call into .NET). Take a look at the following document from Microsoft:
    http://msdn.microsoft.com/en-us/library/zsfww439(v​=vs.85).aspx
    You could then look at any of the .NET (C#) examples to get an idea of the API:
    C:\Program Files (x86)\National Instruments\Vision Builder AI 2011\API Examples\dotNET Examples
    Eric

  • HT1421 Is there a way to set a path statement in an iPad Iso5.1 to connect to a web server on the same network

    I have
    A local web server and would
    Like to connect to it via my iPad. It does not work correctly using ip address. Would likee to set a path name on the iPad so I can connect via a name.
    Like http://me.home.com

    When I go to 192.168.254.2/Wordpress it works, but if I go to any posts or pages it says safari can not connect to ragwing.home.org. That is the server name. If I try to go to ragwing.home.org it says the same. If I use my laptop running windows it works, because I have put the name ragwing.home.org in the path statement. If I use my linux laptop it works also.

  • Can't connect to local web server

    I'm not quite sure when this happened; I think it was upgrading to iPhoneOS 3.x but I can't swear to that (currently running 3.1). Anyway, the problem is that, whether from my app or even simply using Safari, I can't connect to a local webserver. If I'm on one computer in my office (working over WiFi just like my iPhone), and type "http://192.168.1.110/file", where 110 is a different computer, Safari will display the page just fine. But if I'm using my iPhone in the office, on the same network, and type the same URL, it will not connect. For SURE this used to work, and I haven't changed any settings on my network or on my iPhone for that matter.
    No problem with connecting to external websites, clearly.

    Web services are not relevant to DNS host names.  You'll need to configure a default domain name for whatever is being used as the local domain, whether that is established via System Preferences or via DHCP settings.  If your Windows box is running a DNS server, you'll need to set the Mac DNS resolver address at the Windows DNS server.

  • Why won't a Windows 7 client connect to my web server?

    I've got 5 Mac clients that can connect to my Snow Leopard server. They use file sharing, iCal, and web services.
    We're trying to put a Windows 7 client on the network to use just file sharing and web services. Unfortunately, I can't get the Windows client to connect to the server at all.
    We're using an Airport Extreme as a local network router. All devices are successfully connecting to this device.
    When I try to access web services on the server using the Windows 7 client, I get an error message that the server is inaccessible.
    Anyone know what might be different about how the Windows device is accessing the server vs how the Mac devices are?

    How are you trying to connect to it? Just typing in its web address in a browser?
    Is your DNS configured correctly?

  • Sudochmod appears at /Library/StartupItems in my MacBook Air 2012 (Mavericks). Should I be concerned? Could it be connected with nginx web server pages which have appeared recently? Newcomer there4 apologies if there is an obvious and simple explanation

    Is this a standard inclusion in the startup items list and I am therefore being paranoid or could it be linked to the Welcome to the Nginx Server page I obtained when by chance I typed in http:dyn.org by mistake when intending to go  to the DynDNS webside? Details below. Can anyone assist please?
    Sudoschmod file :
    #! /bin/sh
    . /etc/rc.common
    StartService ()
              # Unfortunately, Mac OS X's devfs is based on the old FreeBSD
              # one, not the current one, so there's no way to configure it
              # to create BPF devices with particular owners or groups.
              # This startup item will make it owned by the admin group,
              # with permissions rw-rw----, so that anybody in the admin
              # group can use programs that capture or send raw packets.
              # Change this as appropriate for your site, e.g. to make
              # it owned by a particular user without changing the permissions,
              # so only that user and the super-user can capture or send raw
              # packets, or give it the permissions rw-r-----, so that
              # only the super-user can send raw packets but anybody in the
              # admin group can capture packets.
            #BPF_GROUP="access_bpf"
            #BPF_GROUP_NAME="BPF device access ACL"
            #dscl . -read /Groups/"$BPF_GROUP" > /dev/null 2>&1 || \
            #dseditgroup -q -o create "$BPF_GROUP"
            #dseditgroup -q -o edit -a "$USER" -t user "$BPF_GROUP"
            #chgrp access_bpf /dev/bpf*
            sudo mknod /dev/bpf4 c 23 4
            sudo mknod /dev/bpf5 c 23 5
            sudo mknod /dev/bpf6 c 23 6
            chgrp admin /dev/bpf*
            chmod  a=rwx /dev/bpf*
            chmod  a=rwx /dev/bpf*
    StopService ()
              return 0;
    RestartService () { StartService; }
    RunService "$1"
    StartupParameters.plist:
    StartupParameters.plist
      Description     = "Change BPF permissions for isudo";
      Provides        = ("Sudochmod");
    is this a standard inclusion in the startup items list and I am therefore being paranoid or could it be linked to the Welcome to the Nginx Server page I obtained when by chance I typed in http:dyn.org by mistake when intending to go  to the DynDNS webside? Can anyone assist please?

    >>Is this a standard inclusion in the startup items list
    No
    >>could it be linked to the Welcome to the Nginx Server page I obtained when by chance I typed in http:dyn.org by mistake when intending to go  to the DynDNS webside?
    No, that could not have been placed there by visiting a website.
    You may have installed wireshark or some other packet-capturing software.

  • Can't connect via Screen Share or Web Server, but can ping and ssh

    Bit of an odd problem here.
    My Mountain Lion Mac Pro (called "Trogdor" for convenience) is connected to my work university network. I can ping it from anywhere-- elsewhere on the network, from home behind a firewall. Can connect over ssh from everywhere. I can also connect to other computers (on the same network or at home behind a firewall) from Trogdor via ssh, Screen Sharing, etc.
    But I can't Screen Share into Trogdor, and I can't connect to Trogdor's built-in web server, either system-wide (in /Library/WebServer) or for my username (~/Sites). (I can connect to the web server from Trogdor.)
    Note that I can do both of these for other computers on the same network (same subnet, etc), so it's not a network issue. I can't do these from anywhere: same network or from home. I have this problem whether I use Trogdor's hostname or its IP address. (I can look up its hostname using the IP address with the "host" tool in Terminal, and vice versa.)
    So it sounds like a port issue, right? Except I don't think I've ever messed with my port settings directly. How do I diagnose the problem? Should I scan my ports? Can I return port settings to default?
    Thanks!
    Message was edited by: supercres

    Bit of an odd problem here.
    My Mountain Lion Mac Pro (called "Trogdor" for convenience) is connected to my work university network. I can ping it from anywhere-- elsewhere on the network, from home behind a firewall. Can connect over ssh from everywhere. I can also connect to other computers (on the same network or at home behind a firewall) from Trogdor via ssh, Screen Sharing, etc.
    But I can't Screen Share into Trogdor, and I can't connect to Trogdor's built-in web server, either system-wide (in /Library/WebServer) or for my username (~/Sites). (I can connect to the web server from Trogdor.)
    Note that I can do both of these for other computers on the same network (same subnet, etc), so it's not a network issue. I can't do these from anywhere: same network or from home. I have this problem whether I use Trogdor's hostname or its IP address. (I can look up its hostname using the IP address with the "host" tool in Terminal, and vice versa.)
    So it sounds like a port issue, right? Except I don't think I've ever messed with my port settings directly. How do I diagnose the problem? Should I scan my ports? Can I return port settings to default?
    Thanks!
    Message was edited by: supercres

  • Can't parse xml file in jar file when  can't connect to web server

    My JNLP application throw ConnectException when trying to parse xml during web server offline.
    Steps,
    1. JNLP application has been launched once and all related jar and xml files are already downloaded to local cache.
    2. Then I close web server to test offline launch.I launch the JNLP application using shortcut with -offline parameter.
    3. However the JRE internal xml parser tries to connect to web server and report connection error as web server is down now.
    My concern is the file is already in the cache, why java still try to connect URL. This error happens in JRE 1.5, but it doesn't happen in JRE 1.6. It only happens when web server is down in JRE 1.5.
    I think it may be a bug of JRE, do any one can give me some hint about how to resolve?
    Thanks in advance!!
    I also moved the code piece to a simple web start example, following it the error and code pieces.
    Error Trace in Java console,
    ava.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(Unknown Source)
         at sun.net.www.protocol.jar.JarFileFactory.get(Unknown Source)
         at sun.net.www.protocol.jar.JarURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.jar.JarURLConnection.getInputStream(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.startEntity(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.startDTDEntity(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDTDScannerImpl.setInputSource(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unknown Source)
         at javax.xml.parsers.DocumentBuilder.parse(Unknown Source)
         at EntXmlUtil.buildDocument(EntXmlUtil.java:57)
         at Notepad.testParseXML(Notepad.java:870)
         at Notepad.main(Notepad.java:153)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sun.javaws.Launcher.executeApplication(Unknown Source)
         at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
         at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Notepad.java
    public void testParseXML() {
         URL xmlURL=Notepad.class.getClassLoader().getResource("xml/Login.xml");
         try {
                   org.w3c.dom.Document doc = EntXmlUtil.buildDocument(xmlURL);
                   System.out.println("Test"+doc);
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    EntXMLUtil.java
    private static DocumentBuilderFactory dbf = null;
         static {
              dbf = DocumentBuilderFactory.newInstance();
              dbf.setNamespaceAware(true);
              dbf.setValidating(true);
              dbf.setIgnoringComments(true);
              dbf.setIgnoringElementContentWhitespace(true);
    public static DocumentBuilderFactory getDocBuilderFactory() {
              return EntXmlUtil.dbf;
    public static Document buildDocument(URL url, String systemId) throws Exception {
              DocumentBuilder db;
              Document doc;
              InputStream is;
              String sysId = null;
              if(systemId == null)
                   sysId = url.toExternalForm();
              else
                   sysId = systemId;
              db = EntXmlUtil.getDocBuilderFactory().newDocumentBuilder();
              is = url.openStream();
              doc = db.parse(is, sysId);
              is.close();
              return doc;
         }

    I finally got a temperary work around for this issue, using JRE5 version lower than update 16(not include update 16).
    i found Sun modify the URL which returned by XXX.class.getClassLoader().getResource("xml/Test.xml,") after update 15, previous it is related with the cache path, like C:\Users\epenwei\AppData\LocalLow\Sun\Java\Deployment\cache\javaws\http\Dlocalhost\P80\DMEntriView\DMapp\AMNotepad.jar!/xml/Test.xml, but after it changes to network path, like http://localhost/Notepad/app/notepad.jar!/xml/Test.xml. However, the latter address doesn't work in Sun's own class com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity if offline.It tried to create new URL then connect to web server. So exception is thrown since web server is down.
    if (reader == null) {
    stream = xmlInputSource.getByteStream();
    if(stream != null && encoding != null)
    declaredEncoding = true;
    if (stream == null) {
    URL location = new URL(expandedSystemId);
    URLConnection connect = location.openConnection();
    if (connect instanceof HttpURLConnection) {
         setHttpProperties(connect,xmlInputSource);
    I am not sure whether it is a Java new bug since I only read the codes and didn't debug Sun code. But I am very curious that I have already specify <j2se version="1.5.0_12" href="http://java.sun.com/products/autodl/j2se" /> to specify update 12 for my jws application. And I also see the Java console display like following
    Java Web Start 1.5.0_18
    Using JRE version 1.5.0_12 Java HotSpot(TM) Client VM
    Why java still uses my latest jre lib to run my application?
    Edited by: wei000 on May 22, 2009 5:32 AM

  • Connecting to web server

    I am hoping someone here can help with some suggestions...
    I am the back-up web master for my office. I connect to the web server using afp and the standard network connections using a Macbook Pro (all passwords stored in keychain). All worked well until today. I can no longer connect. I can ping the server, but I can't log in. The error I get says "cannot complete the operation because some data in "afp://XXX.XXX.XX.X" could not be read or written." Sorry for the Xs, but I didn't want to give away our web server's IP address.
    The regular web master uses a PC. He can connect to web server and ever make changes to the page, but he cannot create a new file or folder or delete a file or folder.
    To me it seems like a network privileges issue. Any other suggestions?

    I can't download the files and then use a text editor to make the changes, because there are too many of them!
    Even if I do that, the process of uploading them back to the server is going to be a headache.
    The files I'm talking about are footers of different sub sections of a website, so they are in different places/directories.
    I cant use a master footer for all the sub sections. They are very similiar but not exactly the same.
    and also there might be a problem with connecting, I use FrontPage to edit the website and thats how I access the server.
    I tried to use normal windows explorer to connect via FTP that did not work! any ideas?
    Thanks,

Maybe you are looking for

  • Is it possible to insert multiples markings in a DateNavigator ?

    Hi Experts ! I'm currently creating a DateNavigator, and the person for who I works would like to have 5 differents markings in one DateNavigator. But in the Outline view, I have already one marking in the DateNavigator, and I can't add another with

  • Payment terms requirement

    Hi All, plz have look on my clent requirement In Account payables. Regarding the Payment terms for different vendors following are the scenarios:- · For Material o 25% payment advance against corporate guarantee, 65% with in 30 days after receipt of

  • Adding a "revert to defaults" button

    jpdk 1,3 I'd like to add a "revert to defaults" button on my customize page. When I use PortletRendererUtil.renderCustomizeFormHeader(pr, out, null, "action", null, null) Only the 'apply' and 'ok' buttons are rendered. Do I have to do it manually or

  • LocateN doesn't work on OBIEE 10.1.3.3.0

    Hello all, I think the LocateN function doesn't work. Because the syntax for that is LocateN(expr1, expr2, integer) And it just doesn't work. The syntax for locate is Locate(expr1, expr2) So when I use the locate function and put a N behind the locat

  • Displaying the supply source on Product view "/sapapo/rrp3".

    Hi experts, I want to display production version (supply source) on prduct view. someone, do you know the solution? Thanks in advance. satoru