Creating a public blog

hello guys i am using dreamweaver,, can any one please help
me or tell me how to,,, creat a post blog for public in my
website,, example,, i have website and in hope page i want to add a
post blog or comments post where the visiter should leave comments
or response, but it should add on or appear on my webpage site,,
can anyone please help
many thanks

A couple of products to consider (I have not used, just
noted)
WordPress
http://www.wordpress.org said
to be for blog type pages
or
http://www.contentseed.com
said to be for client editing of an
existing site, somewhat similar to Contribute in concept (not
that
I have used Contribute, or know how it works or what it does)
or
http://www.phpbb.com/ for an open
source (free) forum product

Similar Messages

  • Create a public Internet facing site with SharePoint Foundation

    Hi,
    Would I be able to use SharePoint Foundation to create a public Internet facing site? In addition, where can I find tutorial on how to create public Internet facing sites?
    Thanks a lot!
    Eduardo

    Hi Eduardo,
    You can create public Internet facing site using SharePoint Foundation, e.g. www.wssdemo.com
    Regards,
    Vladimir
    MCTS, SharePoint tips blog: http://buyevich.blogspot.com

  • Create a public access site to see the documents which are created by administrator

    Hi ,
    I am new to the sharepoint. I would like to create a public facing sharepoint 2013 site .
    Main requirement is Administrator must login to site and create a documents in library.  Those documents must visible to everyone. So that site must be public facing. 
    Please let me know step by step how to resolve it as I am new to this.
    Regards,
    Raj

    Hi,
    From your description, my understanding is that you want to let all users have permission to access a document.
    The first method you could create a public facing site with method below:
    1.      
    You should change settings in CA and your site. You could refer to this article:
    http://blog.cloudshare.com/2012/10/15/how-to-enable-anonymous-access-to-a-sharepoint-2013-site/.This is a video for you:
    How to make your SharePoint 2013 site a public facing website?
    https://www.youtube.com/watch?v=SnOmtE1x8JM
    2.      
    Add your document into the home page: Click gear icon -> edit page -> INSERT tab in the Ribbon -> Web Part -> select your document -> Save.
    The second method you could accomplish your requirement via manage your document permission:
    1.      
    Enter your document library.
    2.      
    Click Library Setting in the Ribbon.
    3.      
    Click
    Permissions for this document library under Permissions And Management section.
    4.      
    Click Stop Inheriting Permissions in the Ribbon.
    5.      
    Click Grant Permissions in the Ribbon.
    6.      
    Enter everyone and choose view only as the screenshot below.
    7.      
    Then users can access this document library via its URL(in my case it is:
    http://sp/sites/sharepoint2013/Shared%20Documents/Forms/AllItems.aspx).
    Best Regards
    Vincent Han
    TechNet Community Support

  • More secure public blog pages

    I have got Snow Leopard Server up and hosting several simple public sites without problems. One of my sites has a blog for public view.
    Previously, this site was hosted elsewhere and the blog ran on MovableType. In MT, Blogger, etc. the url for the public page of the blog is different from the url which is used to edit the blog. Thus, the edit/administration log in page can be configured to use SSL or locked down to reduce attempts at hacking the site, while the public views are simple http. Now that it is migrating to SLS 10.6.4, the public blog page has the log in linking to editing/posting functions.
    There are actually two questions. Is there a way to make this more secure? And, is there an easy way to map the blog to another url such as "blog.mysite.net" ? I have played around with creating a duplicate blog page located in the web root where appropriate <div>'s and parts of the native blog page "www.mysite.net/users/username" are copied and certain links are removed. It's a bit flaky. For example, it you protect the blog using a realm to prevent access then include a <div> from the blog page on a page outside the realm, it may not display. It also takes away log in for posting comments.
    How have you solved similar issues?

    The simple idea is to clean up URLs. I wanted to get a variety of simple URLs to point to my blog. For example, "www.yoursite.url/blog" and "blog.yoursite.url" would all call up "www.yoursite.url/users/blogger/weblog" in the browser.
    In this set of instructions, there is only one blog on the site created by the user "blogger":
    The first (getting "www.yoursite.url/blog" to call "www.yoursite.url/users/blogger/weblog") is simple. In Server Admin -> Sites -> yoursite.net (or whatever) under the Aliases tab, click the "+" under "URL Aliases and Redirects" and create a new Redirect where the pattern is "/blog" and the path is "http://www.yoursite.url/users/blogger/weblog" and click OK. Now Save and restart the Web service.
    The other was a bit more challenging but mod_rewrite comes to the rescue.
    First, you need to set up the DNS servers.
    1. Log in to the DNS control panel of your registrar, ISP, or DNS provider (everydns, dyndns, etc.) and add an A record for blog.mysite.net pointing to the public IP address of your firewall/etc. on which your Snow Leopard Server answers http requests.
    2. In Server Admin, under DNS -> Primary zone -> Add New Record -> Alias which is "blog.yoursite.url" pointing to the IP address or name of your SLS.
    Next, you create a web server alias and then rewrite http request coming in to that alias. The steps are:
    1. Stop Web service in Server Admin.
    2. In Server Admin -> Settings -> Modules, make sure rewrite_module is checked.
    3. In Server Admin -> Web -> Sites, select your "www.yoursite.url" which hosts the blog and under the Aliases tab, click the "+" under the Web Server Aliases field and create the alias "blog.yoursite.url"
    4. Now, in Server Admin -> Web -> Sites, select your "www.yoursite.url" which hosts the blog and under the Options tab, enable "Allow All Overrides" and save.
    5. Next is a bit of rewrite configuration. You need to rewrite http request for "blog.yoursite.url" to "www.yoursite.url/users/blogger." Fire up your terminal and "sudo nano -w /etc/apache2/sites/0005your.ip.add.ress_portwww.yoursite.url.conf, find the <Directory> section which looks like this:
    <Directory "/Library/WebServer/Sites/yoursite.url">
    <IfModule mod_dav.c>
    DAV Off
    </IfModule>
    Options All -Includes -ExecCGI -Indexes +MultiViews
    AllowOverride All
    </Directory>
    Edit this to:
    <Directory "/Library/WebServer/Sites/yoursite.url">
    <IfModule mod_dav.c>
    DAV Off
    </IfModule>
    Options All -Includes -ExecCGI -Indexes +MultiViews +FollowSymlinks
    AllowOverride All
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www.* [NC]
    RewriteCond %{HTTP_HOST} ^blog\. [NC]
    RewriteRule ^(.*) http://www.yoursite.url/users/blogger/weblog [R,NC,L]
    </IfModule>
    </Directory>
    Even though mod_rewrite.c is loaded, rewriting will not occur unless the directives "Options +FollowSymlinks" and "RewriteEngine on" are in the conf file or .htaccess file. The first RewriteCond tells the rewrite engine not to attempt rewriting HTTP_HOST requests which start with www. The second RewriteCond checks if the HTTP_POST field begins with "blog." The RewriteRule takes the requested url and rewrites it. Although the url description "^(.*)" matches all urls, we know any http request must be for "www.yoursite.url" or "blog.yoursite.url" because those are the only addresses to which this particular virtual host responds. We excluded "www" so ....]
    6. Now restart the Web service and check it out.

  • How do I create a Public Group on the Calendar Server?

    How do I create a Public Group on the Calendar Server?
    <P>
    Anyone can create Private Groups or Member Only Groups. You must be given
    administrative rights to create Public Groups on the Calendar Server. The
    Calendar Server Admin (SYSOP) can give anyone rights to create Public Groups by
    using the uniadmrights tool.
    <P>
    Go to /users/unison/bin/
    and run the uniadmrights
    tool. Some sample syntax:
    <P>
    To list all users with administrative rights:<P>
    % uniadmrights -ls -host yourhostname
    <P>
    To give John Smith, a user on node 10000, rights to administer Public Groups:<P>
    % uniadmrights -e "S=Smith/G=John" -add -pgrp -n 10000
    <P>
    In Calendar Server 4.0, you also have the option of using the Admin Server GUI
    to assign Administrative
    rights (instead of using the command-line method) by going to User Management,
    Administration Rights.
    <P>
    With the proper administrative rights, log into the Calendar Client. Go to Options,
    Manage Groups to create a new group. Choose PUBLIC from the dropdown window,
    add your users and/or resources and click OK to create the Public Group which
    can be seen by all users on the local Calendar Server.

    The following is info that I found in another post that I have been trying to follow.
    MrHoffman      New England
    Re: Configure DNS - OS X Server Next Steps
    Feb 13, 2011 6:36 AM (in response to Jimbooooooo)
    You're setting up internal DNS services, you referenced your ISP DNS servers and you should not have, and now those servers have no translations for your hosts. This is a common misconfiguration.
    See [configuring DNS on Mac OS X Server|http://labs.hoffmanlabs.com/node/1436] for how to set up your internal DNS server.
    And if there are any references to your ISP DNS servers here (within your client settings, within your server settings, your Airport settings, etc), then you're usually going to have DNS and connectivity problems. You're running a server now, so you'll be running your own services, and (particularly because of NAT here) referencing only your own DNS server(s).
    You may be setting up external DNS (if and when you need that), but that should happen after you set up your internal DNS. The above article has a link to setting up external DNS, when you get around to that, if/when you need in-bound connections into your LAN.

  • Create a public synonym for a db link - "Connection desccriptor not found".

    I want to create a public synonym for a db link.
    The existing db link name is tst.world ( which is in db links table and is working fine).
    I created the following db link using the following command:
    create public synonym "syn.world" for "tst.world";
    It created the synonym successfully.
    If I try the following, it throws error "Connection desccriptor not found".
    select * from [email protected];
    It says "Connection desccriptor not found".
    Any suggestions.
    Thanks in Advance.

    Well then, lookup the Documentation on the CREATE SYNONYM statement in the SQL Language Reference manual.
    The documentation lists the types of objects which you can create synonyms for.
    You can create synonyms for objects referenced across DBLinks.
    You cannot create synonyms for DBLinks.
    Hemant K Chitale

  • Creating a public folder

    Hi all,
    I am quite new to DMS, can u help me in creating a public folder.
    Please guide me in a step- by step procedures.
    Thanks
    Anni

    Dear Anni,
    For creating folder stucture u hv to use easy DMS if u r using Easy DMS.
    if U working on R3;
    thn goto DMS
    Use tcode cv03n, open the document for which you want create folder.
    goto document browser tab for perticular document, here u can create publeic as well as private folder and add documents as per your reqt.
    In this u can also give authorisation of folder as per reqt.
    If u hv any further query, please revert back.
    give points if u find above information useful
    Pramod

  • I'm creating a public website and i have a javascript code that works on all browser except firefox. What should i do?

    Hi,
    I'm creating a public website that has a simple javascript button that will just set an asp.net dropdown value. It works on all browser except firefox...
    website: http://healthcareaustralia-web.sharepoint.com/Doctors/DailyShifts1.aspx
    So when you click on reset button it doesn't set the dropdowns to ALL
    this is the code:
    function resetFilters()
    var dropdown = document.getElementById('ctl00_PlaceHolderMain_DropDownList1');
    var ans = "All";
    dropdown.value = ans.value;
    document.location.href = "/Doctors/DailyShifts1.aspx";
    }

    hello, when i test it with current firefox versions, all works as expected: i choose custom dropdown values & select "filter", when i click "reset" next all dropdowns default back to "all" and the list gets refreshed.
    maybe try to [[Clear the cache - Delete temporary Internet files to fix common website issues|clear the cache]] & and reload the page or for other common troubleshooting steps refer to [[Websites look wrong or appear differently than they should]].

  • Can't create a public connection

    I have searched the forums and none of the solutions worked.
    When I try to create a discoverer connection through AS control, I get this error:
    An error occurred:oracle.disco.oem.configuration.DiscoConfigurationException: Failed to create new Connection. ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "ORASSO.WWSSO_API_PRIVATE", line 244 ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "ORASSO.WWSSO_UTL", line 546 ORA-06502: PL/SQL: numeric or value error ORA-06512: at line 1
    I've been googling it (and searching this forum) for the past 2 days and can't get it to work. Help anyone? Where should I be looking at?
    I see in the error something about SSO, checked that component and it's up (like all the others) but its start time is N/A.
    Any help is appreciated. I must create a public connection in discoverer in order to put worksheets into portal!!

    Exception initializing 'oracle.dbtools.raptor.MonitorJDBCAddin' in extension 'Oracle SQL Developer': oracle.classloader.
    util.AnnotatedNoClassDefFoundError:
    Missing class: oracle.jdbc.OracleDriverThe Oracle driver is not on the classpath.

  • Can FLASH CS3 create weblog's (blog) ?

    hi everybody,
    is that possible to create a weblog (blog) using Flash ?
    if so, is there anywhere a tutorial for that ?
    thank you all,
    P.Smith

    On second thought this is way over my head. I believe I know where the code goes but not sure.(ie. separate action script layer on same timeline)
    q's:
    disappearingPlayBtn.addEventListener(MouseEvent.CLICK,f);                            - (what does "f" refer to on this line?)
    respondToHoverToolBar.visible=false;
    respondToHoverToolBar.addEventListener(MouseEvent.MOUSE_OVER,ff);   -(how do I create the hover bar referenced or do I use the example hover bar?)
                                                                                                                     -(what does "ff" refer to?)
    function f(e:Event){
    DisplayObject(e.currentTarget).visible=false;                                        -(do I need to add/change something on this line?)
    //whatever else
    funtion ff(e:Event){
    DisplayObject(e.currentTarget).visible=true;                    -(do I need to add/change something on this line?)
    thanks

  • How to create a SDN blog?

    Hi all,
    how to create a SDN blog? What is needed?
    Thx,
    Vito

    You may want to check out these instruction in the help elearning cat.
    http://wiki.sdn.sap.com/wiki/x/CRk
    cheers,
    Marilyn
    Edited by: Thomas Zloch on Feb 20, 2011 6:45 PM - Link updated

  • How do I call create a public function to make something happen in another .swf

    Hi guys,
    I am trying to create a public function, i have a decument class with all of my variables in it, I have worked out how to bring in external .swf files, now  I need a way to have an even trigger something on a separate .swf
    So at the moment I have a flunction that works on the parent
    stage.addEventListener(MouseEvent.MOUSE_MOVE, mousePosition);
    function mousePosition(event:MouseEvent) {
    if(mouseX>=125)
    navigator.visible=false;
    trace(mouseX);
    So now how do I make this function public?
    When I try to put it into my document class I get errors because the navigator MC is only on the main timeline. (not in the other swf's that I am opening)
    I am trying to work out how to call the function using a string in my doc class
    public var nav1:String="navigator";
    Then the function
    public function resetnav() 
                         String(nav1+".visible=false;");
    Which seemed like a good idea, but it doesn't work..
    Can you guys help me out here?
    Cheers
    sub

    Hey sorry I spoke too soon, I thought my code was working but my mouse tracking code is actually working off the main timeline.  I sill wan to be able to use your examples though, what is the go with psuedo code? SWF1ToSWF2Connection what is the correct dot syntax for this?
    Cheers
    sub

  • How to create a new blog

    Hi people,
    I know that are a stupid question, but here I go. Anayone can help how to create a new blog in Owc Wiki? I can just create new Wiki Pages. There's a blog created when I create a new domain, I would like delete this and create new blogs.
    I'm using URL http://172.20.1.210:8890/owc_wiki/domain/activities.jz to acess my administration. I won't use webcenter custom application to create a new blog, I just want create in Blog tool.
    Thks in advance
    Nelson

    First of all, there's no such a thing as "stupid question". If you have this question we might not have it well documented.
    Wiki Server and Blog Server is the same thing. When you login to owc_wiki, there is a item on the top menu called owc_wiki Blog. Click there and on the left menu you will see:
    Entries
    Blog Home
    Add New Entry
    Click on "Add New Entry" to create a new post.
    Now comes my tips:
    1. There are web services that you can invoke to manipulate the blogs if you don't want to use Oracle's Interface.
    2. If you only want to remove the outerframe you can add "&inline=1" at the end of the url. Try it on your browser.
    Have fun.

  • Creating Oracle DB blog

    I am thinking to create my own blog, but dont know how to start, need a website, domainname and all the working in doing......any suggestions to start my blog would be help.......

    You could try this --> https://www.blogger.com/start There are many more sites where you can start your blog, but this one has worked fine for me.
    ~ Madrid

  • How i create my own blog by using iWeb?

    note that there is function called iWeb installed in my Macbook Air, however, i dont' know to start or what step i should follow to create my own blog by using that function?

    iWeb is not a function. It's an Application. One of many on your computer.
    You use iWeb to create a website with webpages, including a blog.
    You open iWeb the same way you open other applications.
    When in iWeb you can choose from themes. Each theme has a collection of pages. The name of each page indicates its purpose.
    To learn more about iWeb you can use the Help. Help is not unique to iWeb. All applications have a Help function. Which is usefull if you do not know what a function, or in your case, the application can do.
    http://www.apple.com/support/iweb/

Maybe you are looking for

  • TS2235 How do I install airport express on a windows 7, 64 bit PC ( I am using a Belkin Router)

    I WOULD LIKE TO USE MY IPOD TOUCH TO PLAY MY ITUNES LIBRARY MUSIC IN MY UPSTAIRS HOME THEATER. USING A NEWLY ACQUIRED AIRPORT EXPRESS. HOW DO I INSTALL THE AIRPORT EXPRESS. IT IS ON A LEVEL AWAY FROM MY ROUTER AND PC..

  • Creating SYNONYM for all tables who don't have one at once!

    Hello to all, I'm trying to create synonyms for every table who's missing one at the moment. I'm trying this code: declare cursor cur_objects is select obj.object_name , obj.owner from all_objects obj where owner = '&&SCHEMA_OWNER' AND NOT EXISTS (SE

  • Problems with a c++ code on a linux pc translate into java windows pc

    Hello does anyone know how I can use this c++ code in my java program. This is a c++ code what we use on a linux pc now I have to make the code for a windows pc with java. void GetLocalIP(int s,struct sockaddr_in *local)    struct ifconf cfg;        

  • PDFMaker ファイルが見つかりません

    Microsoft Office WordやMicrosoft Office Excelのファイルを AcrobatでPDFに変換しようとしました. が.「PDFMaker ファイルが見つかりません.インストーラを修復モードで実行しますか?」というエラーを吐いて変換できません. テキストファイル.画像などのMicrosoft Office シリーズ以外のファイルはちゃんと変換できますのに. 今Adobe Acrobat 8 Professionalを使っていますが.この前のAdobe Acrob

  • Color swatch file has radically changed!

    Hi, About a month ago I created a color swatch file of our new company "colors." I put the swatch file (*.ase) into all the respective directories for InDesign, Illustrator, and Photoshop. Well, here it is a month later and I tried loading that file.