Web Counter

I have a very simple database that consist of three fields.
HitNumber (AutoNumber), Date (Now() which automatically inserts the
date) and Site which is the problem. Its very simple all I need is
for my page to add the text "Employment" to the site field in a new
record, the other two fields will be automatically filled but the
only way I know how to add a record is through a form with a submit
button which isn't an option this time. How do I have my page
automatically add this record to my database.
Thanks,
Troy Guthrie

On 22 Sep 2006 in macromedia.dreamweaver.appdev, TGuthrie
wrote:
> I have a very simple database that consist of three
fields.
> HitNumber (AutoNumber), Date (Now() which automatically
inserts the
> date) and Site which is the problem. Its very simple all
I need is
> for my page to add the text "Employment" to the site
field in a new
> record, the other two fields will be automatically
filled but the
> only way I know how to add a record is through a form
with a submit
> button which isn't an option this time. How do I have my
page
> automatically add this record to my database.
If you're trying to find out useage stats for your site, ask
your hosting
provider for raw logs. If you're trying to add a counter to
pages, skip
it. It looks unprofessional.
Joe Makowiec
http://makowiec.net/
Email:
http://makowiec.net/email.php

Similar Messages

  • How can I add a web counter to site that is NOT hosted by apple?

    Iweb 09 is now able to create and publish a web site to NON Apple host. I have one site hosted by apple, and one that is not. It is really great that now I don't need to have another web site editor program. BUT- as this site is created on iweb, I cannot add a web counter because I do not see the html for the site. Iweb 09 does not see to offer the choice of saving to a folder, so that I then would be able to add the html code for the counter.
    I tried to use Itweak, but as the web site is not on my idisk, I have been unable to add the counter. Does anyone have a solution to this problem?

    Old Toad's Tutorial #13 - Adding a StatCounter as an HTML Snippet
    The tutorial site has such a counter as do my Demo Sites.
    OT

  • How can I add web counter into my Muse page?

    Normally with Dreamweaver I added the right code right before the end of body tag. How can I solve this problem with Muse?

    Hi,
    If you have the code for the web counter, you can add it to your Muse site using Insert HTML feature.
    Regards,
    Aish

  • How can I add code (web counter like statcounter) to iWeb '08?

    Hi,
    I have a website that was created in iWeb '08. I would like to add web counting code to my whole site (across all pages), something like statcounter. Is there a way to insert code to all the pages in the site?
    Thanks!

    QuickTimeKirk wrote:
    You need to add that code after you publish your iWeb pages.
    Then "hand edit" those html files using any "plain text editor" and save those files.
    You can also add Statcounter code in an html snippet (it works).
    You can also add it automatically to all your pages post-publishing using
    iWebExpander (it's free): http://guimkie.com/projects/iwebexpander
    or iComment ( costs 10$): http://web.mac.com/cbrantly/iWeb/Software/iComment.html
    Regards,
    Cédric

  • Web Counter with Stats but Hidden - Recommendations Please!

    Hi Folks
    Is there anyone who may be able to recommend a good source for webcounters. I wish to be able to view statistics for website 'hits' but I do not want the webcounter to be visible on my webpage!
    Thanking you in advance for your anticipated help.

    If your host doesn't provide meaningful stats, get Google Analytics.
    http://www.google.com/analytics/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Web Counter Not Working

    Tried the 150 px footer but still didn't work - any ideas why the counter won't show on my home page?

    Hi
    Please find the link given below might help you.
    Fixing Webcam Problems in Windows 7
    Webcam Troubleshooting (Windows 8)
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • How do I add a hit counter to my website?

    How do I go about adding a hit counter to my web site?
    I am running Adobe Dreamweaver CS6.

    Humm.......hit counters are meaningless. They don't provide accurate figures of who has visited your website.
    You'd be better off putting Goolge Analytics on the site - that will give you more accurate feedback.
    If you want to just have some fun Google Web Counter - there are plenty of free resources where you can download the code needed and insert it into your websites page.
    Just grab the code and paste it where you want the counter to show up on your page (not recommended)
    http://www.simplehitcounter.com/

  • Powershell Iterate through webs and lists to get Document ID Value of first item

    After some some trial and error I came up with the follow script. But it's so slow! And seems to be missing my document centre - it has about 80000 items in it.
    Two questions: Can I make this quicker? and why can't it handle getting results from the document centre?
    $webs = (Get-SPSite "http://portal...." | Get-SPWeb -Limit all -ErrorAction SilentlyContinue)
    if($webs.count -ge 1 -OR $webs.count -eq $null)
    foreach($web in $webs)
    $lists = $web.Lists
    foreach($list in $lists)
    if ($list.BaseType -eq "DocumentLibrary" -OR $list.BaseType -eq "GenericList")
    $item = $list.Items[0]
    if (($item -ne $null) -and ($item["Document ID Value"] -ne $null))
    $finalstring = $item["Document ID Value"].ToString()
    write-output $finalstring | Out-File "C:\scripts\results.txt" -append
    $web.Dispose()

    I thought that pointing to items[0] would literally just grab the first item.
    So what do I do here? How can I use an spquery in my code? I'm confused in the order and the exact sytax I would use the spquery.
    Thanks for you help so far Alex.
    Edit: Amended my code, is this correct?
    Add-PSSnapin Microsoft.Sharepoint.PowerShell
    $webcount = 0
    $listcount = 0
    $itemcount = 0
    $itemid = ""
    $TimeStamp = Get-Date
    $Date = $TimeStamp.ToShortDateString()
    $Time = $TimeStamp.ToShortTimeString()
    $webs = (Get-SPSite "Http://portal..." | Get-SPWeb -Limit all -ErrorAction SilentlyContinue)
    $query = New-Object Microsoft.Sharepoint.SPQuery
    $query.Query = "<Where><IsNotNull><FieldRef Name='ID'/></IsNotNull></Where>,<OrderBy><FieldRef Name='_dlc_DocId' Ascending='True'/></OrderBy>"
    $query.ViewFields = "<FieldRef Name='_dlc_DocId'/>"
    if($webs.count -ge 1 -OR $webs.count -eq $null)
    foreach($web in $webs)
    $lists = $web.Lists
    foreach($list in $lists)
    if ($list.BaseType -eq "DocumentLibrary" -OR $list.BaseType -eq "GenericList")
    $listcount += 1
    $items = $list.GetItems($query)
    foreach ($item in $items)
    if ($item["_dlc_DocId"] -ne $null)
    $itemid = $item["_dlc_DocId"].ToString()
    if ($itemid -ne "")
    $itemcount += 1
    $finalstring = $Date + " ; " + $Time + " ; " + $web.url + " ; " + $list.title + " ; " + $itemid
    write-output $finalstring | Out-File "C:\scripts\results.txt" -append
    break
    $webcount += 1
    $web.Dispose()
    Write-Host "Amount of Webs checked:"$webcount
    Write-Host "Amount of Document Library Lists:"$listcount
    Write-Host "Amount of valid IDs:"$itemcount

  • IWeb counter stopped working

    I have been creating and modifying my website successfully for several days. Suddenly today, the counters have completely disappeared from my website when viewed from any browser. I can successfully re-publish from iWeb but the counters are still missing. Any ideas?

    I have been creating and modifying my website
    successfully for several days. Suddenly today, the
    counters have completely disappeared from my website
    when viewed from any browser. I can successfully
    re-publish from iWeb but the counters are still
    missing. Any ideas?
    I'm having the same problem with my web counter. It shows up as a "?" in a box and no hit count. My last count was 555.
    I have been re-inserting a new hit counter and re-publishing but it still doesn't work. It must be a glitch on Apple side.

  • IWeb Help! Changing web page name from Blank + activating Inspector?

    I am back once more as I am having difficulties. My first problem is that I am unable to change the name of a blank web page to anything else apart from 'Blank'. I have typed in a new name, it turns red, but as soon as I press enter it returns back to 'Blank'. I am having real difficulties here as I am presenting my site very soon at University. I have not had problems up to now. To repeat, I am unable to change the name of my web page that I recently opened to anything but 'Blank'... any suggestions?
    Secondly, to activate Inspector... one does what exactly? I have clicked on inspector but I cannot actually seem to activate it (in terms of been able to do anything once it has opened?) I know these are daft little problems but very annoying. I was looking for the web count in there but had no joy, I just want to be able to activate inspector... any suggestions?
    Thanks for your time here.

    jayjournal1 wrote:
    ...to activate Inspector... one does what exactly?
    Most of the Inspector's functions require an element (such as a text box or image) to have been first selected by clicking once upon it. With an element selected in iWeb's main window, the related controls in the Inspector will no longer be grayed out.
    Page names can be changed by clicking once on the name in the sidebar (on the left side of the iWeb window) and then in the Inspector, click on the Page tab (the second one). Type in your new page name and hit Return.

  • Can't change the master page after upgrading to SharePoint 2013.

    After upgrading our farm to SharePoint 2013 we are having trouble changing the master page for sites that don't have sub-sites. We are still using the v4 UI version, and that appears to be what is causing the problem. The error we get when going to /_layouts/ChangeSiteMasterPage.aspx
    is:
    System.NullReferenceException: Object reference not set to an instance of an object.    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaChromeSettingsPage.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I took a peek at the source code for AreaChromeSettingsPage.OnLoad and found that it references a CheckBox control that does not exist in the v4 ChangeSiteMasterPage.aspx:
    protected override void OnLoad(EventArgs e)
    base.OnLoad(e);
    this.EnsureChildControls();
    if (!this.Page.IsPostBack)
    this.LoadValues();
    if (base.Web.Webs.Count == 0)
    this.resetSystemMasterPageSubSitesCheckBox.Visible = false;
    this.resetSubSitesCheckBox.Visible = false;
    this.resetAlternateCssSubSitesCheckBox.Visible = false;
    this.resetThemeSubSitesCheckBox.Visible = false;
    base.ConfigureCancelButton(this.BtnCancel);
    If I manually add a checkbox control with the ID "resetThemeSubSitesCheckBox" to a hidden panel in the v4 copy of ChangeSiteMasterPage.aspx the page works, but obviously this is not a best practice. How can we fix this without upgrading the UI version, which
    we are not yet ready to do?

    Thanks Mike - Could you please share what is your next step then? I also have custom master pages and layout but I am going to make new master page and layout in 2013 as we need to change the existing branding too. so, i upgrade the site collection. I understand
    the Look and Feel will not persist after the upgrade but I am concern that at least the page should show the content on the page after the upgrade. The page had Calendar webppart on it but after the upgrade it is coming blank.
    any suggestion?
    Regards,
    Khushi
    Khushi

  • CS5.5 I can't get testing server, "design" and "Split" views operational

    I just upgraded from DWCS3 to DWCS5.5 and am trying to get php (dynamically related) files working. Very frustrating.
    I have set up everything according to the tutorial at http://www.adobe.com/devnet/dreamweaver/articles/setup_testing_server.html Nothing seems to work. And no one seems to currently be answering posts...so I apologize if this is a faux pas, but I'm starting a new thread in hopes that I and others can get some help.
    Here's what I have:
    WAMP server: : C:\TNG813onMowesII\www\ (Mowes Portable II is  software that enables you to quickly set up a WAMP (Windows, Apache, MySQL and PHP) system on any Windows system.))
    Site Name: localhost genealogy Local Site Folder: C:\TNG813onMowesII\www\ Server Name: localhost  Server Folder: C:\TNG813onMowesII\www\  Web URL: http://localhost/genealogy/ Server Model: PHP MySQL Connection: Local/Network
    Remote - unchecked
    Testing - checked
    I also have an idnetical image at D:/MyWebs/public_html/ for syncing with my remote website - http:larryvoyer.com
    My "Design", "Split", "Live View" and "Inspect" buttons are greyed out.
    Again, I apologize if I messed things up bu opening a thread on a prvious subject
    Larry Voyer
    Site Creator/Administrator
    http://larryvoyer.com/genealogy/
    Attempting to solve this on another thread, I was asked for the code that I was trying to see in design view...here it is if it's important:
    <?php
    $flags['noicons'] = true;
    $flags['noheader'] = true;
    $flags['nobody'] = true;
    //Change the text in quotes below to reflect the title of your site
    tng_header( "{$tmp['t5_maintitle']}", $flags );
    ?>
    <body>
    <div align="center">
    <table width="90%" class="maintable">
      <tr>
        <td class="row" colspan="6"></td>
      </tr>
    <tr>
      <td class="imagesection"> </td>
      <td class="spacercol">  </td>
      <td class="content" colspan="4">
       <table border="0" cellpadding="5" cellspacing="0" width="2%" class="innertable">
            <tr>        
        <td class="leftimage"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_leftimg']; ?>" alt="louis voyer" ></td>
        <td class="banner" colspan="2"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_titleimg']; ?>" alt="title"/></td>
        <td class="rightimage"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_rightimg']; ?>" alt="louis voyer" ></td>
      </td>
    </tr>
        <tr>
            <td colspan="4" class="boxback">
       <a href="whatsnew.php" class="lightlink2"><?php echo $text['mnuwhatsnew']; ?></a>
                | <a href="browsemedia.php?mediatypeID=photos" class="lightlink2"><?php echo $text['mnuphotos']; ?></a>
                | <a href="browsemedia.php?mediatypeID=documents" class="lightlink2"><?php echo $text['documents']; ?></a>
                | <a href="browsemedia.php" class="lightlink2"><?php echo $text['allmedia']; ?></a><br />
    <!-- SECOND LINE OF LINKS-->
                <a href="mostwanted.php" class="lightlink2"><?php echo $text['mostwanted']; ?></a>
                | <a href="reports.php" class="lightlink2"><?php echo $text['mnureports']; ?></a>
                | <a href="cemeteries.php" class="lightlink2"><?php echo $text['mnucemeteries']; ?></a>
          | <a href="browsemedia.php?mediatypeID=headstones" class="lightlink2"><?php echo $text['mnutombstones']; ?></a>
          | <a href="anniversaries.php" class="lightlink2"><?php echo $text['anniversaries']; ?></a>
          | <a href="places.php" class="lightlink2"><?php echo $text['places']; ?></a><br />
    <!-- THIRD LINE OF LINKS-->
          <a href="browsenotes.php" class="lightlink2"><?php echo $text['notes']; ?></a>
          | <a href="browsesources.php" class="lightlink2"><?php echo $text['mnusources']; ?></a>
             | <a href="browsetrees.php" class="lightlink2"><?php echo $text['mnustatistics']; ?></a>
             | <a href="bookmarks.php" class="lightlink2"><?php echo $text['bookmarks']; ?></a>
          | <a href="suggest.php" class="lightlink2"><?php echo $text['contactus']; ?></a>
    <?php
    if( $allow_admin ) {
      echo "| <a href=\"showlog.php\" class=\"lightlink2\">{$text['mnushowlog']}</a>\n";
      echo "| <a href=\"admin.php\" class=\"lightlink2\">{$text['mnuadmin']}</a>\n";
    ?>
      </td>
         </tr>
          <tr>
         <td class="leftcontent" rowspan="3">
      <div class="header">
                  <p>Our Noble Background</p>
       </div>
       <p>Recently, the <a href="Longueval" _mce_href="http://www.habitant.org/longueval/">Longueval">http://www.habitant.org/longuev al/">Longueval Research Project </a> has established the connection, through Anne Couvent, into the royalty database.
        This site includes that ancestry.
        Anne Couvent is in your ancestry, have fun loking at some of our famous and infamous ancestors. </p>
        <li><div align="left">
         <ul>
          <li> <a href="pedigree.php?personID=I63070&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I63070amp;tree=v7_28" class="pers" id="pI63070_tv7_28">Queen Cleopatra </a>  </li>
          <li> <a href="pedigree.php?personID=I107713&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I107713&amp;tree=v7_28" class="pers" id="pI185929_tv7_28">Alexander the Great</a>  </li>     
          <li> <a href="pedigree.php?personID=I186817&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I186817&amp;tree=v7_28" class="pers" id="pI186817_tv7_28">Attila the Hun</a>  </li>
          <li> <a href="pedigree.php?personID=I83464&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I83464&amp;tree=v7_28" class="pers" id="pI83464_tv7_28">Charlemagne</a>  </li>
          <li> <a href="pedigree.php?personID=I185929&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I185929&amp;tree=v7_28" class="pers" id="pI185929_tv7_28">King Louis XIV</a>  </li>
         </ul>
          </div></li>
       <p> Here are some links showing noble ancestors as they are related to me </p>
          <ul><li>
          <div align="left"><a href="rulers/rulers_france.php">Rulers of France</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_germany.php">Rulers of Germany</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_hre.php">Rulers of theHoly Roman Empire</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_italy.php">Rulers of Italy</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_visigoths.php">Rulers of the Visigoths</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_franks.php">Rulers of the Franks</a></div>
        </li>
         </ul>
         <p>  </p>
         <span class="style26o">Please note: this is not complete and is included for the user to see their potential relationship to past nobility
              The nobility database is far from the primary focus of the site and will not be supported other than the correction of errors.</span></div>
            </td>
      <td>
       <div class="header">
                  <?php echo $text['welcome']; ?>!
       </div>
       <div class="normal">
          <img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_mainimage']; ?>" alt="" style="float:right" class="indexphoto" width="300"  /><br /><br />
         <p>Welcome to the genealogy site devoted to Voyer and Bedard ancestry. Why Voyer and Bedard? My father was a Voyer. My mother a Bedard
         I believe that this is the largest compilation of Voyers with 4000+ and 24,000+ Bedards. I hope that it will be useful to those looking for their heritage.</p>
         </p>I am indebted to my cousin Jacqueline TIERNAN Poudrier for her tireless research and contributions to this site. </p>
         <p>If you have any questions or comments about the information on
         this site, <a href="suggest.php">please contact us</a>.
         We look forward to hearing from you.</p>
         <ul>
          <?php
           if(!$currentuser) {
            if(!$tngconfig['disallowreg'])
             echo "<li><a href=\"newacctform.php\">{$text['mnuregister']}</a></li>\n";
            echo "<li><a href=\"login.php\">{$text['mnulogon']}</a></li>\n";
           else {
            echo "<li><a href=\"logout.php\">{$text['mnulogout']}</a></li>\n";
           if($chooselang)
            echo "<li><a href=\"changelanguage.php\">{$text['mnulanguage']}</a></li>\n";
          ?>
         </ul>
         <p></p>
         <div>
         <div class="header">
                  <p>DNA Genealogy</p>
       </div>
       <p></p>
         <p>DNA technology allows us another way to investigate our ancestry, especially with regard to lines that have been difficult or even impossible to resolve as is our case with the lack of records in France.<p></p> 
    There are many ways to test and analyze DNA, but there are two particular kinds of DNA testing that are especially useful in genealogy:  Y-chromosome DNA (Y-DNA) testing and mitochondrial DNA (mtDNA) testing.  The genealogical usefulness of these two DNA tests is based on two aspects of human inheritance:
       <ol>
       <li>  that the Y chromosome is passed on only by the father</li>
       <li>  that mitochondria are passed on only by the mother</li>
       </p>
       <p>Both a VOYER and a BEDARD DNA project have been created and can reached through the links below. Please make sure that the person submitted for DNA tests is in our dtabase so that we can determine the earliest ancestor.
       If you are submitting for a mitochondrial DNA test, please contact us so that we can attempt to trace your maternal pedigree.
              <div class="subheader"><span class="style41"><a href="Voyer" _mce_href="http://www.worldfamilies.net/surnames/voyer">Voyer">http://www.worldfamilies.n et/surnames/voyer">Voyer DNA Project</a> <a href="Bedard" _mce_href="http://www.worldfamilies.net/surnames/bedard">Bedard">http://www.worldfamilies .net/surnames/bedard">Bedard DNA Project</a></span></div>
        <div>
        </td>
      </div>
      <td> </td>
            <td class="rightcontent">
        <div class="language_box">
         <?php
          if($chooselang) {
           $query = "SELECT languageID, display, folder FROM $languages_table ORDER BY display";
           $result = mysql_query($query) or die ($text['cannotexecutequery'] . ": $query");
           $numlangs = mysql_num_rows( $result );
           if($numlangs > 1) {
            echo getFORM( "savelanguage2", "get", "tngmenu3", "" );
            echo "<select name=\"newlanguage3\" id=\"newlanguage3\" style=\"font-size:11px;\" onchange=\"document.tngmenu3.submit();\">";
            while( $row = mysql_fetch_assoc($result)) {
             echo "<option value=\"{$row['languageID']}\"";
             if( $languages_path . $row['folder'] == $mylanguage )
              echo " selected=\"selected\"";
             echo ">{$row['display']}</option>\n";
            echo "</select>\n";
            echo "<input type=\"hidden\" name=\"instance\" value=\"3\" /></form>\n";
           mysql_free_result($result);
          echo "</p>\n";
         ?>
       </div>
       <form action="search.php" method="get">
        <table class="indexbox">
         <tr>
          <td class="padding"><span class="boxback"><?php echo $text['mnulastname']; ?>:<br />
           <input type="text" name="mylastname" class="searchbox" size="14" /></span></td></tr>
           <tr><td class="padding"><span class="boxback"><?php echo $text['mnufirstname']; ?>:<br />
           <input type="text" name="myfirstname" class="searchbox" size="14" /></span>
          </td>
         </tr>
         <tr>
          <td class="padding"><span class="normal"><input type="hidden" name="mybool" value="AND" />
          <input type="submit" name="search" value="<?php echo $text['mnusearchfornames']; ?>" class="small" /><br /><br />
          <?php
           echo "<a href=\"surnames.php\" class=\"lightlink2\">{$text['mnulastnames']}</a><br />\n";
           echo "<a href=\"searchform.php\" class=\"lightlink2\">{$text['mnuadvancedsearch']}</a>\n";
          ?></span>
          </td>
         </tr>
        </table>
       </form>
       <p></p>
       <div class="help">
       <div class="subheader">Can You Help?</div>
       <p></p>
        <p.request>Can you make yourself available to translate correspondence and site content into French?.</p>
        <p.request>Do you read the Obituaries? If you find BEDARD and VOYER obituaries (links or scans)? </p>
        <p.request>Are you a BEDARD or VOYER and not in our database? </p>
        <p.request>Are you interested in being part of the site research or development team?
        <p> </p><a href="suggest.php">please contact us</a>..</p>
       </div>
      </td>
          </tr>
        </table>
        </td>
      </tr>
      <tr>
        <td colspan="6" class="row12"></td>
      </tr>
      <tr>
      <div class="c3"></div>
    </td>
    </tr>
    </table>
    <br />
    <div>
      <br />
      <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <div align="center">
      <input type="hidden" name="cmd" value="_s-xclick" />
      <input type="hidden" name="hosted_button_id" value="1942114" />
      <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="" />
      <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
      </div>
    </form>
    </div>
    </td></tr>
    <tr><td class="tableheader"><img src="img/spacer.gif" width="25" height="25" alt="" /></td></tr></table>
    <div class="footer small">
    <br />
    This site powered by <a href="http://lythgoes.net/genealogy/software.php" class="footer">The Next Generation of Genealogy Sitebuilding</a> &copy;, v. 8.1.3, written by Darrin Lythgoe 2001-2012.
    <br /><br />
    Voyer & Bedard Genealogy &copy; Larry Voyer 2008-2012.
    <br /><br />
    <span class="sitecounter">Unique visitors since January 1, 2012: </span>
         <div>
            <!-- Start of StatCounter Code for Default Guide -->
       <script type="text/javascript"> var sc_project=7546502; var sc_invisible=0; var sc_security="d0ac87ac"; </script> <script type="text/javascript" src="http://www.statcounter.com/counter/counter.js"></script>
       <noscript><div class="statcounter"><a title="web counter" href="http://statcounter.com/free-hit-counter/" target="_blank"><img class="statcounter" src="http://c.statcounter.com/7546502/0/d0ac87ac/0/" alt="web counter"></a></div></noscript>
      <!-- End of StatCounter Code for Default Guide -->
    </div>
    </div> <!-- end of footer div -->
    </div> <!-- end of center div -->
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-2104283-2");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    <!-- end footer.php for template 5--><script type="text/javascript" src="js/litbox.js"></script>
    </div> <!-- end of center div -->
    </body>
    </html>

    John,
    I misundrstood you response
    I entered http://localhost in my browser and recieved the following page:
    Asd you can see everything is working. I thought that when you called local host, it went to the www/ directory where I have my sites
    I still don't see a problem with my settings
    Server Folder: C:\TNG813onMowesII\www\
    Web URL: http://localhost/genealogy/
    I hate it when the tool is more trouble than the work.
    Larry Voyer
    Site Creator/Administrator
    http://larryvoyer.com/genealogy/

  • How to publish a BOOK from iWeb blog

    During 2011 I kept a Blog in iWeb on me.com when my little 7 year old daughter was suffering from liver cancer. the Blog was read and commented by many people. I have been her Living Donor for the liver, and so far she is a "survivor" with sparks in her eys that represent "life".
    We have had a lot of support from people that are close to us and I want to thank them all by "publishing" a book from the blog. I kept it on my Macbook wich also still has iWeb on it. I a 'just a user' and not a freak, so I do not have a clue if this is possible to do or just Wishfull thinking. I presume you can never get back to me.com, so the ' web counter' as well as 'feed back' might have been lost, but I sure want to publish this blog in a book. It would be a great gift to thos who supported us and other people that go through this as well, as well as for my little girl Joy, so when she is older she knows what she has been going throug. Is there anyone that could support in the steps I need to undertake to get this done?

    To give you an idea what is possible, I used Chrome on my iPad and printed a webpage as pdf to Google Drive with Google Cloudprinter.
    This is the webpage :
    http://www.wyodor.net/mfi/cultureclub/Blog/Blog.html
    This is the result :
    http://www.wyodor.net/mfi/cultureclub/CultureClubBlog.pdf
    BTW, you can merge pdf files in Preview.app :
    http://support.apple.com/kb/ht4075
    Nice isn't it, all these technologies at your fingertips? And my fingertips were actually the only moving parts :)

  • Adding a Second Project Site with same restore data

    This is the first time I've had to accomplish this 
    I have a dev server where I restore a backup from 2 weeks ago to http://devserver/pwa
    My team has asked for a restore from 2 weeks + 1 day to http://devserver:99/pwa - I've tried deleting site collections, tried several other ways of doing the restore; however, during the mount-spdatabase I get only 1 site to come back (pwa)  but
    it doesnt show in the site list
    The enumallwebs shows the following (notice the in sitemap)
    stsadm -o enumallwebs -databasename content_database  
    databse site count 1
    <site ID = random characters > <owner = farmguy> <In sitemap = False>
    Web count = 235
    ==============
    I believe/know the issue deals with the same site ID being on the first pwa site; however when I try to do a Mount-SPContentDatabase content-database -WebApplication "http://dev:99" -AssignNewDatabaseID I still get the same issues - new database
    ID but still same site ID for the "dev/pwa" site database
    Is there anyway to clone (yes I've seen the other articles) or have two sites with the same data?
    I've also thought about trying to export the stsadm enumallwebs data and copying that to a new PWA site but have been unsuccessful in the export (or even finding a way to do it)
    Can I get any ideas on how to either
    1) Change the site ID from a database backup/restore
    2) Restore a PWA site to the same server/database server 
    3) other ideas?
    My team members would like to do a comparison of the two dates between a project to check for differences (I just found out about
    FluentPro Audit Lite Pro)  
    Any and all suggestions would be appreciated... 
    Thank you 

    I'm still experiencing issues
    I tried the following (http://social.technet.microsoft.com/Forums/projectserver/en-US/edc6f56a-5850-4102-841b-32d4df6e6882/how-i-to-restore-the-project-site-deleted-on-project-server-2010-?forum=projectserver2010general) by recovering the data from an unattached
    Database (I also did the site collection backup)
    1) Trying to do an Import-SPWeb but this was unsuccessful
    created a web application 99 -> provisioned a pwa with the old databases -> data appear in project center but when you click on the sites it gives an error message
    created a web application 99 -> create a site collection -> provisioned a pwa with the old databases -> data appear in project center but when you click on the sites it gives an error message - same as above
    the below while it held promise it didnt work for going against a separate port... using the data from an unattached content database export (link above)
    also reference (http://pwmather.wordpress.com/2012/06/28/move-a-sharepoint-2010-sub-site-to-a-different-location-on-the-same-farm-sp2010-ps2010-powershell/) 
    2) Tried to do a SPSite Restore and it ends up deleting the provisioned PWA and still appears to be there but no PWA soo 
    3) removing the ophaned PWA site (http://mrhodes.net/2011/02/24/fixing-an-orphaned-site-collection-within-project-server-2010/) wont help since it will remove the PWA sites/subsites from the content database I want
    4) I'm still unsure how to approach what Krishnp stated...
    unless #2 was his approach
    Any other help would be greatly appreciated - I'm trying everything it's time consuming since the backup files take over an hour to restore to a site - while it is faster to do the original when its just one content database/4 pwa databases... 
    I've read its possible to do to different ports (of course I closed the page) but I have only seen one post point it out 
    thanks again 

  • My Spry Accordion will not work In IE but will in Opera

    Hi Everyone,
    I'm having a problem with my accordion spry widget in a website that I'm working on. Bear in mind theres's a lot of things to fix but it's in the initial stages. What happens is, if you go under the heading, business and then training you will see an FAQ section. You'll notice that the tabs are all open and it's just not functioning correctly in IE, Chrome and Firefos but it is working in Chrome. (I Haven't tried in Safari as my computer freezes ??) I've included the link and code below.
    Thanks
    Steve
    www.adelxt.net
    code:
    <meta name="keywords" content="computer,consulting, consulatant, windows, 2003, 2000, 2008, XP, Vista, Sonicwall, Novell, Netware, Virus, New Hampshire, Massachusetts, northern, wireless, wiring, southern, firewall " />
    <meta name="description" content="A local consulting firm specializing in Windows Server and Novell Netware as well as firewalls. This company troubleshoots and installs networks, wiredd and wireless and will maintain your network." />
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <style type="text/css">
    <!--
    .twoColElsLtHdr #container #mainContent p {
    .style2 {
    color: #FFFFFF;
    height: 30px;
    -->
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    a:link {
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    body {
    background-image: url(graphics/a1.gif);
    background-repeat: repeat-x;
    background-color: #f9f9f7;
    #apDiv1 {
    position:absolute;
    left:538px;
    top:131px;
    width:185px;
    height:444px;
    z-index:1;
    body,td,th {
    color: #000000;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 12px;
    .style4 {
    font-size: 18px
    .style5 {
    color: #FF0000;
    font-weight: bold;
    -->
    </style>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Welcome to Adel-Xt Computer Company</title>
    <link href="css files/main.css" rel="stylesheet" type="text/css" />
    <!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColElsLtHdr #sidebar1 { padding-top: 30px; }
    .twoColElsLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-18563317-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    </head>
    <body class="twoColElsLtHdr">
    <div id="container">
      <div id="header">
        <table width="100%" border="0" align="center">
          <tr>
            <th bgcolor="#FF6633" scope="col"><div align="left">
              <p align="center" class="style2 style4">Adel-Xt Computer Company</p>
              <p align="center" class="style2 style4">Derry, NH 03038</p>
              <p align="center" class="style2 style4">1-603-434-5311</p>
            </div></th>
            <th scope="col"><h1>
              <div align="center">Home Training for the Individual</div>
            </h1></th>
          </tr>
        </table>
      <!-- end #header --></div>
      <!--Beginning of Horizontal menu Bar-->
      <div id="horizontalmenu"> 
      <!--#include file="SSI files/Horizontalmenubar.ssi" -->
      </div>
      <!--End of Horizontal Menu Bar-->    
    <!--Beginning of sidebar right-->
      <div id="sidebarright">
    <h2 align="center">Training FAQ</h2>
    <div id="Accordion1" class="Accordion" tabindex="0">
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">Has Steve ever taught in school?</div>
         <div class="AccordionPanelContent">Yes. Steve has taught many computer, math and Engineering vlasses in local colleges.</div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">What is Steve's background?</div>
         <div class="AccordionPanelContent">
           <p>Steve has a BSME in Mechanical Engineering, Masters in Business Administration (MBA), advanced concentration in decision support systems (DSS)and certification in Microsoft.</p>
           <p>Steve also has 18 years working in industry in the field of Information Technology (IT), Engineering (Software &amp; Mechanical) , Manufacturing Engineering, Management , Quality, Manufacturing and much more...</p>
         </div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">What is the maximum that I can have in a clasroom.</div>
         <div class="AccordionPanelContent">This is up to you. Steve will discuss this with you and point out the pros and cons of having too many students in one session.</div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">Will Steve do evening training?</div>
         <div class="AccordionPanelContent">On special occasions he will. Normally evening training is done with some notice for Steve.</div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">Does Steve have a set program</div>
         <div class="AccordionPanelContent">No. This is exactly what he doesn't want. Steve wants to customize the training toward your business. An important part of training is the planning which is what he will be discussing with you.</div>
       </div>
    </div>
    <p> </p>
    <p> </p>
      </div>
    <div id="mainContent">
          <h2>Training</h2>
          <div>Adel-Xt Computer will help create a training program for you and your employees. We will gear 
            the training program to your business so employees taking this class will become more efficient in their everyday work skills. Once 
            a program is approved we will send our instructor (Steve) to your facilty to teach the class. </div>
          <div> </div>
          <div>    Please call 434-5311 
            or <a href="mailto:[email protected]" target="_self">contact us</a> for further discussion on how Adel-Xt Computer can help your business become more efficient thus leading to larger profits.</div>
          <p><br />
          </p>
        <p>
          <!-- end #mainContent -->
        </p>
      </div>
    <p>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      </p>
      <div id = "subcontent2" align="center">
      <h2> Her are few Examples of Training</h2>
      <p class="style4">Beginner training for people new to computers.</p>
      <p class="style4"> Excel 2003, 2007, 2010</p>
      <p class="style4"> Word 2003, 2007, 2010</p>
      <p class="style4">Email usage and cautions</p>
      <p class="style4">More....</p>
      <p> </p>
      </div>
    </div>
    <p><br class="clearfloat" />
    </p>
    <div id="footer">
          <table width="100%" border=" 0">
          <tr>
            <th scope="col"><p class="style5">Presently we are redesigning our Website. If a link isn't  working please contact us via <a href="mailto:[email protected]">email</a> or call us at 603.434.5311.</p>
            <p>Adel-Xt Computer Company Derry, NH 03038 1-603-434-5311 Contact Us</p>
            <p>Last Updated:
              <!-- #BeginDate format:fcAm1a -->Friday, November 5, 2010 5:29 PM<!-- #EndDate -->
            </p></th>
          </tr>
        </table>
        <a href="http://www.tinycounter.com" target="_blank" title="web counter"><img border="0" alt="web counter" src="http://mycounter.tinycounter.com/index.php?user=adelxt"></a>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    //-->
    </script>
    </html>
    </body>

    You not are using the latest Spry files
    The latest  version of the Adobe Spry Framework is 1.6.1, this is the same version  that ships with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry  1.4), its wise to upgrade your files to the latest version. This can  easily be done using the Spry Updater that can be found here.
    If you replace
    <script src="http://www.adelxt.net/SpryAssets/SpryAccordion.js" type="text/javascript">
    with
    <script src="http://labs.adobe.com/technologies/spry/widgets/accordion/SpryAccordion.js" type="text/javascript"></script>
    you will notice that it works as it should.

Maybe you are looking for

  • Finder crashes when I try to click on the File Menu, or CTL Click. Ideas?

    Started a few weeks ago, after the update to Mavericks. Anytime I try to click on an item via Finder, and CTL+click to have the drop down menu, Finder crashes. Same thing happens when I try to click on the File Menu when Finder is selected. Ultimatel

  • What app will let me organize multiple pdfs so I can put song lyric pdfs in the order I sing them

    I want to use my iPad to view my song lyrics in pdf form as I perform. I'd like to be able to customize the order in which the pdfs are stored so that I can have a different set of songs for different shows. I also want to just swipe from song #1 to

  • Why late 2013 MBP 13' frequently stop responding?

    New MBP 13' with retina frequently CRASH. The keyboard and trackpad un-responding unless shut down the power. I guess that it's the bug of system or the problem of keyborad and trackpad. Dose anybody met this problem?

  • PL/SQL Prob in Report

    Hi, I have a question re: Cursors. Can you reference the previous and next cursor record in FOR loops? I have two data, value (either 1 or 0) & time the value was recorded. I need to determine x = sum(length of time the value was 1). Ex. v1 = 1; t1 =

  • Windows File Service Log

    Does anyone know how long info is retained in the Windows File Service Log? AFP has the option to archive every x day(s), but this option is curiously missing from the Windows service. I'm on Mac Server 10.4.11