Jul 24, 2008

Integrate Blog Into Existing Site? - What's the Simplest Route?

Free Web Hosting, No Ads > CONTRIBUTE > The Internet > Web Design
Pages: 1, 2

free web hosting

Integrate Blog Into Existing Site? - What's the Simplest Route?

Misanthrope
I'd like to integrate a very simple blog-type feature that will only show up my site's home page. I want the blog section to look like the rest of the site. Here's my site if it helps:
vbritton's site
The site has three columns, and in the center column, I want to put simple blog entries. I want to keep the other two columns open for other stuff so it doesn't look like a blog site. It would also be nice to have an rss feed.

I know some html. I don't know php or sql, but I'm guessing I might have to learn if I want to do this right. I'd rather not have to go through the hassle of trying to integrate Wordpress since my site is already created. What do you think is the best and simplest way to do this? I've checked out similar threads on this topic, but the responses don't go into enough detail for the technically challenged. If you use php/sql terminology keep it simple for this non-geek!

Thanks in advance for your help biggrin.gif

 

 

 


Reply

zyzzyvette
I built my first blog with this tutorial. It's an article series on how to build your own blog, targeted to the "newbie coder". If you're going to build your own, I'd suggest doing some basic php first, just to get the gist of things.

I haven't integrated someone else's blog script into one of my own sites, so I have no idea how plausible that is with a pre-existing template and such. If it is, that's likely an easier way unless you'd like to learn anyway or are a fast learner. smile.gif

Reply

BuffaloHELP
I too was in a similar position few years ago... and I found a simple solution of using CuteNews http://cutephp.com/ . CuteNews does not use SQL and the easy integration to any web page makes it ideal for beginning CMS (in your case you can use it as a blog).

CuteNews will give you a code to insert into your page, i.e.
CODE
<?PHP
include "yourdirectory/folder/shownews.php";
?>


Just insert that code to the area you designated and save the page as .php extension. That's it, really. The program will automatically insert articles saved using CuteNews main interface. Now, you can select categories, number of articles per page or which "skin" or template to use...etc.

For an example of how CuteNews is used as CMS, visit http://www.gfxtrap.com/ and see the main content shown by CuteNews.

The second is to use RSS within your page. WordPress spits out RSS to all your entries. There are programs free to convert RSS data to HTML page. A simple point to the right program can show RSS coming off of your WordPress (or other blog script with RSS feature) to show as HTML in your web page.

An example of RSS translated to HTML can be viewed here http://www.gfxtrap.com/rss.php This is just an example that RSS (a XML data really) can be interpreted to HTML page.

 

 

 


Reply

garbage
Well that seems pretty easy, I was thinking of just adding some extenal link for like an html and just have it open within the specified frame...

Reply

Misanthrope
QUOTE(garbage @ Feb 19 2007, 08:36 AM) *
Well that seems pretty easy, I was thinking of just adding some extenal link for like an html and just have it open within the specified frame...

Garbage, would you mind clarifying that? I'm an idiot when it comes to this stuff and need point by point directions. Thanks!

Reply

rval
use iframe

Reply

Misanthrope
QUOTE(rval @ Feb 19 2007, 10:22 AM) *
use iframe

I'm afraid a two word post doesn't accomplish anything, unless of course, your aim is something other than providing useful information. With all due respect, I don't consider this a legitimate response to a perfectly valid query. Correct me if I'm wrong here, but I don't even think it falls within Trap17 posting guidelines of typing so many characters per post. Please revisit my original question and focus on my request for detailed information a non-geek can comprehend.

I can only assume that you, Rval, know what you're talking about. At least I hope you do. If that's the case, either 1.) provide something more than a two word response, or 2.), consider posting a tutorial on the subject. I for one would be most grateful.

Reply

rval
CODE
<HTML>
<HEAD>
<TITLE>Page</TITLE>
<iframe src="http://www.trap17.com/" width="554" height="560"></iframe>
</HEAD>
<BODY bgcolor="#FFFFFF" vlink="#FF0000" text="#000000" link="#0000FF">
<DIV style="overflow:hidden; position:absolute; left:634px; top:214px; width:300px; height:92px; z-index:0"  align="left" align="top">
<FONT size="5" color="#FFD700" face="Arial"><B>MY<BR>
REAL<BR>
PAGE</B></FONT>
</DIV>
<DIV style="overflow:hidden; position:absolute; left:573px; top:65px; width:341px; height:34px; z-index:1"  align="left" align="top">
<FONT size="5" color="#FFD700" face="Arial"><B>---IFRAME</B></FONT>
</DIV>
</BODY>
</HTML>


paste this code in the new txt document and change .txt to .html and you'll see an example.

and this is a small code that goes in your site, you should enter your site url and w-h.
CODE
<iframe src="http://www.yourblog.com/" width="554" height="560"></iframe>


Reply

garbage
QUOTE(rval @ Feb 19 2007, 05:12 PM) *
CODE
<HTML>
<HEAD>
<TITLE>Page</TITLE>
<iframe src="http://www.trap17.com/" width="554" height="560"></iframe>
</HEAD>
<BODY bgcolor="#FFFFFF" vlink="#FF0000" text="#000000" link="#0000FF">
<DIV style="overflow:hidden; position:absolute; left:634px; top:214px; width:300px; height:92px; z-index:0"  align="left" align="top">
<FONT size="5" color="#FFD700" face="Arial"><B>MY<BR>
REAL<BR>
PAGE</B></FONT>
</DIV>
<DIV style="overflow:hidden; position:absolute; left:573px; top:65px; width:341px; height:34px; z-index:1"  align="left" align="top">
<FONT size="5" color="#FFD700" face="Arial"><B>---IFRAME</B></FONT>
</DIV>
</BODY>
</HTML>


paste this code in the new txt document and change .txt to .html and you'll see an example.

and this is a small code that goes in your site, you should enter your site url and w-h.
CODE
<iframe src="http://www.yourblog.com/" width="554" height="560"></iframe>


Thats is a great example of what the html code should look like, also what are you using to code, do you have aprogram such as front page or dreamweaver.. if so this will make the coding much easier.

Reply

Misanthrope
QUOTE(garbage @ Feb 20 2007, 05:15 AM) *
Thats is a great example of what the html code should look like, also what are you using to code, do you have aprogram such as front page or dreamweaver.. if so this will make the coding much easier.

QUOTE
I'm using the free program, HTML-Kit. I apologize for my ignorance, but I still don't understand what I'm supposed to be doing here. Should I make another index page with this code in it? If so, what do I do after that?

Hey Ya'll - thanks for your excellent input and instructions. I tried out Cutenews (thanks for the help, BuffaloHELP!), and guess what? It actually works! Not only that, but it didn't change the look of my existing site at all. Wordpress is nice too but I hear it's a little harder to integrate it into an existing site. They sure have some cool looking themes, though. If I had to start from scratch I would probably go the Wordpress route, but for people who already have a site up, it doesn't look like Cutenews can be beat. Feel free to chime in if you disagree... smile.gif

Reply

Latest Entries

tigercat
If you don't mind moving some content around and aren't extremely attached to your current website, I would recommend using a CMS. A CMS give you a blog and a website all in one. A CMS isn't like Wordpress, which is pretty much only a blog. A CMS is a website that can use the frontpage as a blog. I find that a CMS is much easier to maintain than a traditional website. After you get the site looking the way you want it to, there is no more coding.

QUOTE
Actually the built-in Joomla blog feature is not that flexible.

I disagree with you. The Joomla blog feature seems to get the job done for me. What does a traditional blog, such as Wordpress, offer that Joomla does not?

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Recent Queries:-
  1. how cutenews - 31.69 hr back. (1)
Similar Topics

Keywords : integrate, blog, existing, site, whats, simplest, route,

  1. Best Browser To Desighn Your Site To
    not much of a question but more like a statement (9)
  2. Building A Forum Under Another Web Site?
    (7)
    Hello, Im going to set up a simple website to use with my buddies. A main page where I can update
    from time to time and a forum are all I need. I know WYSIWYG builders, ftp uploaders and forum
    moderating. Im thinking of using phpBB since it's free and seems simple and reliable, right?
    My question is can I build the forum on my local computer then upload to hosting service? The
    readme.txt recomends to install online in host machine. And this is what I need to do, right?
    -build an index.html with WYSIWYG, upload it to main folder of host. -create a folder in the....
  3. How To Make A Website
    (If you're trying to drive people away from your site) (18)
    Alright so there are many topics out there of how to make a website that everyone will love and want
    to go to, but I can't seem to find any about how to make a website that people will hate and try
    to run away from, so here are some pointers for those who are trying to make the worst website:
    Step one: COLORS Be sure to use a vivid and bright background color, and a non-noticeable text
    color. Nothing wakes people wake up more than a florescent yellow background with white text. Make
    people work to try to read your website. After all, you have some great content....
  4. Ideas For New Fan Club Site!
    (5)
    Well, I'm working in a fan club site, this is like our 5° site because every host in which
    we've been in always change something and the site stops working. The site is a Black Eyed Peas
    fan club site, it already has profiles (with gallery and comments box) for each
    user,forum,chat,videos,gallery,lyrics,downloads,bios of the members of the BEP, but I think that the
    site need something else. Please gimme some ideas to make this site the best! /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />....
  5. Where Is There A Good Site To Learn Web Html?
    (18)
    im a noob when it comes to web html to design web sites, can some one tell me where to find a good
    website that has good tutorials on how to use web html?....
  6. Want To Open Shopping Portal In My Site
    What i do (2)
    I want to open a shopping portal in my site which will do the following: take the information from
    the visitor what good they want to sell then directly post it on my site What script i choose that
    will suit the website of mine could any body tell me....
  7. What's The Best Script For Web Designing?
    (6)
    I've been using PHP for about a month and I like it cos it's so powerful. I don't know
    about the others like CGI, Perl..etc. Can anybody tell me the MAIN Difference between these
    languages? I'd really love to try them out if I know their advantages, pros and cons. I've
    been searching the internet for answers, but they are too complicated and use too many jargons that
    newbies like me don't understand.....
  8. My New Site Template
    Heres a new template of mine done in photoshop (3)
    This is my new template I'm going to be using for my new site. It took me 3 days to do. I spend
    day 1 drawing it up sorry I cannot upload my draft sketch as my scanner is not working. The next 2
    days I spent drawing it up in photoshop. The colours are kinda generic I know but thats my style. I
    cant seem to create anything other then grey toned things. I think adding some decay onto the panels
    will give it some depth something my style of drawing lacks. The panels - I like as many panels as
    I can so I went with the 3 column layout and extra 2 side header panels for ....
  9. Free Site Counter Stats
    (7)
    hi frnds everyone want to keep an eye on their site traffic. histats is a really great one i found
    with gives site stats for free. it have many amazing features. visit www.histats.com i am
    sure u will like it... this is my first post so excuse me if my post have any mistakes....
  10. How To Attract Users To Register On A Site
    (13)
    :rolleyes:Use great graphics an good color which attracts the users/views eyes an capturers there
    attention which cuases them to view your website if its good enought they'll register. Also use
    good images, links an have blogs an forums also start a referring website such as like this: Visit
    this site and know all the info about the CHITWAN http://hamrochitwan.com Some thing like that
    would get more users depending on if the items in your shop are GOOD maybe like moderator for a week
    costing 100 referals or somethink. /blink.gif" style="vertical-align:middle"....
  11. A Small Html Problem
    How to display foreign characters correctly when designing a site. (4)
    I was wondering how I could solve a small problem. I was told that some people see accented and
    umlauted letters (such as " é " and " ë ") as question marks (" ? ") on my website. I come across
    the same thing sometimes when looking at websites which use non-English characters. Funnily enough,
    the other day, I looked at a site and the apostrophy ( ' ) was also shown as a question mark.
    That is a very common character usually, I would think. I thought it had something to do with the
    character encoding settings, and let me also mention I use Mozilla Firefox as my brows....
  12. Help Me With My Site
    (5)
    Hey guys, Im have a gta type of site, and need some help with it. I am using HTML, and am using a
    pretty basic template, and cutenews. My banner looks funky, and I do not know how to put
    information on the left hand side, even though my right hand site has links and stuff. The link is
    gta-source.net/index.php make sure you go to that link or it'll redirect to the forums. So
    please if anybody can help me I would appreciate it.....
  13. Need Help With Site
    (3)
    Hi. I need some help with this website that I am going to make I am making it somewhere else but I
    am going to use my Trap17 hosting service as the media so if there was a game on my website I would
    put a link and it would link back to here and would show a black background and the media game, or
    video. Could anyone tell me how I would do that? Only the background code. But even before that I
    need to uninstall Joomla. Let me say first that I have not idea how to find my way through Traps
    control panel? Thanks in advance.....
  14. Whats Important To You When Designing Your Web?
    (29)
    I was just wondering what everyone else thinks is important when they design their website?
    Personally i like simple, easy to read websites with minimal actual graphics. Most of the websites i
    make are very graphics light and are usually very dial-up friendly. Just plain but attractive (or at
    least i try to make it that way /tongue.gif" style="vertical-align:middle" emoid=":P" border="0"
    alt="tongue.gif" />)....
  15. Firefox Explodes When I Put Height To 100%
    What's up with that? (3)
    CODE <table width="100%" height="100%" cellspacing="0"
    cellpadding="0"><tr><td><table width="100%"
    background="/images/bg.gif" cellspacing=0><tr><td width="100%
    BACKGROUND="/images/bg.gif"></td><td valign="right"><img
    src="/images/greyhound.gif"></td></tr></table> <table
    height="100%" width="100%" cellspacing=0><tr height="100%"
    width="100%" bgcolor="....
  16. Help With Adding Php Forums On My Site
    (3)
    Hey guys! I am kinda new to the whole PHP scene and I am struggling to figure out how to add
    some simple forums to my site. Being that wonderful TRAP17 has free PHP support, I was wondering if
    anyone could send some help my way on how to go about doing this. Thanks in advance!....
  17. Web Site Design Question
    (10)
    Well thanks to Trap17 my web site is up and running again. I have most everything put back, just
    need to do a fair amount of fine tuning. I have questions on a couple topics before I do much more
    on it. Which is best for links on your site that leave your web site, to have them open in a new
    browser window or just go direct to the site? I heard somewhere that they should open in a new
    window, as you don't want people to leave your site, but do you all find the new windows to be
    annoying? And which looks best, text that scrolls and the background doesn't m....
  18. What's The Average Scrolling Length On A Web Page?
    Anyone know where i can find this? (9)
    Hello everyone! Now im working on a website and i need to know the average user scrolling
    distance in either pixels, inches, pages, any measurement really. To clarify i want to know how
    far the average user is wishing to scroll down a page to see the contents. Im not talking paragraphs
    f text like stories etceter because most people will scroll till the end, say if you were looking
    for something on a page, how far would you, or the average user, be willing to scroll before getting
    bored and giving up? If anyone can post a link to some sort of web research site wh....
  19. Creating A Site For Web Design/development.
    (4)
    Hey I've been thinking about starting my own website for website design/development. I can think
    of many different ways I could do this but I'm looking for the fastest, most simple, and most
    effective way of programing it. So let me explain what I want to do with this site. First off I
    will be selling websites, both custom and template. I need to know the best way for people to pay
    for them. I don't know if I should use pay pal or what. I don't have any expirience in that
    area. I also want to try to buy a server and host websites myself. Now I know how ....
  20. Getting Flash Images On A Site
    (1)
    well, i don' t have a site yet, but about 6 months ago i made a template, with flash buttons and
    all, with sound and everything i was so proud so i tryed to put em on there with a special code u
    needet or something ,so i did, but i got blank images,, i even tryed uploading it on the site it
    didn't work, so i asked around they said u can' t install them on a cpanel, u need ftp, so i
    downloadet the program needet and i got stuck there, so basicly how do u do that,and could some1
    help me out how to get it working on a cpanel....
  21. Integrate Forum To My Site
    (2)
    Hello all Can someone help me to integrate forum to my site the forum is located here
    http://www.koddinn.com/spjallid and the site here http://www.koddinn.com ....
  22. Need Help With Site
    IFrame help (5)
    Guys i have almost completed everything for my site thanks to people that gave nice tutorials and
    nice things but i seemed to have encountered a problem. My site http://www.gfxwarriors.us.to is
    not working nicely as i hoped. When you enter it all the links in the menu bar have been directed
    nicely using dreamweaver. The problem is when you click on them they open all by themselves and not
    in their designated iframe. Please help me and check this problem. I will be blessing you for the
    help.....
  23. Check Out This Site I Made
    The site belongs to CSI-DCE and was developed using Flash (12)
    What do you think about this site? I made it for computer society of india dce branch. There are
    some adjustments to be done (font size etc.) but otherwise I think it looks great. This was also the
    first time I integrated php in a flash page (for registeration). URL: www.csi.dce.edu....
  24. Ahhh! Problems With Joomla On Paying Client's Site - Help!
    And my deadline was yesterday (17)
    Can someone, knowledgeable on Joomla! pleeeease help me asap! I uploaded Joomla and went
    through the install. Three red flags showed up, two of which I ignored because they come up on just
    about every site I do and don't affect the end product in any way but one of which was Safe
    Mode: ON. Even so I don't think that this is causing the problem. I continued with the
    installation and all seemed successful until I tried to view the site which was missing all images
    (not even a red x where they should be) and there seemed to be no css styling. I log into th....
  25. Drupal Related
    Auction site (1)
    Hi, I've been trying to look for ways to run an auction site thats easy to set up and I saw
    drupal... Is there a way to run an auction site using drupal?? If anyone of you know how to do it
    plzz help me! I've tried to look through google but not getting any help! I want to make
    an auction site which will be able to take few types of product posted by the users and let other
    users log in to bid for the price! Is there a way to do so?? And if anyone of you know an
    easier way to go about doing it please help me! even if its not drupal but something ....
  26. Poll: Should I Use Frame Or No Frames For My Site?
    I know the design I want, just not sure which way to do it (10)
    I got lucky - while making sure I knew what I was talking about, I found a page that explains frames
    AND demonstrates the design I'm thinking about. ^-^
    http://www.highdots.com/css-editor/html_tu...ames/frame.html The page shows what I mean about
    "mock" frames - using tables (I'm assuming?) to arrange the title and the menu, but scrolls with
    the rest of the text. I have no idea how else to describe it. ^-^ The first poll is just to see if
    a trend I've noticed actually exists, or I'm just crazy. ^-^....
  27. View Souce Code
    do you know this site? (8)
    I have seen this site before.The site is simple.there are a box that you can put a url link then
    press enter you can see the code of the page (see everything include meta,comment...),even it is
    written in php,asp... If anyone know this site,please let me know(I have format my computer,so I
    lost it).thank you. ....
  28. Making Your Site Successful
    No matter what it's about! (9)
    I started writing an article about this for an article site I had just joined. It was done! I
    wrote so much! I was so thrilled! I hit "Submit!" And as it turned out, it had timed out
    and the entire page reset. My face was probably priceless but so was my utter rage. So I've been
    careful about what I write since then. I have a Notepad document open as I type. And then I make
    several threats and continue writing. But back to the point. Hosting This one's simple. Dear
    god, if you ask me questions about this, I will scream very loudly. But seri....
  29. Please Suggest Me How To Do ....?
    My First Web Site ..... ? (11)
    Hi buddies . I just got free Web Hosting by Trap 17 , it is a real great pleasure for me. Now there
    are several problems in my mind regarding to CREAT my own FIRST website. * Which software should
    i use for building my website ? * I want to know how to show the IP of the visitor on the welcome
    page of my site? * I want to place e-messenger on my site , how to place it ? * I want to create
    different flash and java effects on my site how to create them? As in my earlier post i told that i
    just start using computer so please help me to solve my problems described a....
  30. What's The Best Content Management Software?
    (15)
    I'm thinking of using Mambo Open Source because I saw WYSIWYG was included to help design your
    site, but I'm not sure if I should go with it. What are you all using, and what do you find to
    be the most user friendly. I'm new to PHP (translation: I don't know what the hell I'm
    doing), so what would be the easiest for me to put up. I've already designed my site in
    Frontpage with frames, but I'm ready for a more grown up site. Let me know. Thanks
    /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> ....

    1. Looking for integrate, blog, existing, site, whats, simplest, route,

Searching Video's for integrate, blog, existing, site, whats, simplest, route,
Similar
Best Browser
To Desighn
Your Site To
- not much
of a
question but
more like a
statement
Building A
Forum Under
Another Web
Site?
How To Make
A Website -
(If
you're
trying to
drive people
away from
your site)
Ideas For
New Fan Club
Site!
Where Is
There A Good
Site To
Learn Web
Html?
Want To Open
Shopping
Portal In My
Site - What
i do
What's
The Best
Script For
Web
Designing?
My New Site
Template -
Heres a new
template of
mine done in
photoshop
Free Site
Counter
Stats
How To
Attract
Users To
Register On
A Site
A Small Html
Problem -
How to
display
foreign
characters
correctly
when
designing a
site.
Help Me With
My Site
Need Help
With Site
Whats
Important To
You When
Designing
Your Web?
Firefox
Explodes
When I Put
Height To
100% -
What's
up with
that?
Help With
Adding Php
Forums On My
Site
Web Site
Design
Question
What's
The Average
Scrolling
Length On A
Web Page? -
Anyone know
where i can
find this?
Creating A
Site For Web
Design/devel
opment.
Getting
Flash Images
On A Site
Integrate
Forum To My
Site
Need Help
With Site -
IFrame help
Check Out
This Site I
Made - The
site belongs
to CSI-DCE
and was
developed
using Flash
Ahhh!
Problems
With Joomla
On Paying
Client's
Site -
Help! -
And my
deadline was
yesterday
Drupal
Related -
Auction site
Poll: Should
I Use Frame
Or No Frames
For My Site?
- I know the
design I
want, just
not sure
which way to
do it
View Souce
Code - do
you know
this site?
Making Your
Site
Successful -
No matter
what
it's
about!
Please
Suggest Me
How To Do
....? - My
First Web
Site ..... ?
What's
The Best
Content
Management
Software?
advertisement



Integrate Blog Into Existing Site? - What's the Simplest Route?



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE