Help with Ravenna tutorial site

After installig i see error:
Unable to retrieve search results. Unable to retrieve search results. Unable to create result set for query 'SELECT IdcColl1.dID, dDocName, dDocTitle, dDocType, dRevisionID, dSecurityGroup, dDocAuthor, dDocAccount, dRevLabel, dFormat, dOriginalName, dExtension, dWebExtension, dInDate, dOutDate, dPublishType, dRendition1, dRendition2, VaultFileSize, WebFileSize, URL, dFullTextFormat, dFullTextCharset, DocMeta.* FROM IdcColl1, DocMeta WHERE IdcColl1.dID=DocMeta.dID AND ((((( (CONTAINS(xWebsites, 'RVH')> 0) )) AND ( xWebsiteObjectType LIKE 'Layout File' )))) ORDER BY dInDate DESC'. ORA-20000: Oracle Text error: DRG-10599
And no dynamic content on site!
Fulltext is on (config + SQL script)! DB: Oracle 9.2
I am aready saw this error when tryed to use MSSQL2000! But I resolved this problem! Just added table DOCMETA to Fulltext index catalog!
What I have to do with Oracle DB?
Thanx

Guys,
If you have this problem, it probably means you didn't install and configure UCM component "DBSearchContainsOpSupport", which is required by Site Studio. See sections 2.1 and 2.4.6 of the Site Studio Installation Guide (Site_Studio_Installation_Guide.pdf).
I had the exact problem shown above. To fix it, I installed DBSearchContainsOpSupport, did the Zone Fields Configuration as instructed on page 2.4.6 of the install guide, and did a full index rebuild. This fixed the problem immediately - there is no need to manually create fulltext index columns.
Cheers,
-Tim

Similar Messages

  • Help with RMI tutorial (and Eclipse)

    Hi!
    I need a little help with RMI tutorial. I have all source files from tutorial downloaded, but I never did anything like this and don't know, how to run it. I somehow did Building a JAR File of Interface Classes from [http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/rmi/compiling.html], but got stuck on simple HTTP server, I didn't understand, what to do.
    Bonus question: is it possible to do those commands from Eclipse? How?
    Thanks a lot!

    It seems that the example provided (in the link) requires a web serverNo it doesn't. It requires an HTTP server.
    tomcat will be a better option which you can useThe Apache HTTP server might be more to the point.
    But If you are new to RMI and need to understand the exact flow of RMI I think this will not be a better exercise to start withI agree. I would get it running without the codebase feature. This isn't as widely used as you might think, and anyway it is a deployment option not something you need to engage with much when developing.
    @OP: ignore the HTTP stuff and the codebase feature and build 3 JAR files:
    (a) the common stuff (remote interface, stubs if any, and any classes referecned by the remote interface)
    (b) the server (the remote object itself and anything server-side it uses)
    (c) the client.
    The common JAR file should be deployed to both the server and the client, and both the other JARs should name it in their Class-Path entry in the manifest.

  • Importing the Ravenna Tutorial Site

    Hello, I was able to import the RVH Tutorial Site and everything went as planned, EXCEPT after it installs then I go and run the Indexer because the doc says that needs to be done before you can view the site in teh browser. Well I went in to the Repository Manager and Ran the "Collection Rebuild Cycle" it Finished and is now sitting idle. I now try to go to the site and I get page not found.
    http://myserver/rvh
    WHY? What am I missing?
    I also went to the files where that folder exists and there is no index.htm like the doc says, I only see the follow:
    sitenavigation.hda 22-Apr-2009 15:35 1.6K
    sitenavigation.js 22-Apr-2009 15:35 9.4K
    sitenavigation.xml 22-Apr-2009 15:35 6.0K
    sitenavigation_co.hda 22-Apr-2009 15:35 1.7K
    sitenavigationfuncti..> 22-Apr-2009 15:35 11K
    Is this correct?
    Any help would be greatly appreciated. Thank you.
    BrettM

    Hi
    I'm still not able to view my site in the Browser.
    here are the Apache conf file settings that i have made:
    LoadModule IdcApacheAuth C:/oracle/ucm/idcm1/shared/os/win32/lib/IdcApache22Auth.dll
    IdcUserDB idcm1 C:/oracle/ucm/idcm1/data/users/userdb.txt
    Alias /idcm1 C:\oracle\ucm\idcm1\weblayout
    <Location /idcm1>
    Order allow,deny
    Allow from all
    DirectoryIndex portal.htm
    IdcSecurity idcm1
    </Location>
    <Location /WH_Nabtrade>
    Order allow,deny
    Allow from all
    DirectoryIndex index.htm
    IdcSecurity idcm1
    </Location>
    <Location /WH_Nabtrade>
    IdcSecurity idcm1
    </Location>
    UseCanonicalName off
    Edited by: Gary on Jun 10, 2010 5:09 AM

  • PHP Help with inherited database site

    Hope someone can help with this, although I might be a bit vague. (But will be happy to post any code that might help.)
    Basically I do a few sites for a company, and everything is coming together nicely moving everything to a new reseller hosting account where everything can site. I'm basically doing some redesign and new database work for them.
    But there's one site I'm basically just trying to move over, that already has a database. I've copied the site onto the new hosting, copied the database across and created a new connection file.
    I must admit the code is all a bit more PHPO heavy than what I'm used to working with. so have run into a problem trying to figure out what data is not displaying due to queries failing. As far as I can tell the connection is working, and the queries have not changed.
    Anyway - the main page is here, where you should be able to click on the furniture images to go to the product page :
    http://www.miradatravelmedia.com/lusty/public_html/index.php
    But when you click through the product page query is failing :
    http://www.miradatravelmedia.com/lusty/public_html/products.php?category=1
    The products page is mostly PHP and looks like this :
    [PHP]<?php
    if (!@empty($_REQUEST["img"])) {
      require_once("../includes/hft_image.php");
      $img = new hft_image($_REQUEST["img"]);
      $img->resize(200,180,"-");
      $img->output_resized("");
      exit;
    $page = "products";
    include("../includes/header.php");
    include("../includes/db_open.php");
    $sql = "SELECT `id`, `name` FROM `categories` WHERE `id` = '" . $_REQUEST["category"] . "'";
    $result = mysql_query($sql) or die("Query failed : $sql at line " . __line__);
    $category = mysql_fetch_assoc($result);
    ?>
    <div id="trail"><a href="shop.php">Shop</a> &gt; Lloyd Loom <?php echo $category["name"]?></div>
      <div class="clear" id="divider1"><img src="images/spacer.gif" alt="<?php echo keyword()?>" /></div>
    <h1>Lloyd Loom <?php echo $category["name"]?></h1>
    <?php
    $sql =
      "SELECT * " .
      "FROM `products` " .
      "WHERE `category` = '" . $_REQUEST["category"] . "' " .
      "ORDER BY `order`";
    $result = mysql_query($sql) or die("Query failed : $sql at line " . __line__);
    if (mysql_num_rows($result) == 0) {
    ?>
    <p>Coming soon ...</p>
    <?php
    } else {
      $n = 0;
      while ($row = mysql_fetch_assoc($result)) {
        $n++;
    ?>
    <a href="product.php?id=<?php echo $row["id"]?>" class="product"<?php if ($n == mysql_num_rows($result)) echo " id=\"last\""?>>
    <?php
        if ($file = glob("images/products/" . $row["id"] . "_*.*")) {
    ?>
    <img src="img.php?img=<?php echo $file[0]?>&width=200&height=180" alt="<?php echo $row["code"]?>" />
    <?php
        } else {
    ?>
    <div id="no_image">No image found</div>
    <?php
    ?>
    <?php echo $row["code"]?>
    </a>
    <?php
        if (is_int($n / 4)) {
    ?>
    <div class="clear"><img src="images/spacer.gif" alt="<?php echo keyword()?>" /></div>
    <?php
    ?>
      <div class="clear" id="divider2"><img src="images/spacer.gif" alt="<?php echo keyword()?>" /></div>
    <?php
    include("../includes/footer.php");
    ?>[/PHP]
    If anyone could shed any light on what's going wrong still, that would be much appreciated.
    Thanks.

    Iain71 wrote:
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''categories' WHERE 'id' = '1'' at line 1
    So it does look a bit odd with the quotes.
    Column names in a SQL query must not be in quotes. The MySQL error message tells you that the SQL syntax error is "near" the section it refers to. In other words, the error is just before that part of the query. Normally, you need to display the whole query to spot the error, but it's obvious in this particular case, because there's a quotation mark after categories, indicating that you've put the column name in quotes. Anyway, you've solved that problem by using the version I suggested.
    I still haven't managed to establish where this vat.php file is - is there any explanation for it not being visible on the original hosting server where the site is working? And could it have anything to do with the query not working?
    No, it has nothing to do with the query not working, and the reason you can't see it on the live site is because there's no error. The error message on your test site tells you exactly where to look for the problem. The file vat.php is included by header.php on line 19. Either vat.php isn't on your server, or the code on line 19 of header.php is pointing to the wrong location.

  • Help with fonts on site design

    I need help with the fonts. For my menu i used a pixel font
    (so no anti-alias enabled). When i test my site and click on the
    links, the pixel font turns into and anti-alias font and it makes
    everything look ugly. How can i fix this??
    heres my .swf file. Click on portfolio link then webdesign
    and see what i mean
    http://img411.imageshack.us/my.php?image=siteyl9.swf&width=800

    quote:
    Originally posted by:
    Elenaa5
    Thank you! That worked =)
    You're welcome.
    I like your site, keep up the good work =)

  • Help with a "buggy" site

    Hey guys,
    I finally got my domain with my flash site up on it. It's a fairly simple site, but I have been having a lot of times (especially with optimizing and making it fast) Im still having speed issues, even though I have linked every image, optimized every image, etc. So I guess thats my first questions: any secrets I may not have heard of for optimizing?
    Second, when you open my site you will see some other bugs. My homepage is what I call a clicktable, and as soon as you click a square, a dotted line surrounds the entire "workspace" like it is outlinging the exact size of my catalyst document. This appeared out of the blue..I have no idea why (it was up on another server with no problems). Another problem is when you click to different pages things kind of spaz out (you will see what I mean)...another problem that never used to be there. If anyone has any tips on any of this I would be very grateful! Also, any critique in general. Thanks!
    Zack

    See Corrupt iPod classic.
    tt2

  • Noob needs help with hosting multiple sites

    Hello I am new to this multi hosting. I have looked on the forum for answers but haven't found any. I am trying to figure out how to host multiple sites. I have my dns working for my default site "example1.com", but need to know if I need to add another dns record for my second site. "example2.com". Also when I point to the new fold that has the second site in it and I assign it port 82 for testing purposes I get an error message saying 403 access forbidden. I need to find out how get permission to view the site for the public. Its in a separate folder on an external hard drive right now for testing purposes. Can any body help me or point me in the right direction? Thanks so much!!!
    -Kcam1999

    {quote}
    While what you are telling him is technically functional, it is not correct
    I beg to differ, Paul. You are the one that is not correct.
    CNAMES have been deprecated as of some years ago
    What? huh? really?
    Please show me any official document that states this (and not someone who just started a rumor because he didn't understand them). Indeed, the DNS RFC makes no such claim.
    {quote}
    I stand very much corrected. CNAMEs are not officially deprecated. Interestingly, your post cites precisely what happens when CNAMES used carelessly. How many transactions are needed to resolve Apple's CNAME chain below? RFC1912 (http://www.faqs.org/rfcs/rfc1912.html) has some recommendations that suggests Apple's own network folks have, like me and perhaps even others here, some learning to do. Is that a 'best practice?'
    {quote}> Then make sure you tell Apple since this site depends on the use of CNAMEs:
    dig discussions.apple.com
    discussions.apple.com. 492 IN CNAME discussions.apple.com.edgesuite.net.
    discussions.apple.com.edgesuite.net. 4427 IN CNAME a1399.b.akamai.net.
    a1399.b.akamai.net. 2 IN A 128.241.220.82
    a1399.b.akamai.net. 2 IN A 128.241.220.72
    In fact, it uses TWO CNAMES in a chain. Oh my.{quote}
    From RFC1912 (which I'm sure many have now read here), section 2.4 is as follows:
    {quote}... having chained records such as CNAMEs pointing to CNAMEs may
    make administration issues easier, but is known to tickle bugs in
    some resolvers that fail to check loops correctly. As a result some
    hosts may not be able to resolve such names.{quote}
    {quote}> It is not valid to say "don't use these because they could cause problems'. A records can be just as problematic, as can PTRs. Let's not even talk about MX.{quote}
    How, exactly, does is an A record problematic? No chains, no additional lookups, no wasted cycles...
    We differ here -- and if we are dealing with a newbie, we don't need to enter into unnecessary complexity UNTIL it is a requirement for their solutions.
    {quote}> There are many valid reasons to use CNAMEs in DNS, not least of which is the ease of moving a service if it uses CNAMEs. For example, if you have 10 A records all pointing at the same server and you want to migrate to a different machine you have to locate and update all 10 records. If they used a CNAME to the physical server you could move them all at once using a single change. This is especially important in cross-domain links where you may not control all the origin zone files.
    {quote}
    You're somewhat reaching here, and it is well beyond the scope of the OP's post or needs (well, until they tell us more about their needs, I suppose). There is nothing difficult about 'finding' and updating the necessary records. The final example you gave is a good one and I'll say THAT is an appropriate use of a CNAME, 'though there are other workarounds for it.
    Thanks for keeping me honest.

  • I need help with this tutorial from the Adobe website

    I'm almost done with my flash game which I created with flash pro cc. And i have been looking for tutorials to integrate my game to the Facebook and this is the only one I found. http://www.adobe.com/devnet/games/articles/getting-started-with-facebooksdk-actionscript3. html
    Am I on the right track?? The editor uses Flash Builder but I'm using Flash Pro cc.
    --- On Step 2: "Set up a development server for the Flash app",
            Sub-step #2. "To simplify the development process, configure Flash Builder to compile into your htdocs/fbdemo folder and run (or debug) the app on your server (see Figure 2)."
    1) But I can't find "ActionScript Build Path"(which is highlighted on the Figure 2 screenshot) or anything like that in Flash pro. Same for the "Output folder URL".
    Can I actually do the same things with Flash Pro cc?? Also #3 is "Verify that your app runs from your server." How do you run your app from your server??
    ---- On Step 4: "Initialize the Facebook JS SDK",
    2) so if I setup a server on a localhost just like the tutorial, I don't need to change the following? This is on line #6.
    channelUrl : 'www.YOUR_DOMAIN.COM/channel.html'
    can i just leave it like that ?
    3) So if I complete the tutorial, can facebook users play my game? or do i have more things to do?
    4) is there any other tutorial for Flash Pro CC to Facebook integration???
    Thank you so much for your help and time.

    this is an excerpt from http://www.amazon.com/Flash-Game-Development-Social-Mobile/dp/1435460200/ref=sr_1_1?ie=UTF 8&qid=1388031189&sr=8-1&keywords=gladstien
    The simplest way to hook into Facebook is to add their Plugins to add a Like button, Send button, Login button etc to your game.  If you only want to add a Like button to a page on your website, you can use the following iframe tag anywhere (between the body tags) in your html document where you want the Facebook Like button to appear:
    <iframe src="http://www.facebook.com/plugins/like.php?href=yoursite.com/subdirectory/page.html" scrolling="no" frameborder="0" style="border:none; width:500px; height:25px"></iframe> 
    Where the href attribute is equal to the absolute URL to your html file.  For example:
    <iframe src="http://www.facebook.com/plugins/like.php?href=kglad.com/Files/fb/" scrolling="no" frameborder="0" style="border:none; width:500px; height:25px"></iframe>
    points to index.html in kglad/com/Files/fb.
    However, to get the most out of Facebook you will need to use JavaScript or the Facebook ActionScript API and register your game on the Facebook Developer App page.  Before you can register your game with Facebook, you will need to be registered with Facebook and you will need to Login. 
    Once you are logged-in, you can go to https://developers.facebook.com/apps and click Create New App to register your game with Facebook.  (See Fig11-01.) 
    ***Insert Fig11-01.tif***
    [Facebook's Create New App form.]
    Enter your App Name (the name of your game) and click continue.  Complete the Security Check (see Fig11-02) and click Submit.  You should see the App Dashboard where you enter details about your game.  (See Fig11-03.)
    ***Insert Fig11-02.tif***
    [Security Check form.]
    ***Insert Fig11-03.tif***
    [App Dashboard with Basic Settings selected.]
    If you mouse over a question mark, you will see an explanation of what is required to complete this form.  Enter a Namespace, from the Category selection pick Games, and then select a sub-category. 
    Your game can integrate with Facebook several ways and they are listed above the Save Changes button. You can select more than one but for now only select Website with Facebook Login and App on Facebook, enter the fully qualified URL to your game and click Save Changes. (See Fig11-04.)
    ***Insert Fig11-04.tif***
    [Facebook integration menu expanded.]
    You can return to https://developers.facebook.com/apps any time and edit your entries.  Your game(s) will be listed on the left and you can use the Edit App button to make changes and the Create New App button to add another game.
    Click on the App Center link on the left.  (See Fig11-05a and Fig11-05b.)  Fill in everything that is not optional and upload all the required images. Again, if you mouse over the question marks you will see requirement details including exact image sizes for the icons, banners and screenshots.
    ***Insert Fig11-05a.tif***
    [Top half of the App Center form.]
    ***Insert Fig11-05b.tif***
    [Bottom half of the App Center form.]
    When you are finished click Save Changes and Submit App Detail Page.  You should then see Additional Notes and Terms. (See Fig11-06.)
    ***Insert Fig11-06.tif***
      [Additional Notes and Terms.]
    Tick the checkboxes and click Review Submission.  If everything looks acceptable, click Submit.  You should then see something like Fig11-07.
    ***Insert Fig11-07.tif***
      [After agreeing with Facebook's terms, you should be directed back to App Center and see this modal window.]
    You are now ready to integrate your game with Facebook's API.  Because there is a Facebook ActionScript API that communicates with Facebook's API, you need not work directly with the Facebook API.
    But before I cover Adobe's Facebook ActionScript API, I am going to cover how you can use the Facebook JavaScript API directly.  There no reason to actually do that while the Facebook ActionScript API still works but by the time you read this, the Facebook ActionScript API may no longer work.
    In addition, this section shows the basics needed to use any JavaScript API so it applies to any social network that has a JavaScript API including the next "hot" social network that will arise in the future.

  • Need some help with social net site

    I need to create a site with editable user profiles, the site
    will feature sports stats that the user can update.
    I use Dreamweaver and MYSQL but I need some direction. Im
    starting from scratch here, are there any templates or free source
    code to go off of? I really need some help!!

    "Funks Da Burn" <[email protected]> wrote in
    message
    news:g1np74$eej$[email protected]..
    >I need to create a site with editable user profiles, the
    site will feature
    > sports stats that the user can update.
    > I use Dreamweaver and MYSQL but I need some direction.
    Im starting from
    > scratch here, are there any templates or free source
    code to go off of? I
    > really need some help!!
    That's not something you can do using templates or by
    dropping in a free
    script; it's pretty complicated. You need to know how to
    design a database
    and write server-side code. Dreamweaver will help you write
    the code, but
    you still need to plan and design the whole application. I'd
    recommend
    starting with a book. It sounds like PHP is going to be your
    best bet - does
    your host server support it? If so, do a search on Amazon.com
    for books on
    Dreamweaver and PHP, and/or ask for recommendations here.
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • Need help with JCAPS tutorial

    Hi,
    I'm just getting started with JCAPS, and am going through the Java(TM) Composite Application Platform Suite Tutorial. I'm at the point of defining the fields for the CustomerInfo message. The tutorial says to set the Part Type to xsd:string. However, when I click on the [...] to select type, I get an error dialog "Fail to load Simple Types". The 'Select part' dialog that comes up is completely empty.
    Any clues as to what I have missed? Is there something I need to install in the repository?
    Thanks in advance,
    Dave

    OK, never mind. I went back into the repository and loaded a bunch of stuff, updated eDesigner, and now I get the list.
    I must say I'm finding this to be very confusing. The tutorial is a lot of "do this, then do this" with no explaination of why or how it all fits together. That is where I am the most confused; how does it all fit together. Just like with this problem; I really don't like taking such a shotgun approach to solving problems. I have no idea what the problem was, or what I did that fixed it. That, to me, isn't really helpful.

  • Need help with dreamweaverMX tutorial

    I am using dreamweaverMX tutorial with coldfusion free
    edition developement.
    On dreamweaver, when I tried to insert a record on the server
    behavior panel, I get this message saying:
    "This server behavior requires a Coldfusion data source".
    Please Help!
    Georgeslys,

    You are trying to add a recordset to a page, right? You need
    to have told
    the page where to GET that recordset first, by adding a data
    connection to
    it.
    Maybe this will help -
    http://www.adobe.com/devnet/dreamweaver/articles/develop_web_application.html
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "georgeslys" <[email protected]> wrote in
    message
    news:fooa82$eb4$[email protected]..
    > Dear Murry,
    > What exactly do you mean by specify data source?
    >
    > Georgeslys,
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >

  • Please help with a tutorial on Abode Flash

    Have been using abode photoshop for years. Downloaded flash each time it tells me to upgrade, but never used it. would dearly love to use it in my new website.
    Can someone tell me how to access it on my computer. I dont have an icon of flash that specifically says Flash, unlike photoshop and reader. Although it see that is installed on the computer, how to access it.
    Obviously I am not not savy, but would love help.
    Many thanks
    Debby

    Hi Debby and Tony,
    Are you referring to Adobe Flash Pro or Adobe Flash Player?
    Adobe Flash is a multimedia and software platform used for authoring of vector graphics, animation, games and rich Internet applications (RIAs) that can be viewed, played and executed in Adobe Flash Player. Flash is frequently used to add streamed video or audio players, advertisement and interactive multimedia content to web pages.
    Flash manipulates vector and raster graphics to provide animation of text, drawings, and still images. It allows bidirectional streaming of audio and video, and it can capture user input via mouse, keyboard, microphone and camera. Flash applications and animations can be programmed using the object-oriented language called ActionScript. Adobe Flash Professional is the most popular and user-friendly authoring tool for creating the Flash content, which also allows automation via the JavaScript Flash language (JSFL).
    You can download the trial version of Adobe Flash Pro from : https://creative.adobe.com/products/flash
    Tutorials
    http://www.adobe.com/accessibility/products/flash/tutorial.html
    http://tv.adobe.com/videos/flash-tutorial/
    Adobe Flash Player is the standard for delivering high-impact, rich Web content. Designs, animation, and application user interfaces are deployed immediately across all browsers and platforms, attracting and engaging users with a rich Web experience
    Flash Player is a free software and you can fownload it from http://get.adobe.com/flashplayer

  • Help with finding my site in google?

    hi all i have my site up and running and think i have it indexed?
    im after a bit of help regarding how people search for it? for example the website is for my turfing company based in essex called Unique Lawns. i need to know how i go about keywords so if someone was to type in google "turf laid in essex" my site would appear?
    my site is here if you need to look into the code etc: http://www.uniquelawns.com/
    i can find my site in google by typing unique lawns usualy in the top 6-7 on the first page which i think is pretty good as i only submitted it a few days ago, i have been reading about META keywords which im a bit confused about as some say they dont work in google?
    im just after some advice as to how i can get my site found when typing in keywords related to my site,
    also are google adwords any good as i have a free £50 voucher that came with my hosting?
    many thanks for any help

    If, as you say, some of your pages have been indexed by Google, chances are all pages have been indexed..... including the phrase:
    "turf laid in essex"
    A quick Google search returns
    About 1,440,000 results
    for that phrase...and I'll bet your's in there somwhere!
    Why even the mention of
    "turf laid in essex"
    has this Adobe post listed 4th position, first page... saying the post was added 17 minutes ago....
    so remember, in that 1,440,000 results, there are a lot of sites... all wanting to be on the first page... so why did the Adobe post make it and your site did not?
    Look at the time the Adobe Forum has been around... so you have to consider time.
    Look at the massive amount of quality content on the Adobe site... how does your site compare?
    Look at all the other inbound links that the Adobe Forum has built up over all those years? How about your site?
    Don't be discouraged, Google "SEO Princliple" and topics like that... TONS of info available.
    Just remember that pretty much everyone in those 1,440,000 results want to be first page... so competition can be stiff... review and build on sound SEO principles and don't expect it happen overnight.
    Best wishes,
    Adninjastator

  • Help with managing a site on business catalyst

    I am trying to set up a site for a friend of mine using muse. I made the site but would like to set it up for him to manage. He writes alot of articles and would like to post them onto the site himself. When I go into the BC page to manage it all the text is overlaying the other. Is there a way around this and is it possable for him to add more articles with the tabs on the side.
    Link to the site is www.lgbtcollege.com
    Please help me with this.

    Do you have access to a Partner Portal?  You can delete any of your sites from inside the Partner Portal.

  • Help with attaching Dreamweaver site to a domain purchased through Google (GoDaddy)

    Hi Yesterday I set up Google Apps and have bought a domain through them (which they get from GoDaddy) I want to have a more professional looking website than they offer with Google Sites so was going to design one in Adobe DreamWeaver. The only problem is I don't know how to attach the two together. I use design mode as I can't really code (unless following a tutorial) so if anyone can point me in the right direction I would really appreciate it.  Thanks K

    digitalkelzter wrote:
    Hi Yesterday I set up Google Apps and have bought a domain through them (which they get from GoDaddy) I want to have a more professional looking website than they offer with Google Sites so was going to design one in Adobe DreamWeaver. The only problem is I don't know how to attach the two together. I use design mode as I can't really code (unless following a tutorial) so if anyone can point me in the right direction I would really appreciate it.  Thanks K
    1) I believe what you are asking is how to point your domain name to your site.  If this is the case then the first thing you need to do is find a host with whom you can agree to sign a contract for 12 months and upload your files.  If you want a simple host with all the features you are likely to want then I would strongly recommend these people:
    <sky.uk.net>
    2) Then you need to enter the cname of your host on GoDaddy's CPanel.  The full instructions are here:
    <To Add a CNAME Record>
    This should get you started but you may also want to enter your Mx records for your emails sent to your domain name like: [email protected] or whatever.
    3) the full instructions about all this is here:
    <Managing DNS for Your Domain Names>
    4) If, however, you were asking for free templates and extensions for your DW then WebAssists has quite a few to get you started.  Gramps has given you the links so it is a good idea to browse their site and register with them free of charge to download the free extensions from them.  There are some classified as premium but you don't want them now until you are experienced enough to design some sophisticated websites.
    hth

Maybe you are looking for