Remote website question

I have a website through 1 and 1 Internet. I have used
Frontpage forever as it's very easy to edit my page. They are
discontinuing support of this format. I would like to be able to
edit my site without having to load all the info on my website to a
local file...which will take up tons of space. Does Dreamweaver
have this capability? From what I have seen, it does not. Any
suggestions? Frontpage was so unbelieveably easy and I cannot
imagine there not something else out there. HELP!!!!

>>They are discontinuing support of this format
No such thing. They are probably dropping support for FP
extensions.
> I would like to be able to edit my site without having
to load all the
> info on
> my website to a local file...which will take up tons of
space. Does
> Dreamweaver
> have this capability?
Sure. Silly idea IMO though, having no local copy of your
site. Besides
editing all site files online will be slow and cumbersome.
Tons of space?
Please! Harddrives are almost free. Get real.
Walt
"Chaoskid38" <[email protected]> wrote in
message
news:frk5pc$lv3$[email protected]..
>I have a website through 1 and 1 Internet. I have used
Frontpage forever as
> it's very easy to edit my page. They are discontinuing
support of this
> format.
> I would like to be able to edit my site without having
to load all the
> info on
> my website to a local file...which will take up tons of
space. Does
> Dreamweaver
> have this capability? From what I have seen, it does
not. Any suggestions?
> Frontpage was so unbelieveably easy and I cannot imagine
there not
> something
> else out there. HELP!!!!
>

Similar Messages

  • Dreamweaver Help | Edit an existing remote website

    This question was posted in response to the following article: http://helpx.adobe.com/dreamweaver/using/edit-existing-remote-website.html

    There is a program called Beyond Compare that will perform a comparison of local and remote folders via FTP, but it works on Windows only. I don't know if there's a similar program available for Mac OS X.
    One way to find the number of items in the public_html folder on the remote server is to log into the site's control panel, and see if you can find the number of items listed there.
    Alternatively, select Remote Server in the Dreamweaver Files panel, right-click the public_html folder, and select Synchronize from the context menu. In the dialog box that opens, select Entire [Site name] Site for Synchronize, and set Direction to "Get newer files from remote". Then click Preview.
    Because you have such a large number of files, it will take Dreamweaver a long time to get all the information. In fact, you might find it just as quick to create a new site definition in a new folder, and attempt to download the site again.

  • Serious bug in Weblogic when connecting to a remote website through a local proxy server (proxyHost, proxyPort)

    Hi there,
    It seems that there is a serious problem with any version of Weblogic when you
    have to pass through a local proxy server to connect a remote website.
    Whenever I am trying to run the jsp program below either with Weblogic 7.0 SP2
    or even with Weblogic 8.1, I get the following exception :
    An error occured: Tried all: '1' addresses, but could not connect over HTTP to
    server: 'www.sun.com', port: '80'
    When I run the same program outside Weblogic, it works fine. Other people have
    already reported the same problem either in this newsgroup or on Internet forums,
    and up to now, the problem is not fixed yet.
    In fact, Weblogic seems to block when it performs the connect() method to the
    proxy, my jsp program hangs a few minutes before returning the error message shown
    above.
    If anyboby can tells me how this problem can be solved (or maybe via a workaround)
    do not hesitate to keep me informed, thanks in advance.
    Please find below my code :
    public class ProxyDownload extends HttpServlet
    private static final String CONTENT_TYPE = "text/html";
    //Initialize global variables
    public void init() throws ServletException
    public String bufferedReaderToString (BufferedReader br) throws IOException
    String xml = "";
    String line = null;
    while ( (line = br.readLine()) != null)
    xml += line;
    return xml;
    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head><title>Proxy Download</title></head>");
    out.println("<body bgcolor=\"#c0c0c0\">");
    try{
    // Set proxy stuff
    System.getProperties().put( "http.proxySet", "true");
    System.getProperties().put( "http.proxyHost", "ip_address" );
    System.getProperties().put( "http.proxyPort", "port");
    String password = "user:pass";
    sun.misc.BASE64Encoder objEncoder = new sun.misc.BASE64Encoder();
    String code = objEncoder.encode(password.getBytes());
    // Find the file name to save
    String file = null;
    // Open a connection
    URL url = new URL("http://www.sun.com");
    URLConnection connection = url.openConnection();
    // Set up the connection so it knows you are sending
    // proxy user information
    connection.setRequestProperty( "Proxy-Authorization", "basic " + code);
    connection.connect();
    // Set up the connection so you can do read and writes
    connection.setDoInput( true );
    BufferedReader inBuff = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String str = bufferedReaderToString(inBuff);
    out.println("<BR>" + str);
    catch(Exception e){
    out.println("<BR> An error occured: " + e.getMessage());
    out.println("</body></html>");
    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    doGet(request, response);
    //Clean up resources
    public void destroy()

    Hello,
    The way to set the HTTP connection using a proxy server changed (from
    using the system property
    weblogic.webservice.transport.http.proxy.host/port)[1] in WLS 7.x to the
    standard JDK 1.4 system properties [2] in WLS 8.1.
    I would recommend opening a dialog with our outstanding support team [3]
    to resolve this issue.
    Thanks,
    Bruce
    [1]
    http://edocs.bea.com/wls/docs70/webserv/client.html#1058615
    [2]
    http://java.sun.com/j2se/1.4/docs/guide/net/properties.html
    [3]
    http://support.bea.com
    [email protected]
    Yves Hardy wrote:
    >
    Hi there,
    It seems that there is a serious problem with any version of Weblogic when you
    have to pass through a local proxy server to connect a remote website.
    Whenever I am trying to run the jsp program below either with Weblogic 7.0 SP2
    or even with Weblogic 8.1, I get the following exception :
    An error occured: Tried all: '1' addresses, but could not connect over HTTP to
    server: 'www.sun.com', port: '80'
    When I run the same program outside Weblogic, it works fine. Other people have
    already reported the same problem either in this newsgroup or on Internet forums,
    and up to now, the problem is not fixed yet.
    In fact, Weblogic seems to block when it performs the connect() method to the
    proxy, my jsp program hangs a few minutes before returning the error message shown
    above.
    If anyboby can tells me how this problem can be solved (or maybe via a workaround)
    do not hesitate to keep me informed, thanks in advance.
    Please find below my code :
    public class ProxyDownload extends HttpServlet
    private static final String CONTENT_TYPE = "text/html";
    //Initialize global variables
    public void init() throws ServletException
    public String bufferedReaderToString (BufferedReader br) throws IOException
    String xml = "";
    String line = null;
    while ( (line = br.readLine()) != null)
    xml += line;
    return xml;
    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head><title>Proxy Download</title></head>");
    out.println("<body bgcolor=\"#c0c0c0\">");
    try{
    // Set proxy stuff
    System.getProperties().put( "http.proxySet", "true");
    System.getProperties().put( "http.proxyHost", "ip_address" );
    System.getProperties().put( "http.proxyPort", "port");
    String password = "user:pass";
    sun.misc.BASE64Encoder objEncoder = new sun.misc.BASE64Encoder();
    String code = objEncoder.encode(password.getBytes());
    // Find the file name to save
    String file = null;
    // Open a connection
    URL url = new URL("http://www.sun.com");
    URLConnection connection = url.openConnection();
    // Set up the connection so it knows you are sending
    // proxy user information
    connection.setRequestProperty( "Proxy-Authorization", "basic " + code);
    connection.connect();
    // Set up the connection so you can do read and writes
    connection.setDoInput( true );
    BufferedReader inBuff = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String str = bufferedReaderToString(inBuff);
    out.println("<BR>" + str);
    catch(Exception e){
    out.println("<BR> An error occured: " + e.getMessage());
    out.println("</body></html>");
    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    doGet(request, response);
    //Clean up resources
    public void destroy()

  • Set up dynamic, remote website on local environment for development

    I am not too experienced with dreamweaver (the extent of my knowledge is youtube tutorials and self taught).  I have inherited a website on a remote server that I need to do some major editing.  It is using MySQL, php, html, and css.  I have already downloaded the entire site for local development.  However, the php will not function without a server.  Would anyone kindly provide some resources on how to set up this site up with MAMP for local development (or any alternative ways to develop inherited websites like this)?  I know how to set up MAMP from scratch, but not with an already developed, remote website that needs to be edited/redeveloped.
    It seems like if I redirect the server to a local one, it will mess up a lot of code when I attempt to upload it back to the remote server.  There has to be a more convenient/integrated way to do this than recoding the database access every time I switch from local to remote.....

    You'll still need to pull everything onto the testing server, if it's going to be different from your remote server. Here's a good resource for using testing servers with DW...
    Setting up a local testing server in Dreamweaver CS5 | Adobe Developer Connection
    It might not match your exact version, but it should be followable for the most part.

  • SBS 2011 Remote Website Not Available in IE

    I can't get to my /remote website from outside my LAN using IE. I can get to it from firefox and am able to log in with no problems but am not able to RDP into any resources on my domain.
    I am able to log into /RDWeb and /OWA using IE from outside our network...
    I thought the issue might have been security settings in IE so I've pointed my IE to another client's SBS 2011 Server and am able to open the site. Does anyone now what I can do to troubleshoot this issue?
    Thanks,
    Dave

    Hello Larry, I never fail to post in the wrong thread... Thanks for your reply.
    I did not add a DNS entry for remote.mydomain.com on our internet DNS. I am accessing the site the same way I get to our /owa site. https://mail.mydomain.com/remote
    When browsing to the URL in IE nothing comes up, it acts as if the site does not exist. The odd part was that I can use Firefox to browse to the site, log in, and view resources on our domain. RDP connections to any PC or Server in my domain always fails
    in Firefox though.
    I've been trying to log in my site for days and got the same result every time using IE. I tried it one more time last night so I could report exactly what IE Showed but I was finally able to log in using IE...
    Last night before IE connected to the /remote site I went into the session state of the /Remote site in IIS and changed it from In Process to Server State... I did this just to see if I could get IE to behave in a different manner than the blank page...
    RWA threw errors when trying to log in from outside the network using IE, I changed it back to In Process and at that point IE allowed me to log in and I was able to use RDP to log into the SBS2011 Server.
    I thought I could come back to it this morning and test more connections but now I can log into /Remote using IE but am not able to RDP into any resource in the domain...
    I'm at a complete loss so any help you or anyone else could offer is greatly appreciated.
    Regards,
    Dave

  • Getting user-supplied data for links to remote website

    Hi,
    I want to certify a enterprise portal business package that should be fairly easy. This is my first experience using SAP or doing an integration and this forum and the documentation is my only access to information. There are no experts here...yet.
    Anyway, the only thing I need to do for the portal integration is to display some links to our .NET web application. When a user selects one of the links, the associated web page should display in the right pane of the portal.
    My questions are this:
    Is displaying the webpage in the right pane of the portal OK? Are there any issues I need to consider when displaying the webpage content, such as the look of the page? (I would like to display the page exactly as it is displayed if one were to use a web browser to view it if that is OK).
    The .NET application runs on IIS. Is it permitted to run this on the same machine as the SAP server?
    What would be the best technique to get information about where my .NET web application is running, such as host and port number? When one installs the business package, they must either be asked to enter the location of the remote web server, or maybe the information can be retrieved from a configuration file. (?)
    Lastly, is it OK to create the links using the URL iView or should I use Visual Studio to create the links then create a PAR file?
    Thank you very much for your help

    Hi,
    If I undestand correctly you are trying for PBNW (Powered by Netweaver certification ).
    In that case they don't accept url iViews.
    Peronalisation and SSO are pre requiste for the certification .So, you may have to develop .Net iviews for your application.
    Thanks,
    Abdul raheem S

  • TV Remote Navigation Question

    Hi,
    I've made a DVD and everything seems to be working fine except that I can't use the TV's DVD Player's remote to navigate to all of the scenes.
    I made a movie and have 12 scenes. Scenes 1-6 show on one "page," and arrows point to the second page which contains scenes 7 through 12. I can click on the arrows with the mouse on the computer, but I can't figure out how to use the remote to alternate back and forth between the page that has scenes 1-6 and the page that has scenes 7-12. I am using the theme called "Center Stage."
    Any help appreciated.
    Patrick

    I think I'd lose my mind long before this project was ever finished if I used the powerbook.
    I couldn't agree more. But here's the thing... Unless you know exactly what you are doing within DVDSP, then I'm not one to recommend doing so at a moments notice, nor in terms of a crash course. There is no such thing when it comes to apple's FCS 2.
    It takes weeks (if not months) to learn to use FCP, and DVDSP effectively. Nevertheless, if this is the approach you wish to take then post this same question to Apple's Dvdsp forum also so they can confirm the following recommendations.
    I'm at a loss to understand why DVDSP3 won't also work on your G5. It should also work on the G4, even though laptops / portables are not my personal choice when working within this particular app.
    In terms of additional real estate /work area for DVDSP3, I suggest you use an external widescreen or LCD Monitor .... perhaps the one you have currently connected to your G5 assuming it's a power mac and not an iMac. If it is an iMac and you prefer to use the laptop instead then you'd do well to also have at least one other external fw HD, more SDRam (if it's not currently maxed out), and an external WS /LCD.
    To add sub menus look at the Help Menu within iDvd'08 and I quote:
    "Creating additional DVD menus
    A menu can only hold 12 buttons, so if your DVD requires more than 12 buttons, you can create submenus to hold them.
    You can use submenus to organize your DVD into sections. For example, if you want viewers to be able to view scenes, extras, additional movies, or slideshows, you can create submenus to hold buttons that link to them.
    To add a submenu:
    Click the Add button (shown above) and choose Add Submenu from the pop-up menu.
    Click the placeholder text for the new button and type a label for the button.
    Double-click the new button to open the new menu.
    A Back button that returns to the previous menu is added automatically. You can edit this menu just as you can any other menu."
    Lastly, I'd also need to know what kind of graphics card you currently have in the G4 since that too will be a deciding factor in which mac system is a better choice.

  • Remote pojo question.

    I have delegates which are calling remote session beans that return ValueObjects. The remote client then may modify these value objects and return them later to the application via the an appropriate session bean. I would then like to save any changes that have been made.
    I expect the Value objects to be POJOs, and not have ties to Toplink. However, when return these VOs, i get a class not found exception:
    Caused by: java.lang.ClassNotFoundException: oracle.toplink.indirection.IndirectList (no security manager: RMI class loader disabled)
    I don't understand why the client has to know that I am using toplink to handle persistence for these POJOs.
    Am I using an incorrect session or something?
    Here is my code to get the session:
    Project proj = new TLCeleres();
    sServer = proj.createServerSession();
    sServer.login("pago_temp", "pago_temp");
    Session session = sServer.acquireClientSession();
    Here is my code to populate the vector of VOs which are returned by the session bean:
    ReadAllQuery query= new ReadAllQuery();
                   query.setReferenceClass(QueryBarFacilityValue.class);
                   query.setSelectionCriteria(new ExpressionBuilder().get("id").equal(queryBarId));
                   query.addJoinedAttribute("Facility");
                   Vector results= (Vector)getSession().executeQuery(query);
                   facilities= new Vector(results.size());
                   Iterator iter= results.iterator();
                   while (iter.hasNext())
                        facilities.add(((QueryBarFacilityValue)iter.next()).getFacility());
    Thanks in advance,
    craig

    Craig,
    The client does not need to know anything about TopLink. The issue is that you have transparent indirection enabled on your collection relationship mapping(s).
    Indirection is an excellent performance enhancement on the server side but it is stateful and does not serialize to the client easily.
    Check you mappings and ensure that indirection is disabled for the relationship(s) in question.
    Doug

  • AD Connector Remote Manager Question

    all,
    trying to install MSFT AD BASE 91170 connector on OIM/OAM 11.1.1.3 environment. Finished the following steps thus far:
    1. created OIM/OAM/AD server environments
    2. Created OIMGroup and admin user account association
    3. Imported the connector
    4. Update ADITResource
    5. Copied ldapbp.jar and ran uploadjars.sh script
    6. Updated search base in Group Lookup Recon and Organization Lookup Recon jobs
    7. I was able to provision a user
    I have two questions:
    1. section 2.2.2.1 (on page 2-14 connector indicates that i need to run installation of remote manager on the AD server). Is this step and the subsequent steps required to be configured. What else do i need to run as part of installation. If the rest of the steps are optional in what cases do they need to be created?
    2. My design console Lookup.ADReconciliation.GroupLookup does not have any values, it appears recon did not work in this case. What could i be doing wrong, i can add configuration details if needed. - I have done this before but not sure what i missed this time.
    Thanks in advance,
    Prasad.
    Edited by: Prasad on Oct 25, 2011 11:48 AM

    Sagar,
    I ran the group lookup recon task several times yesterday. OIM did not populate the lookup. Today i change the recon type from Refresh to Update and changed it back to Refresh and it worked with few exceptions like the one below:
    Overall now the records are there, but it is unclear why the original task executions did not pull anything. I did not see any other exception either yesterday.
    <Insert failed.><Oct 26, 2011 10:56:27 AM EDT> <Error> <OIMCP.ADCS> <BEA-000000> <Description : Insert failed.>
    <Oct 26, 2011 10:56:27 AM EDT> <Error> <OIMCP.ADCS> <BEA-000000> <Thor.API.Exceptions.tcAPIException: Insert failed.
    at com.thortech.xl.ejb.beansimpl.tcLookupOperationsBean.addLookupValue(tcLookupOperationsBean.java:1357)
    at Thor.API.Operations.tcLookupOperationsIntfEJB.addLookupValuex(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1896.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethod

  • .mac website question

    I know this is off topic, but I want to build a website in iweb. I know you have to use .mac to publish it very easy. IS there a way to do it with out it? Also do you have to publish it to the .mac site, or can you publish it to your own domain? Ya know. like www.whatever.com instead of the .mac blah blah blah?
    Thanks
    rick

    Hi Rick,
    Yes, it is possible. For a detailed explanation Tom Gewecke (a frequent contributor) has prepared a User Tip on just such a procedure. You can view it here:
    http://homepage.mac.com/thgewecke/iwebserver.html
    If you have further iWeb related questions it would be best if you post them in the iWeb forum:
    http://discussions.apple.com/forum.jspa?forumID=1108
    RD
    EDIT: Further iWeb Tips by Tom can also be seen here:
    http://web.mac.com/thgewecke/iWeb/1/Tips.html

  • ELOM Remote Console Scriptability and Remote Storage Questions

    Hello,
    I have a few questions reguarding scriptability of the Java Web Start eLOM Remote Console and the use of this application for redirecting remote storage.
    Setup:
    - x6250s in 6048 chasis
    - x6250 Bios version 1ADPI040 & SP version 4.0.52
    - Sun eLOM Remote Console version 2.53.05
    - CentOS 5.2
    Questions:
    - I'd like to write a wrapper script that would allow me to start a remote console on the Linux command line. Then, a command line like "myjavaconsole bladexyz" would give me a java remote KVM without me having to click through the web interface. Is something like this possible? Hints?
    - The [Sun Blade X6250 Server Module Embedded Lights Out Manager Administration Guide|http://docs.sun.com/source/820-1253-14/remote_con.html#0_66586] says that you can use the eLOM Remote Console GUI to redirect storage devices including CD/DVD drives, Flash, DVD-ROM or diskette disk drives, hard drives, or NFS. These seem very instersting options, but I've only been able to sucessfully redirect an ISO image. Are these other options really possible?
    - Is it possible to script the mounting/unmounting of remote ISO images or other storage? I would love to be able to control blade boot processes by having this functionality.
    Thank you,
    -Matthew

    It seems the problem is related somehow to the setup of my Windows box. I did try a couple of other Windows boxes with the same result, but everything worked perfectly when using a Linux/ubuntu system to run the remote console. The blade saw the CD, booted from it, and is now happily running ESX Server.
    The wierd thing is, the ubuntu system was running inside VMWare Workstation on the same Windows PC that has the problems, and was accessing the same physical CD drive. Sometimes you have to think out of the box, or in this case into a box inside the box:-)
    I guess if these things we all straightforward I'd be out of a job, so I shouldn't complain!!
    Steve.

  • Server 2012 R2 Essentials, Remote Website not accessiable, however the //CONNECT is

    Hi there, 
    Question for someone. 
    I don't know when this started.  but after a recent reboot of the server, I noticed that about 3+ days that I'm not able to access the remote.yourdomain.com from my server. 
    So did a quick reboot and I was able to access.  Assuming problem fixed right.   Nope.  3+ days after same issue. 
    When I try accessing the server from localhost/remote.   It doesn't work either, but after a reboot it does.  However, I can access //SERVER/Connnect fine from both localhost/connect, or //servername/connect. 
    When I try to browser, all I get is a Spinning wheel in all browsers, and then nothing. No error code nothing. 
    I've looked at all services, all running fine, event took a snap shot of the service before and after a reboot. None of the services are stopped
    Look at the Application Pools, all running, did a restart of them all to see if that was still didn't' fix the issue. 
    Tried a rebuild or Fix via the small business wizard. 
    Tried access via IP and server name. 
    Tried accessing outside the network same issue. 
    The only thing that does is a reboot. 
    Any ideas on where I should look?  It was working fine, but when it stopped working I don't know. 

    Hi Tech_Kevin,
    Did you remember which operation had been done recently? For examples: install updates or install third-party applications.
    Please use the
    Configuration Troubleshooter tool that Robert created to check IIS and Certificate. Any find?
    -->When I try to browser, all I get is a Spinning wheel in all browsers, and then nothing. No error code nothing.
    Would you please provide a screenshot of the issue? In addition, please add the RWA link in
    Compatibility View and Trusted site in IE, then check if this issue still exist.
    If any update, please feel free to let us know.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Multiple Websites Question

    I am a first time IWeb user. I apologize for the elementary question. I have created two unpublished websites - each with multiple webpages. Each time I publish the first website to a folder to preview, the other second website automatically publishes there as well.
    When it comes time to publish to the web, will both my websites publish at once, or can I just designate the first one?
    Again, I apologize for the lame question.

    It all or nothing.
    When publishing to dotmac you won't notice, but publishing to a folder is ALL.
    When you publish to a folder and then upload it to a server, you may in the future just upload the page with the changes.
    The structure of a iWeb site is rather simple. Each page has it's own folder with the content of that page. You have to remember what you changed.
    When you add movies then you have to check the media folder too.
    Search this forum for [multiple Sites|http://discussions.apple.com/search.jspa?threadID=&q=multiple+sites&objID =f1193&dateRange=last90days&userID=&numResults=15&rankBy=10001]

  • RV042 remote admin question

    I'm hoping this question has a simple answer that i'm overlooking.  One of our customers has to abide with some regulations and a security company has ran a scan on their network and reported vulnerabilities.  One of those vulnerabilities is in regards to port 443.  When going to their address remotely (i.e. https://dynamicname.dyndns.com), you are prompted for a login even though we specifically defined a port for remote admin (i.e. https://dynamicname.dyndns.com:XXXX).  I would think since we defined the port for remote admin then 443 wouldn't be able to access the router.  Is there a way to fix this?  We tried blocking just port 443 but that locked us out of the router for some reason.  Any feedback is greatly appreciated.
    Thanks 

    If port 443 is not used, you could consider forwarding port 443 to a LAN IP that is not used as a workaround to pass the security scan.
    Which firmware are you using on RV042?      

  • SCCM Remote SQL Question

    Planning a design for SCCM. I have one datacenter, where Primary server, DP, MP, will be located at. Question I have is, does it make sense to have SQL co-located or can I put on dedicated SQL server for our DBA group to handle?

    In my opinion there are very few reasons to use remote SQL.
    http://www.gerryhampsoncm.blogspot.ie/2013/10/configmgr-sql-some-tips.html
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

Maybe you are looking for

  • Solaris Download link not working

    Hi ! The download lnk for oracle 10g solaris x86 is not wirking can sombody get me a link where i can download this packages Solaris 8 x86 is not available for download in sun's official site where can i get it . Thanks and regare

  • WSAD : loading properties file from EBJ project

    Hi, I am trying to load properties file contains database parameters into my EJB project. I am using WSAD as IDE tool can you please help me with following. 1. where to place the .properties file physically ? 2.how to load the file to my EJB/DAO clas

  • Basic project management question

    HI, In the "Projects and Events" top level of the Libraries pane, there is a pre made "folder" called Projects.  The icon is a purple square with a star. This is identical to all the others which I assume are Events. I I click on an "Event" all the c

  • JspSmartUpload Copy and Paste HTML ' and " null Error

    I have this trouble with SmartUpload... my system has no problem with inputtin text information manually with the ' or " character, but if i copy and paste some text from a website page with the ' or " characters, the SmartUpload will prompt with the

  • Can I sync iCal with my Samsung 740 phone?

    I recently bought a new phone - Samsung 740. I would prefer not to buy a data plan but just sync my calendar to my MacBook Pro. When I ask if this can be done at the Verizon store, all I get are blank looks. They sell a USB cable but have no other ad