Site Definition Via Flash?

Hello Flash People of the Universe,
I'm a multimedia design looking for a technique to create an
index SWF page in Flash.
I have heard it through the grapevine that a 100% Flash-based
homepage will load much, much faster than a HTML index page
calling for the SWF file.
Is this a myth or true? If it is true, how can I create an
index SWF page in flash. Should I use cold Fusion ect..
Please help with this concept.

ColdAir;
I also believe your grapevine info is nonsense, however the
webserver's
configuration determines what files serve as an index or home
page. Although
I would not do it because control provided via embedding the
swf would be
lost, I expect you would just export an index swf file, and
alter the server
config file accordingly... -Tom Unger

Similar Messages

  • Site Definition in Flash

    Tech People,
    I have designed a home page that uses alot of flash animation
    (about 90%).
    The main SWF animation file is 2 megabytes, and the other
    single SWF files are under 1 meg.
    I would like to combine the SWF files into one basic Flash
    index page. All of the animation SWF files
    reside in a PHP document. I have heard though the grapevine
    that: "a 100% Flash homepage is faster".
    Is the a way to create a index page strictly in Flash? If so
    how d you do it? - Just create a swf homepage called index.swf
    (which doesn't seem possible! How can I increase the speed of my
    animated SWF files while decreasing the size of the files?
    Sincerely,
    "ColdAir"

    Hi
    Your SWF can be called what ever you like, when you Publish
    your site you name the html wrapper - index.html
    You can increase the speed of your swf's by changing the fps
    (Frames Per Second) a standard for high-content animation is 25fps
    to 30fps. To reduce your file sizes you can try and use
    Actionscript rather than the timeline.
    Hope it helps

  • How do I manually recreate the site definition (.ste) for an existing site?

    My iMac hard drive recently failed and had to be replaced.
    Though I had backed up my web site files, I don't have a backup of the site's Site Management (*.ste) file.
    Thus, I'm unable to manage this site in Dreamweaver (reinstalled on the new hard drive).
    In some forum threads, there are references to "manually recreating the site definition." How do I do this?
    Thanks!

    paintwlight wrote the following:
    Does Putting the site to the remote server constitute an Export, whereby a .ste file would have been created during the Put process and, therefore, exist on the remote server?
    No. Hit F1 and search for Export.
    If so, I assume that if I copy the .ste file currently on the remote server and save it locally (into Library:Application Support:Adobe:Common:9:Sites:Site Prefs), all will be well and Dreamweaver will once again be able to manage the site.
    DW can manage the site after you have defined the site as mentioned
    earlier. It does not need the .ste files at all. Those are created by
    the user via the Export feature and are not used by DW itself.
    Gosh, I wish I would have known about the .ste file before my hard drive died. This seems like way too much responsibility to put on one teeny tiny little file -- especially one that's not kept with the rest of the web site files.
    The .ste file contains only the paths to your site and the login
    information - if you choose to include that information. It does not
    contain any of the actual files. DW does not act as a backup or archival
    program. You need to keep backups of your entire site (including source
    files used to create the site, such as Photoshop/Fireworks layered
    images, Flash .fla files, etc...) as well as backups of the .ste files.
    HTH
    Mark A. Boyd
    Keep-On-Learnin'

  • Preview versus Real View Not the Same, Site Definition Errors - Dreamweaver CS4

    I am having trouble working on sites where it seems that Dreamweaver wants me to specify different file locations for various "includes" depending on whether I want to view the site as a preview (F12) vs. on a local test server vs. on the real website server.  Note I am using Dreamweaver CS4 (ver. 10) on Windows, my local test server is Apache running via an Xampp installation on Windows, and my production server is also Apache, running at Hostgator.  I am building a fairly basic html site using SSI via SHTML files, rather than PHP or a more sophisticated method.  Here is what seems to be happening:
    1.  In my index.shtml file I call, for example, a subheader file called "header-nosub-menu.inc.htm."  I have my site definitions set to "relative to document root."  Using the insert -> SSI command, Dreamweaver links to the file with the following: My first problem is that, as specified, the subheader.menu.inc.htm file is not found and the preview gives me an error.  I get the same error if i try to display the file on my local test server (http://localhost/domainname).  However, if I upload the file to my production server, it seems to work fine.  If I change the include command to: #include virtual="./includes/subheader.menu.inc.htm," by manually inserting the "./" to change the directory reference, then the file seems to work in all three situations  Which is the correct directory specification, and why is Dreamweaver not generating it automatically?
    While I can make the manual changes in the directory specifications, I am concerned that if Dreamweaver is making an error in this instance, it may generate more serious problems that are harder to find later.
    2. The second issue seems to involve the Site Definition file configuration.I get an error message when I set up my site definition in what seems to be the correct way, specifically, using the following specifications:
    Local Root folder:  "C:\htdocs\domainname-dev\"
    http address:   "http://www.domainname/"
    testing server folder:  "C:\htdocs\domainname-dev"
    url prefix:  "http://localhost/domainname-dev"
    The error message is: "The site url prefix for the testing server does not match the site url prefix specified in the http address for the site."
    However, when I change the testing server url prefix to one that does not yield an error message ("http://localhost") I then have problems with the preview (F12) display.  Specifically, instead of a preview request generating the following url: "http://localhost/domainname-dev/TMPm393xnclqu.shtml" I find that it generates the following: "http://localhost/TMPm393xnclqu.shtml"  The so called incorrect definition seems to be the correct one, but  why is Dreamweaver not recognizing it as such?  Am I making a error somewhere else in my configuration?
    I would appreciate any assistance that anyone here can provide,
    Thanks,
    http://localhost/

    except for the Apache virtual host configuration, which I do not see a need for
    I wasn't suggesting that you use virtual hosts (although I have defined about 50 virtual hosts on my own development machine). I was trying to understand the url you listed:
    http://www.domainname/
    Without a virtual host definition, that would have no meaning and could not point to anything, unless you simply were leaving off the TLD in the example. (.com, .net, etc)
    I often use the PHP $_SERVER superglobal to define paths and handle differences between the development environment and the remote server environment. Examples:
    DOCUMENT_ROOT: D:/ZendServer/Apache2/htdocs/website/ranch (machine path)
    REQUEST_URI: /topic/calendar (url parameters)
    SCRIPT_NAME: index.php
    HTTP_REFERER: (the url of the script preceding the current script)
    HTTP_HOST: (this is the domain name. It is very useful for distinguishing between the local and remote environments)
    COMPLETE EXAMPLE:
    echo "<p><a class='noPrint' href='".$_SERVER['HTTP_REFERER']."'>RETURN TO PREVIOUS PAGE</a></p>";

  • Site definition Help needed....Thanks

    I am working with Dreamweaver 8.  Vista operating system.  My problem is a simple one but I am really
    stuck on it.
    In the past I have learned that to set my site definitions
    to always work OFF line and then transfer changes to my hosing company.  For some reason this has changed to working
    ON line in the ftp:\\ mode.
    I am unable to find a way to get back to the SITE
    DEFINITIONS PAGES to change back to “Edit locally and then upload to remote
    testing server.”  Need help, PLEASE
    Joe

    DW will just give a site a name when you first try to define
    a site. That pop-up box which says those names should give you the
    option to click in the text areas and change the name and path to
    whatever you wish.
    To answer your questions I will say the following:
    1 - To do this would would serve no purpose I will explain
    why with the answer to #2.
    2. I wouldn't recommend putting only C:\ in the local root
    folder box. That would potentially cause issues down the road
    because then DW would have access to work in the WINDOWS directory
    and this is not good. I would highly recommend keeping it in your
    user account on Windows XP (this is anything inside the
    C:\Documents and Settings\Username folder, which includes your My
    Documents folder). Now to jump back to #2. Without defining a
    proper directory you would not be able to use its functions for
    PHP, ASP or any server-side script. You would also not be able to
    insert Flash files onto your web pages nor would you be able to use
    the new features such as Spry. This is because DW needs a folder to
    work in so that it can create the associated files and folders
    which accompany making those types of scripts and functions. You
    don't necessarily need to connect it to a remote website if you do
    not have one, but you do need to specify a local folder to work in
    and I would highly recommend it. Thus defining the Name only gives
    the site definition a way for you to reference the site, even if it
    is for testing many sites. For instance I put my sites in a folder
    called "Sites" and then inside that folder I have many subfolders
    which are defined sites in Dreamweaver. Each folder has a name
    which corresponds to it that DW sees.

  • Site Definition losing FTP User ID and Password

    My configuration:
    iMac 2.4 GHz Intel C2D
    10.6.1 Snow Leopard
    DW v10 (Build 4117)
    Not sure if my issue is related to the one described in this thread.
    I recently performed a clean install of Snow Leopard and DW. Afterwards I imported my site definitions and everything was fine. On quiting and then re-opening DW the FTP User ID and (optionally Password) in the site sefinition(s) have disappeared. I re-entered them and am able to connect to my site(s) via FTP, but again on closing and re-opening DW the information has disappeared again.
    What I've done;
    - deleted and re-configured all Site Definitions several times.
    - deleted the ~/Library/Application Support/Adobe/Dreamweaver CS4/en_US/Configuration/ folder
    but still the problem persists.
    Not sure if this a Snow Leopard/DW incompatibility issue, but I do recall this happening maybe once or twice with Leopard.
    Any help would be gratefully appreciated.

    I beleive this happens if:
    - you are using a trial version
    - you don't enter your keychain password to record this information
    I lost my kechain passwordon my mac,and i have to reenter password and FTP info everytime. Very frustrating util I can find the time to figure out how to reset my Mac keychain password.

  • Site definition settings - simple question

    When I use Dreamweaver to FTP my site elements via my Mac I
    have no problems. Sadly not the case with a PC though. I cannot
    connect, yet all the site definition settings are the same as for
    my Mac. Is this a simple problem to solve?

    As David says, such problems are almost always the result of
    Firewall
    intervention. You might consider disabling the firewall
    altogether if you
    are using a Router for your internet connection, since the
    router also
    provides this functionality.
    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
    ==================
    "dulcettones" <[email protected]> wrote in
    message
    news:euqmjt$o3d$[email protected]..
    > Hello David.
    >
    > I've checked the passive FTP box. Now when I try to
    connect it finds the
    > /www/ folder where the site elements belong, but it
    doesn't show any of
    > them.
    >
    > When you say change the firewall settings, do you mean I
    have to disable
    > them
    > everytime I want to FTP to the server. I cannot find a
    check box that
    > enables
    > the McAfee security centre to allow Dreamweaver inbound
    and outbound
    > access.
    >
    > Thanks for your help.
    >

  • Site Definition Help - Please

    Dreamweaver in CS3 on Windows XP Prof: Very very beginner:
    Before I've chosen a folder or site or anything:
    When I begin to define a site - in the Site Definition window
    - in Site name: box, "Unnamed Site 2" always appears;
    In the 'Local root folder:' box, the words C:\My
    Documents\Unnamed Site 2\ always appears as does C:\
    Why? and how do I change this so that no site name at all
    appears in the 'Site name:' box?
    Why? and how do I change this so that only C;\ appears in the
    'Local root folder:' box.
    Thanks to anyone for any help

    DW will just give a site a name when you first try to define
    a site. That pop-up box which says those names should give you the
    option to click in the text areas and change the name and path to
    whatever you wish.
    To answer your questions I will say the following:
    1 - To do this would would serve no purpose I will explain
    why with the answer to #2.
    2. I wouldn't recommend putting only C:\ in the local root
    folder box. That would potentially cause issues down the road
    because then DW would have access to work in the WINDOWS directory
    and this is not good. I would highly recommend keeping it in your
    user account on Windows XP (this is anything inside the
    C:\Documents and Settings\Username folder, which includes your My
    Documents folder). Now to jump back to #2. Without defining a
    proper directory you would not be able to use its functions for
    PHP, ASP or any server-side script. You would also not be able to
    insert Flash files onto your web pages nor would you be able to use
    the new features such as Spry. This is because DW needs a folder to
    work in so that it can create the associated files and folders
    which accompany making those types of scripts and functions. You
    don't necessarily need to connect it to a remote website if you do
    not have one, but you do need to specify a local folder to work in
    and I would highly recommend it. Thus defining the Name only gives
    the site definition a way for you to reference the site, even if it
    is for testing many sites. For instance I put my sites in a folder
    called "Sites" and then inside that folder I have many subfolders
    which are defined sites in Dreamweaver. Each folder has a name
    which corresponds to it that DW sees.

  • How do you open the site definition in Sharepoint Designer?

    Hi,
    I am looking to open this to try to edit it. Where is it and how do you open it?
    Thanks

    Hi,
    According to your post, my understanding is that you wanted to edit the site definition in SharePoint Designer.
    A site definition is a collection of files stored on the server used for all new sites and templates created in SharePoint.
    They provide preconfigured lists, Web Parts, navigation bars, features, and so on for each site.
    The role of the site definition becomes especially important the next time you perform server-wide maintenance, for example upgrading the server, applying a solution upgrade, or a branding exercise.
    Not only is the site definition updated, but all the pages associated with it are updated, which keeps them consistent and easily manageable.
    Microsoft SharePoint Designer 2010 is a Web and application design program used to design, build, and customize Web sites running on SharePoint Foundation 2010 and Microsoft SharePoint Server 2010. With SharePoint Designer 2010, you can create data-rich
    Web pages, build powerful workflow-enabled solutions, and design the look and feel of your site.
    The following articles about the SharePoint Designer and use the Designer to edit the master page, I think they are the good beginning for you.
    Get Started with SharePoint Designer 2010
    Managing SharePoint Designer 2010
    Customize a master page to brand your site
    How to create and change the master page via SharePoint Designer
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Liste blanche de site web pour flash player

    Bonjour,
    D'abord merci de votre aide.
    Je suis Admin réseau et j'aimerai administrer flash player afin que mes 100 utilisateurs n'utilisent flash player que sur des sites "de travail".
    C'est pourquoi j'aimerai créer un whitelist de site web pour flash player.
    Les utilisateurs utilisent flash player sur les pc avec Windows 7 pro installé dessus.
    Pouvez-vous me dire comment faire pour mettre en place une liste blanche de site autorisés par flash player sans avoir a passer par le panneau de config d'adobe (macromedia) ou par les module complémentaires.
    L'idela serait un fichier de config avec la white list dedans.
    Est-ce possible avec le fichier mms.cfg ? si oui avez-vous un exemple ?
    Si non connaissez-vous un autre moyen pour mettre en place de type de white list?
    Merci beaucoup pour vos reponses.

    helevaut wrote:
    > bonjour, quand je me connecte sur un site via mon N95
    8GB, le site me demande
    > de t?l?charger la mise jour flash player 9. sauf que,
    quand je vais sur le site
    > toujours via mon mobile, je ne trouve rien qui
    correspondrait ? mon mobile.
    > est ce que quelqu'un peut m'aider?
    > merci d'avance.
    There is no Flash 9 player for Nokia.
    Nokia comes with Flash Light 2 or Flash Light 3. Depends what
    firmware version
    do you have. If you upgrade your phone to v20.0.016, you will
    get latest version
    of Flash Lite 3 which only supports Flash 8 or earlier and
    ActionScript version 1.0 and 2.0
    There is no Flash 9 support.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Restore Site definitions from CS 4

    I recently updated from CS4 to CS 5.5 on My Mac running OS X 10.6.8. I uninstalled all CS 4 components befroe installing. Now I realize I forgot to export my existing sites before uninstalling. I do have a backup and I know where the sites exist within ~Library/Application Support/Adobe/Dreamweaver CS4/en_US/Configuration. However, if I just restore this folder and replace the current SitesCache folder with this one, it does not see the sites. Is there a way to get CS 5.5 to recognize these sites?

    AFAIK, you have only 2 options: 
    Import saved .ste files from a previous export. You would have had to do this from CS4. If not,
    Enter site information manually. 
    Afterwards, be sure to export all your site definitions to a safe place.  Do it again if you make any changes.  I keep one set in my local site folders and another set on a removable flash drive.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Show a WebPart view in a visual studio site definition

    Hi Guys ,
    i developed a Site definition in VS. In this Definition i have a list instance  based on Promoted link template (type 170).Now i want to show in the Deafault.aspx a view of the promoted link but when i put the snipet
    <WebPartPages:WebPartZone runat="server" FrameType="TitleBarOnly" ID="full" Title="loc:full">
    <WebPartPages:XsltListViewWebPart runat="server"
    ListUrl="Lists/List1"
    IsIncluded="True"
    JsLink="clientTemplate.js"
    NoDefaultStyle="TRUE"
    PageType="PAGE_NORMALVIEW"
    Default="False"
    ViewContentTypeId="0x">
    </WebPartPages:XsltListViewWebPart>
    </WebPartPages:WebPartZone>
    the server respond me  : ..Type 'Microsoft.SharePoint.WebPartPages.WebPartZone' does not have a public
    property named  'XsltListViewWebPart'. I added
    <%
    @RegisterTagprefix="WebPartPages"Namespace="Microsoft.SharePoint.WebPartPages"Assembly="Microsoft.SharePoint,
    Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>
    but it doesn´t work..
    Any suggestion?

    Hi gohberto,
    Before <WebPartPages:XsltListViewWebPart> tag,you can add <zoneTemplate>
    Here is a code snippet for your reference:
    <WebPartPages:WebPartZone runat="server" FrameType="None" ID="Main" Title="loc:Main">
    <ZoneTemplate>
    <WebPartPages:XsltListViewWebPart runat="server" ListUrl="Lists/My List" [abbreviated...]>
    <XmlDefinition>
    <View Name="Some View" Type="HTML" Hidden="TRUE" TabularView="FALSE" DisplayName="" Url="View.aspx" Level="255" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/images/generic.png">
    <Query>
    <OrderBy>
    <FieldRef Ascending="FALSE" Name="ID"/>
    </OrderBy>
    </Query>
    <ViewFields>
    <FieldRef Name="ID"/>
    </ViewFields>
    <RowLimit Paged="TRUE">1</RowLimit>
    <Aggregations Value="Off"/>
    <Toolbar Type="Standard"/>
    </View>
    </XmlDefinition>
    <DataFields>
    </DataFields>
    </WebPartPages:XsltListViewWebPart>
    </ZoneTemplate>
    </WebPartPages:WebPartZone>
    Here is a similar thread for your reference:
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/7740935e-d4d7-46f8-9dac-09b9c46855c6/type-microsoftsharepointwebpartpageswebpartzone-does-not-have-a-public-property-named-webpart?forum=sharepointcustomizationlegacy
    Best Reagrds
    Zhengyu Guo
    TechNet Community Support

  • Backing up and restoring site definitions

    Losing your site definitions in Dreamweaver can be a disaster, but it does happen sometimes. The best way to prepare for such an eventuality is to back up your site definitions on a regular basis.
    Creating a backup
    You can back up all your site definitions in a single operation by selecting Site > Manage Sites. In the dialog box that opens, Shift-click to select all site names, and then click Export.
    In Dreamweaver CS6, the Manage Sites dialog box looks like this:
    In earlier versions of Dreamweaver, it looks like this:
    Dreamweaver asks if you want to include passwords and login details (this is the default option). Whichever option you choose will be applied to all sites, so click Cancel if you want to treat some sites separately, and export your sites in two sets by using Ctrl/Cmd-click to select them.
    When you click OK, Dreamweaver asks where you want to export the definitions. Navigate to a suitable location, leave the File name field unchanged, and click Save. Although only one site name is listed in the File name field, Dreamweaver exports all the site definitions as .ste files in a single operation.
    NOTE: This process backs up only the details of your sites, such as the location of the root folder, FTP details, and so on. It does not back up the actual files in your site, such as .html (or .php, .asp, .cfm) files, images, and style sheets. It's a good idea to use your normal file backup routine on your actual files from time to time, as well as exporting the site definitions.
    Restoring site definitions
    In the event of losing your site definitions in Dreamweaver or moving to a new computer, open the Manage Sites dialog box, and use the Import button to navigate to your backup .ste files.
    What if I don't have a backup?
    Often, if you don't have a backup of .ste files, you need to go through the whole process of re-entering the details for each site manually.
    However, you might be able to restore them by using a restore point on Windows or Time Machine in Mac OS X.
    On Windows, the site definitions for Dreamweaver CS6 are stored in the Windows Registry at HKEY_CURRENT_USER\Software\Adobe\Common\12.0\Sites.
    In Mac OS X, they are at Macintosh HD:<username>:Library:Application Support:Adobe:Common:12.0:Sites:Site Prefs.
    In recent versions of Mac OS X, the Library folder is hidden. In the Mac Finder, select Go > Go to Folder, type ~/Library in the search field, and click Go.
    Dreamweaver CS5.5 site definitions are in the same location, except use 11.5 instead of 12.0. The numbers for CS4 and CS3 are 10 and 9 (without a decimal fraction) respectively. For earlier versions of Dreamweaver, substitute Macromedia for Adobe, and adjust the number accordingly.
    If you don't have a backup of the actual files on your site, download the files from your remote server.

    Hello,
    We are running iPlanet 5.2 Messaging Server and need
    to migrate to another (duplicate) 5.2 Messaging
    Server. We have all the software installed and the
    LDAP user accounts created. Now we just need to move
    the existing mail from one server to the other.
    I found the Backing Up and Restoring the Message
    Store section in the Admin Guide says to back up and
    restore your data, Messaging Server provides the
    imsbackup and imsrestore utilities.
    However I am wondering about the Queue?
    Under <instance>/imta/queue
    What is the difference between the Message Store
    and the Queue? The Message Store is where messages get delivered to, so you can read them.'
    The queue is where messages are temporarily stored, pending delivery to wherever they go.
    You can use tar, cpio, or what have you for the queue. Stop the server first. . .
    You then just restore the files to the new server. No need to restart or anything like that. Just dump the files in, and run
    imsimta cache -sync
    to tell the MTA to re-read the queue.
    Can I just backup and restore the
    Queue using tar or cpio?
    Thanks in advance for any advice.
    Regards,
    Tim

  • Remote and Testing Server Site Definitions

    I am confused about what information I should put in my
    remote site definition info and testing server FTC Host directory
    text boxes. My host placed 3 directories: database, log, and www on
    my server and Dreamweaver placed two directories, Connections and
    _mmServerScripts in the same directory as the above 3. I have
    placed all of my site files, including my home page and folders in
    the www directory and my Access database in the database directory.
    Dreamweaver placed the connection info in the Connections folder an
    d _mmServerScripts in the same directory.
    In order to construct my local site to match the remote site,
    I created a www folder on my local site and placed all of my HTML
    files and supporting folders in it.
    From various Adobe Tech Notes I have read, I was led to
    believe my FTP host directory
    Should be www/. However, when I do this and create a new web
    page on my local site and upload it to my remote site, Dreamweaver
    creates a new www directory inside of the one my host created on
    the remote site and uploads the file to it instead of placing it in
    the www directory my host created. Also, when I use F12 to test my
    page in my browser I get a 404 page not found because Dreamweaver
    placed a www in the page URL that shouldn’t be there and
    after I remove it I’m able to see my page in my browser. My
    URL prefix on my testing server site definition is:
    http://I.P.number.html.
    What am I not doing right?
    Should I use www/ as my FTP host directory or leave it blank?
    Also, what should my URL prefix be?
    Thanks for your help.

    What you need to do is set up so that in the remote server
    you point to the
    www level on the server, and don't replicate this locally.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Jim_Moore" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am confused about what information I should put in my
    remote site
    >definition
    > info and testing server FTC Host directory text boxes.
    My host placed 3
    > directories: database, log, and www on my server and
    Dreamweaver placed
    > two
    > directories, Connections and _mmServerScripts in the
    same directory as the
    > above 3. I have placed all of my site files, including
    my home page and
    > folders
    > in the www directory and my Access database in the
    database directory.
    > Dreamweaver placed the connection info in the
    Connections folder an d
    > _mmServerScripts in the same directory.
    >
    > In order to construct my local site to match the remote
    site, I created a
    > www
    > folder on my local site and placed all of my HTML files
    and supporting
    > folders
    > in it.
    >
    > From various Adobe Tech Notes I have read, I was led to
    believe my FTP
    > host
    > directory
    > Should be www/. However, when I do this and create a new
    web page on my
    > local
    > site and upload it to my remote site, Dreamweaver
    creates a new www
    > directory
    > inside of the one my host created on the remote site and
    uploads the file
    > to it
    > instead of placing it in the www directory my host
    created. Also, when I
    > use
    > F12 to test my page in my browser I get a 404 page not
    found because
    > Dreamweaver placed a www in the page URL that shouldn?t
    be there and after
    > I
    > remove it I?m able to see my page in my browser. My URL
    prefix on my
    > testing
    > server site definition is:
    http://I.P.number.html.
    >
    > What am I not doing right?
    > Should I use www/ as my FTP host directory or leave it
    blank?
    > Also, what should my URL prefix be?
    >
    > Thanks for your help.
    >
    >

  • Create a Site Definition file with Visual Web part in Visual Studio

    I tried to create a site definition file in Visual Studio 2013 and SharePoint 2013 by following the MSDN tutorial:
    Walkthrough: Create a Basic Site Definition Project. Near the end, I added a virtual web part control to the site definition and registered MyWebPartControls in the site definition's default ASPX page as written in the MSDN tutorial:
    Unfortunately, IntelliSense doesn't show any MyWebPartControls: tags, and VisualWebPart1 is highlighted with a warning “Element 'SMWebPart3' is not a known element. This can
    occur if there is a compilation error in the Web site, or the web.config file is missing.”
    Since it’s a warning, I went ahead to build and deploy the solution. However, when I used the site definition template to create a subsite, it returned a parser error:
    Unknown server tag 'MyWebPartControls:TestSiteDef1.VisualWebPart1'
    I spent half day researching and debugging, and finally solved the problem. The issue is on the registration line:
    <%@ Register Tagprefix="MyWebPartControls" Namespace="TestSiteDef.VisualWebPart1" Assembly="$SharePoint.Project.AssemblyFullName$" %>
    The $SharePoint.Project.AssemblyFullName$ is a replaceable parameter to provide values for SharePoint solution items whose actual values are not known at design time. Unfortunately, it does not find the right assembly name during the deployment. It should
    be replaced by the Assembly’s Strong Name. Here is how I fixed the problem step by step:
    In Solution Explorer, open the package node and double click Package.package
    Click Manifest tab in the Package.package.
    Copy the full assembly name in the package’s manifest. It may be similar like this:
              Assembly="TestSiteDef,
    Version=1.0.0.0, Culture=neutral, PublicKeyToken=a300f1f2da8ae976"
    Back to the site definition’s default.aspx page, replace the
                     Assembly="$SharePoint.Project.AssemblyFullName"
    in the registration line with the copied text:
    Assembly="TestSiteDef,
    Version=1.0.0.0, Culture=neutral, PublicKeyToken=a300f1f2da8ae976"
    Change the Namespace from
    Namespace="TestSiteDef.VisualWebPart1"
    to
    Namespace="TestSiteDef".
    The line to register the web part in a site definition file will look like this:
    <%@
    Register
    Tagprefix="MyWebPartControls"
    Namespace="TestSiteDef "
    Assembly="TestSiteDef, Version=1.0.0.0,
    Culture=neutral, PublicKeyToken=a300f1f2da8ae976"
    %>
    Clean, build and deploy the solution. It works like charm. (Note: the warning message on visual web part may still exist, but you can ignore it).

    Assuming your .ascx.vb file is inheriting from the web part class, you can add the custom properties in the same manor (language syntax aside).
    Be sure to use the attributes to correctly identify and scope the properties. (see:
    http://www.sbrickey.com/Tech/Blog/Post/SharePoint_Attributes_for_Web_Part_properties)
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com

Maybe you are looking for

  • Error while Deploying application on localhost

    Hi gurus, I try to deploy the application mainapp01, locally on the J2EE engine, but gives me the following error: Oct 9, 2006 4:26:40 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR: [0

  • GTS 7.2 - Error with account assigned purchase order without material

    All, I am creating an account assigned purchase order without any material master in the feeder system (ECC 5.0) and it a standard SAP functionality. I am getting the following GTS related pop up message and documents are posted to technically incomp

  • What are the implications of using jquery version 1.10.2 rather than the version (1.7.1) that Adobe

    What are the implications of using jquery version 1.10.2 rather than the version (1.7.1) that Adobe uses? Thanks Bob

  • Error (-54)

    For quite some time now, I've been getting a window that says "The iPod cannot be synced. An unknown error occurred (-54)." when I try to sync my iPod. Song files that I have added to my library are transferring to my iPod, but songs I have deleted o

  • (New) BUG in TP4 ?

    Hello, I created a swing desktop application. I am not able to start it as usual, because the "Browse"-Button in the "Choose Default Run Target"-Window does not work! Greetings.