Insert blog with DW?

I'm recent convert from GoLive. Wondering if there is a way
to insert a blog into a particular directory of the site, within a
template. Any ideas? My site is static, but I'd like to integrate a
blog in part of it.

few folks would have tried to work a dw template into a blog
script.
it could possibly be done but YOU would have to do the blog's
template
system so it responded to changes with dreamweaver's changes
to the file.
The main thing:
the blog is a script on the server.
the dreamweaver template is a design time thing. It only
affects things on
your computer.
Here is an answer: there is no way to "place a blog" into a
site so if you
make changes to a dreamweaver template, those changes will go
into every
page of that blog. Edit the BLOG's template. Outside of
dreamweaver.
Understand the code used in those places.
> Thanks for the response.
>
> My question is whether there is a way to place a blog
within a template, so
> that it's still linked. Anyone accomplished that?
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • IWeb 08 blogging with slide shows

    Help!
    I am using iWeb 08 in a fairly generic way. After seeing what her sisters have all been able to accomplish with blog sites such as blogger.com she wants to be able to include a slide show in her blogs. 2 questions:
    1. I have figured out how to export photos from iPhoto to quicktime. It creates a simple but usable slideshow in .mov format. I then open iWeb, click on the "entries" screen, create a new blow, then drag/insert the quicktime movie into the "placeholder" image to replace it in the blog. The problem is that when i go to my website, which opens up to the home page that shows all of the recent blogs with the most recent one first, the embedded quicktime file doesnt play. It only shows the first frame. When i click on it, it takes me a page with just that one blog on it, and then the mov file works, and i get my slideshow. What do i need to do make the .mov slideshow work in the home page. My wife wants the slideshow(quicktime movie) to work on the main page...).
    2. Second question. The quicktime slideshow is pretty generic. Sites like Picturetrail let you create pretty cool slideshows (flash files i believe) and then embed the html in your own blogsite ie blogger.com etc. I played around with embedding the html in iWeb and couldn't get it to work? A) can i embed a flash html in an iWeb blog, and B) will have the same problem of it not working on the homepage screen..
    Sorry for the long post. Huge brownie points if i can get it to work, not to mention less grief for switching to a Mac
    Thanks for your help!

    I have batch renamed all my assets, deleted all my slideshow thumb nails and replaced them so none of the images in my slide show have the same name as other assets anymore. I am sure this is what caused the problem.  I am about to reupload my website, so you won't be able to see the problem anymore (I sincerely hope).
    The problem wasn't always reproducible. To be able to reproduce the bug you need 10 different slideshows (all with images called page_1.jpg, page_2.jpg etc with more than 50 pages in some of the galleries, and then you have to upload the slideshows, make changes to the website,upload again, then make more changes to the website, then go to all the galleries one at a time with the thumbnails visable then uncheck the show thumbnails box for all the different slideshows and upload again.

  • Why blog with iweb

    o.k. since i am new to this iweb thing and blogging with it i have a question. what is the benefit of blogging with iweb? i feel like there are so many downsides to it and i am paying for this service. I could be using another blog service for free or little money and have it not be this difficult. i just feel like i am so loimited and i feel like my blog does not even work on my friends computers who are PC users and run internet explorer.
    some things i am having challenges with:
    * putting HTML in my blog. (i know it can be done but i'm told if you modify the blogs HTML code then i can cripple my commenting system)
    * changing colors of certain text in my template
    *adding photos to my blog, they seem to need to be made small before i import them otherwise i will use up my space rather quickly.
    * (this is more of a question) can i install .png files into my blog or does it have to be a .jpg? i would like to insert files that do not have the white bkg and the only way i can do that is if it is a .png file.
    those are just some of my issues for now. am i right? are these legitimate issues wth using the blog with iweb? or am i just crazy ...LOL! :P
    if there are easy ways to fix these issues i would soooooo love some help as a new iweb user.
    Also another thought was could some of these issues be fixed with leopard when it comes out? does anyone have any idea?
    that's all i have for now. i will post again if i can thing of more questions.

    Hi Dena,
    As Old Toad mentioned, iWeb can be used for many kinds of web sites. The link he gave is a great place to get a sense of what can be created. Blogging is one of the components of iWeb and blogs can be easily created. Yet, iWeb might not meet the needs of everyone.
    If one does not want to spend time under the hood of iWeb, tweaking the html, trying to create things that iWeb does not automatically do which other blogging sites and software provides, then there are other services and software available that are designed specifically and exclusively for blogging. One does not need to get "under the hood" (though most of them allow it), If you like to tinker with the "innards" you will be able to tweak your iWeb blogging site or any other of the iWeb components to meet most of your needs.
    iWeb is good at what it does, in fact it is very good at what it does. It just might not meet the needs of everyone. It is still a work in progress that provides the non html, css coder, or professionally trained designer, the chance to get on the web without the previously required knowledge of html, css etc.

  • Inserting data with the help of nested table...!!!

    The following block is giving error
    ORA-06502: PL/SQL: numeric or value error
    the signature and signature_bkp have the same structure
    So, can anybody help me out to solve this issue :
    for copying records from one table to another table
    Thanking You advancely
    DECLARE
    CURSOR c1
    IS
    SELECT *
    FROM signature
    WHERE creation_time > TRUNC ( SYSDATE ) - 100
    AND ROWNUM < 102;
    TYPE sig_typ IS TABLE OF signature%ROWTYPE;
    sig_t sig_typ;
    BEGIN
    OPEN c1;
    FETCH c1
    BULK COLLECT INTO sig_t;
    CLOSE c1;
    FORALL i IN sig_t.FIRST .. sig_t.LAST
    INSERT INTO signature_bkp
    VALUES sig_t ( i );
    COMMIT;
    END;
    --DKar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Or whether a INSERT statement with SELECT clause will do that for youby using this technique, it took 47:08:45 to copy 7252 rows
    and by using a cursor for loop took 49:03:23 to copy 13567 rows
    So there was appox. 40% increase in performance by using pl/sql. I thought it could be even faster using the bulk-bind ing features and nested tables.
    OR i just want to know ....how to correct the block of code that was given in my 1st msg without changing its logic.
    Thanks
    --DKar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I am using my iPhone 5 to take pictures and have started a blog with pictures. I am not able to do the update on my phone due to lack of memory.

    I am using my iPhone 5 to take pictures and have started a blog with pictures. I am not able to do the update on my phone due to lack of memory. I wanted to know how much difference this will make to my pictures.
    If anyone had suggestions on how to maximize picture quality n use without the update, I'd appreciate it
    <Link Edited By Host>

    If the lack of space on your phone is due to pictures, you may want to consider transferring some (or all) to a computer and deleting them from the phone. That is a good practice even if you have space on the phone. Instructions: http://support.apple.com/kb/ht4083

  • Query in Insert statement with JDBC Rx adapter

    Hi,
    This is a FILE to JDBC scenario.
    My target datatype is like this with sample payload values
    statement_s
    statement_s
       action='INSERT"
      access
        A=1234
        B=1002
    key
       A=1234
       B ="10%"
         compareOperation= LIKE
    A(1..1) is primary key in DB and B(0..1) colunm is an optional one.
    I want to know if such kind of Insert query with(LIKE operator) is possible.
    Please reply me ASAP.
    Edited by: ram pranav on Feb 18, 2009 10:28 PM

    Hi Ram,
    IN case of "UPDATE_INSERT", you can use the KEY tag in your structure. Also you can provide LIKE as an attribute to the KEY element as follows :
    <key1>
         <col4 compareOperation=u201DLIKEu201D>val%</col4>
    </key1>
    But when you are trying to insert the data_, the <key> tags will be ignored and only <access> will be considered._
    action=UPDATE_INSERT
    The statement has the same format as for the UPDATE action. Initially, the same action is executed as for UPDATE. If no update to the database table can be made for this action (the condition does not apply to any table entry), values of the table described in the <access> element are inserted in accordance with the description of the action INSERT. <key> elements are ignored in this case.
    The response document has the following format; one of the two values is always 0 because either an UPDATE or an INSERT action is always executed:
    Go through the link I have provided earlier.
    Thanks,
    Pooja Pandey

  • INSERT statement with JSP

              Does anyone know how to create an INSERT statement with JSP using
              variables??
              I can do the insert if I code the values of the variables in the statement,
              but when I try to use variables to do the insert it tries to insert the
              variable name and not the value of the variable into the table.
              Thanks,
              Doug
              

    "Doug Schaible" <[email protected]> wrote in message news:<bicO7.1279268$[email protected]>...
              > I can do the insert if I code the values of the variables in the statement,
              > but when I try to use variables to do the insert it tries to insert the
              > variable name and not the value of the variable into the table.
              Doug,
              I think you missed the <%= blahblah %> syntax.
              Regards
              drit
              

  • Insert statement with Date, time into Oracle

    Hi,
    I've got the following statement that I'm trying to insert into Oracle. Actually had to change up the format to dd-mm-yy to get it to insert the date correctly, not sure why, but I've got it "supposedly" formatted to also insert the hours, min., seconds into the db record, but it's not catching it.
    My code:
    INSERT INTO VOTETBL
    (CHANGE_CTRL_ID,BUSVP,BRANCH,VOTE,VOTE_TIMESTAMP)
    VALUES (?, ?,?,?,to_date(sysdate, 'dd-mm-yy hh24:mi:ss'));Shouldn't the sysdate capture all those elements sufficiently? The day, month, year get inserted correctly with this, but not so for the time portion.
    Any suggestions is welcomed.
    Thx.

    ok, thanks.
    I tried making a result set with the following:
    Statement stmt = connection.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
    ResultSet rst = stmt.executeQuery("select to_char(sysdate) from dual");
    Date dualtimestamp = (rst.getDate("sysdate"));But it makes the servlet blow up! Not sure why either, because if I enter that exact statement in Oracle, it pulls back the date and time just like I aim to. But not embedded in the result set statement within the servlet.
    It breaks up somehow and doesn't get that result!

  • Transient VO insert error-Attempting to insert row with no matching EO base

    Hi ,
    I have a transient Vo (created using option - rows populated programmatically, not based on Query) and I need to uptade/insert rows in vo on click of a button.
    when i nsert row, i get following error
    oracle.jbo.InvalidOperException: JBO-26020: Attempting to insert row with no matching EO base
    This is what I am doing in my code
    ViewObject vo2 = am.findViewObject("TransientVO1");
    vo2.executeQuery();
    if (vo2 == null) {System.out.println("vo2 is null");}
    if (vo2 != null)
    System.out.println("in vo2 != null");
    Row row2 = vo2.createRow();
    row2.setAttribute("PlatformName", "ss");
    row2.setAttribute("UserName", "ss");
    vo.insertRow(row2);
    System.out.println(" vo2.getRowCount()"+ vo2.getRowCount());
    Why is it saying no EO base... is it mandatory to have EO for transient VO? Please help.
    Thanks

    The EO handles all DML, hence you need it if you have to set attributes in a VO. An EO handles the storage of a the single row (or part if your VO consists of multiple tables).
    You can try and overwrite the setter method of the attributes in ViewRowImpl class and store the changes somewhere else.
    Timo

  • Update/Insert Problem with Oracle Warehouse Builder

    Hello,
    i have update/insert problem with owb.
    Situation: I have a source-table called s_account and a target table called w_account_d. In the target table are already data which was filled trough the source table inserts. Now anyone make changes on data on the target table. This changes should now give further on the source table with an update operation. But exactly here is the problem i can´t map back the data to source because that will create a loop.
    My idea was to set a trigger but i can´t find this component in owb or is anywhere hidden?
    Also i have already seen properties as CDC or conditonal loading in the property inspector of the table, but i have no idea how it works.
    Give it other possibilities to modeling this case? or can anyone me explain how i can implement this eventually with CDC?
    I look forward for your replies :)

    Hi
    thanks for your answer. I follow your suggestion and have set the constraints of both tables into the database directly.Nevertheless it doesn´t work to begin. In the next step i found by right click on a table the listpoint "configure" - I goes to "unique key" --> creation method and set here follow options: Constraint State = ENABLE, Constraint Validation = Validate. That error message that appears before by the deployment disappears yet. Now i start the job to test if the insert/update process works right. Finally it seems to work - but not really.
    My Testscenario
    1. Load the data from source table about the staging area to data warehouse table: Check - it works!
    2. Change one data record in source table
    3. Load the source table with changed data record once again to staging area: Check - it works!
    4. Load new staging area table with the changed data record to data warehouse table: Check it works! BUT, BUT i can not recognize if it is insert or update operation, then under the design window by jobs execution windows is reported "rows selected 98", Rows inserted" is empty and "rows updated" is empty. So i think works not correct, then my opinion if it works correct it should show be "rows updated" 1.
    What can yet now still be wrong or forgotten? Any ideas?
    *By the way think not 98 rows there is not important if you make an update or insert which performance. It is an example table the right tables have million of records.*
    I look forward for your answers :)

  • Insert into with variables

    Hi!
    I've a procedure with a insert into phrase.
    For example:
    INSERT INTO type (NAME) values(A_CHA);
    type is not a table name it is a variable and name is not a column name it is also a variable.
    Can i make a insert into with variables?
    How is the right syntax?
    Thank's for help!
    Nicole

    Hi!
    I've found a way to do this:
    sql_statement:= 'INSERT INTO' || type_table || '('||NAME|| ',CABLE_NUM,FACILITY_NUM) values( '||A_CHA||','||CABLE_N||','||FAC_N||')';
    EXECUTE IMMEDIATE sql_statement;
    But when i execute my procedure i get the error:
    Keyword INTO is missing!
    Please help
    Nicole

  • I have a blog with links that work in every browser except Fire Fox

    I have a blog with banners and links. These links will work in every other browser except for FireFox. However, a friend of mine has assured me they worked about 2 days ago.

    All the links that I checked worked fine, as long as JavaScript is turned off for '''blogspot.com''' in Firefox 3.6.12. Allow JavaScript for that domain and the hyperlinks are dead.

  • How to insert javascript with in a servlet

    Please send the code to insert javascript with in a servlet

    hi,
    You have write u r java script code in Servlet with teh following steps
    1.Use out.println("<html> .....</html>")
    in between the above html code u write ur <script language="javascript"> etc
    write your javascript code in the above <sript tah function.
    Hope this helps
    -Srini

  • How to insert records with LONG RAW columns from one table to another

    Does anybody know how to use subquery to insert records with columns of LONG RAW datatype from one table to another? Can I add a WHERE clause in the subquery statement? Thanks.

    Insert into ... Select statements are not supported for long or long raw. You will have to either use PL/SQL or convert your long raw to blobs.

  • Is it possible to insert row with timestamp field without to TO_TIMESTAMP

    hello
    is it possible to insert row with timestamp column without using to_timestamp unction
    somthing like insert into app.master values (3,333, 'inser tmstmp', 6.7, '2010-11-10 15:14', 'f','9','2010-12-22')

    784633 wrote:
    hello
    is it possible to insert row with timestamp column without using to_timestamp unction
    somthing like insert into app.master values (3,333, 'inser tmstmp', 6.7, '2010-11-10 15:14', 'f','9','2010-12-22')If you don't like the answers in your previous thread (Re: how can i set timestamp format don't expect to get different answers just because you start a new thread.

Maybe you are looking for

  • I can't open a file on Pages'09 4.1    I get  window that says "The required index.xml file is missing."  How do I get this file open?

    I have a file that I havel been adding to for years. I opened it a week ago but today I tried and I got the window message "the required index.xml file is missing"  How do I get this to open? I have Pages '09  4.1  Not sure when that was put on or up

  • How to handle parked message in BPM?

    Hi, I have a scenario that buyer as R3 send PO(same PO number) change idoc multiple times into bpm without receiving PO change confirmation(from seller, non R3) yet, I have a loop in bpm to handle this case, the loop checks the condition whether conf

  • IMovie cannot import iPhoto at all

    I'm unable to import any iPhoto content at all into iMovie.  I'm running iMovie 11 (9.0.4) and iPhoto 11 (9.0.5) on an iMac running OS X 10.7.1.  The basic problem is that iMovie is not able to load iPhoto content into the photo panel.  It just hangs

  • New to Photoshop cs5 extended...please help

    I recently submitted one of my photoshop paintings to a website. I followed the directions for dimensions and when the website uploaded my image is is really blury. Can anyone tell me how to fix this? My image was 3125x1175 pixels and 300 dpi

  • Best way to move Users folder off the boot drive

    I read a couple of old threads regarding this topic, but I have some lingering questions... I'm awaiting my Mac Pro. I ordered it with one drive. I plan on adding two drives in a RAID 0 array for data (which will be backed up regularly, of course) as