Giving Template Access to Web Site Authors

Is there a way to allow Dreamweaver users who have sites
within our main to have access to a root folder that includes
templates for the site? This template has server side includes.
Thanks in advance!
Rod

Templates are LOCAL things, so each one of them could have
their own
Templates folder in their local site.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"dreamincode" <[email protected]> wrote in
message
news:eh8aq0$esl$[email protected]..
> Is there a way to allow Dreamweaver users who have sites
within our main
> to
> have access to a root folder that includes templates for
the site? This
> template has server side includes.
>
> Thanks in advance!
> Rod
>

Similar Messages

  • Since I updated my IPad software to iOS 5.0.1 from 5.0, I cannot access some web sites. Hoy can I go back?

    Since I updated my IPad software to iOS 5.0.1 from 5.0, I cannot access some web sites. How can I go back?

    Sorry, you cannot downgrade iOS software.
    First thing to try is a reboot of your iPad. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appear. Let go of the buttons and let the iPad restart. See if that fixes your problem.

  • I cannot access common web site like Paypal. I get an "Untrusted Connection" screen. I have accessed Paypal in the past. This also happens with Capital One.

    Just in the past week, when I try to access many web sites, including PayPal and Capital One, I get a Untrusted Connection screen and it prevents me from entering these sites.

    hello ra12rick, first please make sure that the date, time & timezone are set correctly on your system. if this doesn't solve the issue (or it is already set properly), a possible solution depends on different factors:
    * what is the '''error code''' shown under ''technical details'' on the error page?
    in case the error code equals ''sec_error_unknown_issuer'', please attempt to add an exception on the bottom of the error page & inspect the certificate (see the screenshot attached for instructions):
    * which '''issuer information''' does the certificate contain?
    thank you!

  • What event handling code do I need to access a web site ?

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

  • Pc users cannot access my web site

    pc users trying to access my web site that I designed on iweb cannot play my podcast or my music samples. Why????
    Powerbook G4 10.4   Mac OS X (10.4.7)  

    That's because your QT clips are probably encoded with the latest video codec H.264. This is only available with QT 7 and is the new default for iLife applications. In order for your PC friends to see everything, they must download QuickTime 7.
    Refer them here... http://www.quicktime.com

  • Safari Does Not Allow Access to Web Sites With Wildcard X.509 Certificates

    I'm really getting irritated with the Safari browser in OSX Mavericks.  One of the more irritating features involves the inability to access web sites that use improperly constructed wildcard X509 certificates.  By improperly constructed, I mean that the X.509 certificate does not contain the host name of the system being accessed in the Subject Alternate Name list.
    Earlier versions of Safari would, at least, allow me to examine the X.509 certificate and determine whether I wanted to proceed with the connection.  The current version of Safari doesn't provide that option.  It simply displays a screen stating that it can't establish a secure connection to the web site.  If you actually have a need to access the web site, you need to use a web browser like Firefox.
    What's really irritating about this is that Safari had improved to the point where it was reliable enough to be used as the default browser.
    Is there a Safari.plist setting that will allow me to change the behavior of Safari when it encounters an improperly constructed X.509 certificate and provide me the opportunity to examine the certificate to decide whether to proceed or not?

    Hi
    Have a look in your Networks panel in System Preferences. Click on the Advanced button, then Proxies. There may be an errant proxy present blocking the site load.

  • Managed account. trying to get safari to access ALL web sites

    I have a managed account for someone on my computer. Everything is working well except when this person goes to get their web mail and there is a link in the message to a web site. When the person clicks on the web site in the message, sarfari asks for administrative permisson in order to access the web site.
    Is there any way to give a person with a managed account ALL access to web sites without having the admin clearing it for them?

    OK, I am going to answer my own question.
    I put FireFox on the desktop of the managed account and now that person has the ability to go online and download files from their web mail as well as view it once it is downloaded. End of problem. Now, I have to get this person off of my computer all the time LOL.

  • Can only access one web site

    I can only access one web site . www.cisco.com. I am connected to the internet via a lynksys DSL Router, I am using dhcp and NAT from the Lynksys note:works fine for 3 other windows based pc's.
    when I try to connect to any other site the page Hangs during load and neve displays.
    I can ping all of the web sites that do not come up
    I am using a SunBlade 100 and did a new install. I tried the install with webstart and had the same result during the install. again I can only open sucessfully www.cisco.com.

    Hello!
    I am getting this error, but the above fix does not solve the issue, however I do know what has caused it.
    I have an edmx file in a WCF webservice which feeds a silverlight app.  The edmx is quite complex and a bit fragile, but was working fine up until I introduced our Industry Codes view into the model.  The view is basically { ID, ParentID, Name, ... }.  In my model I have created an association to itself which describes Children(*)/Parent(0/1) so I have a nice and tidy hierarchical structure.  The edmx and the service build without any errors - hurrah!  However, when I update the service reference I then get the below error (and a whole load of others as none of the webservice objects exist anymore):
    Error 21 Custom tool error: Failed to generate code for the service reference 'WCF_ContactAdmin'.  Please check other error and warning messages for details. X:\2008-054 ContactAdmin_Silverlight\Contact2_Admin_Silverlight\Service References\WCF_ContactAdmin\Reference.svcmap 1 1 Contact2_Admin_Silverlight
    When I try the fix mentioned in the link above this error disappears, but then so do all the objects in the datamodel, so I cannot continue from there.
    Having the hierarchical data objects defined in the EDM will make like so much easier in future, any help will be greatly appreciated, thank you!!
    Tim
    Web Developer at Terrapinn

  • Can't access some web sites with safari

    Can't access financial web site since time before last of safari update. Any help?

    In my original post, not today's, I had said I was having the issues on the Mini, running OSX 10.6.8 and Safari v.5.1.5 for my bank's pill pay. I should have been more specific as to which machine and OSX Safari browser I'm having the T-Mobile problem with. My mistake.
    It is on both the MacMini and now the Air too. A moment ago, I was able to log in to my.t-mobile.com on the Air, but after putting into my Bookmarks folder, I can't do it anymore. The Log in button comes up greyed out instead of green.
    I'm also still having trouble with my bank's bill pay section on both computers too.
    I wonder if it's related to the saving of the log in info or putting in the Bookmark Folder?

  • Several times while attemping to access new web sites it said that I needed Adobe Flash and would not let me access the site.  What is the answer?

    Seeveral times while atttempting to access various web sites I get the message can not access because I do not have Adobe Flash.

    Email the webmaster of the sites, tell him or her to get into the 21st century and stop using Flash.

  • What is missing when I get a blank white screen when I try to Access some web sites?

    On some web sites, I get a blank white screen when I try to access them.

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to enter a secure address in security so i can have access to web site

    I used to be able to enter an address from a secure website and be able to access when I had internet explorer and with firefox I dont know where to enter address so I can access the secured we site.

    Firefox doesn't have security zones like Internet Explorer. There's no Trusted Sites list to add sites to. Normally, web sites simply work, whether they're secure or not.
    If secure websites don't load, see the following article.
    * [[Websites don't load - troubleshoot and fix error messages]]
    If the website does load but you're having some other problem with it, see the following article.
    * [[Websites look wrong or appear differently than they should]]
    If neither of those answer your question, please post a link to the site and or a description of what doesn't work, or whatever error message is displayed.

  • Internal 500 error while accessing TFS web site

    Hi all,
    I have installed & configured Team Foundation Server 2013 & SharePoint Foundation 2013 in my environment. I am facing an issue
    whenever I try to open the TFS site like "https://nc1vwstfs.ranchi.com/tfs". I am getting "HTTP 500 Internal Server error". the same site can be accessed from another system without any error. In order to look for details error message
    I turned off the IE settings "Show friendly error message" from internet options, advanced option. After that I got the below error which stated the actual reason.
    The same site is accessible from another system without any error. But I am getting the error from the same system in which I have installed the TFS server itself. Its a little bit strange to me. I am clueless.
    Could you please help me in resolving this issue. Any pointer to this would be highly appreciated.
    Thanks.

    Thanks for reply.
    I am using separate servers for Application Tier & Data Tier. I am able to access the tfs web site from visual studio too.
    The issue in my case was with the service account password which was not updated in one of the application tier nodes. In my environment I have two application tier nodes tfs1 & tfs2 and both are configured as NLB (network load balanced) they both are
    using the same Data Tier. The purpose of creating NLB is to distribute the load between app  tiers. I had updated the service account password of tfs in one node but did not update the password in another node, causing the tfs web site to fail to launch
    sometime. When I updated the service account credentials in both the app tiers then the above issue got resolved. Now the tfs web site is opening without this error.
    Thanks.

  • How to access old Web sites that exist in iDisk Sites folder

    I have old personal Web sites that still appear to exist on my iDisk, under Home>Sites. But if I can't remember their URL, how do I access them? It seems that if I can see them on iDisk, there ought to be some sort of option to access them or to find the URL. No matter how much I poke around on iDisk, I can't find any way to access these old Web pages. Any idea?
    I can download the parts of the site, and I guess I could re-assemble them, but why bother, if they are already set up and sitting on iDisk?

    Terry Plowman wrote:
    I have old personal Web sites that still appear to exist on my iDisk, under Home>Sites. But if I can't remember their URL, how do I access them? It seems that if I can see them on iDisk, there ought to be some sort of option to access them or to find the URL. No matter how much I poke around on iDisk, I can't find any way to access these old Web pages. Any idea?
    I can download the parts of the site, and I guess I could re-assemble them, but why bother, if they are already set up and sitting on iDisk?
    Try http//web.mac/com/<yourdot_mac_id>/<folder_insites>

  • Solaris 10 11/06 - Cannot access external web sites from server

    Hi,
    I am relatively new with Solaris so I hope this is something simple. I just installed Solaris 10 11/06 with the `Secure By Default` option.
    From the command line I can use dig and nslookup to resolve external web sites fine, but if I try to use the update conection manager (desktop), mozilla browser (desktop), or pkg-get (command line) it fails to resolve the external sites. I have a valid resolv.conf file and I have named installed and running.
    It is on a LAN with other servers that have no problems with external access. I am running as root in all instances, so is there some permissions issue I am missing with this install/release?
    I don't want to open up the install more than I have to.
    Thanks,

    Hi again,
    I figured it out. The nsswitch.conf file was not referencing dns as part of the `hosts` and ipnodes` resolution methods. Once I added this and restarted named it worked.
    group: files
    hosts: files dns
    ipnodes: files dns
    networks: files
    -----------------------

Maybe you are looking for

  • What is the difference between "bootable" and "restorable?"

    I am using Carbon Copy Cloner to backup my iMac hard drive. I realize that I don't really know what "bootable" means and how it differs from "restorable" - - can you please clarify? 1.  If a backup on an external drive is bootable, does that mean you

  • Massive Photo Gallery Widget looks strange

    Hi guys I am working with a new widget called "Massive Photo Gallery Widget" and it should look like this: http://musegrid-massive-photo-gallery.businesscatalyst.com/ but on my website it looks like this: Bildergallerie I think it looks a little bit

  • Error msg: Sending of password for user did not succeed. Mail server responded: Not enough disk space - what's the deal?

    I've been checking my email via webmail for a week and am back in the office today. Fired up Thunderbird, expecting it to pick up all my email, but it gets nothing and tells me- Sending of password for user [email protected] did not succeed. Mail ser

  • JSP Debbuging -Error: 'class' or 'interface' expected-

    Hi, Does anybody know why am I getting the following error when trying to either debug or run a JSP? Error: 'class' or 'interface' expected This happens with JDeveloper 9.0.2.829 It was running just OK, when running from the Navigator Panel (Right cl

  • D-Link Login Failure

    Hi all. I am convinced someone in my neighborhood has compromised my current WEP encryption for my D-Link AirPlus Extreme G wireless network. I'd like to switch to WPA, and I know how to do it. The problem is that whenever I try to access 192.168.1.1