Need Help With Work Group Wiki Page (404)

I am somwhat of a novice with all this server stuff so I will try to explain....
I have done a standard server install of OS X 10.5.6 Server on my Xserve. Everything seemed to work like a charm. The only problem I am having is when I select my home page to be my Workgroup Wiki page (inside the standard server prefences window). When I select this and try to test the page with the link under the drop down (open home page), it opens Safari and the header looks right but the page says "Not Found. 404: No group with that name (workgroup) hosted on this server).
I have a Workgroup and then two other groups....print and interactive. I want people to be able to log-on and see the main work group wiki page and then be able to select to go to one of the other two groups. I have had this working before but had to reformat my hard drive and reinstall the OS.
From the page that comes-up, I CAN click on the "groups" link in the header bar and that does take me to a working page, but I want to be able to have people go to this workgroup page first.
Any help would be MUCH appreciated. Thanks in advance.

Hi,
If you have the original index.html file installed in the /Library/WebServer/Documents/ folder then your wikid server will use it to display the web service groups.
If you have changed the index.html file or substituted a different index.html then wikid will not be able to perform its display action.
HTH,
Harry

Similar Messages

  • Need help with an "exit door" page

    My office has a page on our webserver that serves as an "exit door". It basically tells you when you're leaving our site (they do this because it's a gov't site, and thus rquired) and you have to click on a link to confirm that you want to leave.
    The way it works is that when you code a page with a link that needs an exit door, you prepend the url with "exit.cfm?link=" and then the URL. It works adequately on simple URLS that pass no parameters. Where it has a problem is when a URL has GET arguments like ?page=23&item=43.
    The original coder used URL.link, which of course only captures the first GET argument. As a work-around, we're required to edit the target URLS being passed to the exit door and replace things like & and # with [amp], [pound], etc. Needless to say, this gets rather tedious, so I decided to have a look at that old exit door page to see what I could do with it.
    After playing around a bit, I achieved  a reasonable level of success by using the following:
    #xmlformat(ListDeleteAt(CGI.QUERY_STRING,1,"="))#
    This gives me a properly encoded full URL to use as a link on the exit door page. But there's one problem. If there's a link that contains an anchor (like foo.com#section1) it doesn't capture the anchor. The # and what's after it isn't being passed.
    I'm trying to figure out how to make this work.  Has anyone else here had to make an exit door, and if so, how did you do yours?

    Thanks mack.  I'm starting to think the answer to this is "it can't be done".  Which is probably why my predecessor was replacing &s with [amp]s.
    What led me to try to change this was that I was trying to build a regex for Dreamweaver that changed things like & and # to [amp] and [pound], but only when the URL began with the exit door page URL.  I was only able to get my regex to replace one occurance of an item per pass, which sort of defeated its purpose.  So I decided to change the exit door page instead.
    Maybe I'll go back to trying to get the regex to work.
    Ian, thanks for your help as well.

  • Need help with fitting text onto page

    I'm working on a website where I have a template with an
    editable region where I put all the main text for each page. I
    originally had it set up for scroll bars so when the text inside
    the cell of the editable region didn't fit, scroll bars would
    appear (I used overflow in the CSS). Now the client tells me they
    don't want scroll bars but want the text area to dynamically expand
    vertically to fit whatever amount of text. The problem is, when I
    try to put in a lot of text in the editable region, it breaks the
    table and the nav bar on the side gets all messed up. How can I
    have the text inside of a cell dynamically expand without affecting
    the rest of the table?
    Any help is greatly greatly appreciated, thanks in
    advance!

    > Here's the code...
    sorry, but again- please upload the page someplace.
    Don't attach it to a post, don't paste it in a post, upload
    the page
    someplace pls.
    I and many others are viewing this forum with a newsreader,
    not using the
    web forums at the adobe web page.
    The webforum-->NNTP newsgroup thingee has truncated your
    post. So i can't
    copy/paste it and use tools and sight read it. The code i see
    is incomplete.
    your post ends here for me:
    Advanced course (9-4) &#8212; $450<br>
    This course is for students already u
    Just upload the thing to some ftp account someplace pls.
    or if not possible, zip or rar the folder and send as an
    attachment to
    blu
    at
    formdude
    dot
    com
    pls don't email anything over 10megs.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Need Help with Photomerge Group Shot

    I'm trying to photomerge a group shot and having trouble with it.  The person I'm trying to cut out of the source photo gets plopped into the middle of the final photo and I can't line her up with in final shot.  Is there a way I can relocate the section that gets pasted into the final photo?   I'm also have trouble with aligning the photo--how do you know what points to select in the fist and second photo?  I've been playing with it, but the photos get terribly distorted.
    Appreciate any help.  I was expecting Photoshop Elements 10 to make this easy, and so far, it hasn't impressed me.
    Thanks,
       Terri

    OK, here we go:
    Make a selection (in the main image) of the area you want to be replaced:
    Open your other image, select the head to use, and copy it to the Clipboard.  (I simply used another one of the heads in this photo.)
    Back in the main image, use Edit...Paste into Selection:
    Change to the Move Tool and move the pasted-in image to where it looks best:
    You already know what to do next with the Clone Tool.   (Probably have to use Layer...Flatten Image to get rid of all the selections and layers so the Clone Tool can do its work....)
    Ken
    P.S.,  Looks like you did a real good job with the girl on the left.
    P.P.S.,  The image is a bit too small for us to do precision work (but it's OK for this example).  Next time you can try something about 2 or 3 times larger and see if the forum software accepts it.

  • Need Help With SQL GROUP BY and DISTINCT

    I am working on a project and need to display the total of each order based on the order id. For instance I want to display the order id, customer id, order date, and then the extension price (ol_quantity * inv_price).
    I would then like a total displayed for order # 1 and then move on to order #2.
    Here is my SQL code :
    SELECT DISTINCT orders.o_id, customer.c_id, inv_price * ol_quantity
    FROM orders, customer, inventory, order_line
    GROUP BY orders.o_id, customer.c_id, inv_price, ol_quantity
    ORDER BY orders.o_id;
    When my code is run it displays the order id, customer id and inv_price * quantity (extension price) but no order total for the order number and a new group is not started when a new order number is started....they are all clumped together.
    Any help is greatly appreciated!!

    Hi,
    user12036843 wrote:
    I am working on a project and need to display the total of each order based on the order id. For instance I want to display the order id, customer id, order date, and then the extension price (ol_quantity * inv_price).
    I would then like a total displayed for order # 1 and then move on to order #2.
    Here is my SQL code :
    SELECT DISTINCT orders.o_id, customer.c_id, inv_price * ol_quantity
    FROM orders, customer, inventory, order_line
    GROUP BY orders.o_id, customer.c_id, inv_price, ol_quantity
    ORDER BY orders.o_id;
    When my code is run it displays the order id, customer id and inv_price * quantity (extension price) but no order total for the order number and a new group is not started when a new order number is started....they are all clumped together.
    Any help is greatly appreciated!!Sorry, it's unclear what you want.
    Whenever you post a question, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using.
    Do you want the output to contain one row for each row in the table, plus an extra row for each distinct order, showing something about the order as a whole (e.g., total inv_price or average extension_price)? If so, you need GROUP BY ROLLUP or GROUP BY GROUPING SETS .
    If you want one row of output for each row of the table, but you want to include something that reflects the group as a whole (again, e.g, total inv_prive or average extension_pcie), then you can us analytic functions. (Most of the aggregate functions, such as SUM and AVG have analytic counterparts that can get the same results without collapsing the result set down to one row per group.)
    Here's an example of how to use GROUP BY GROUPING SETS.
    Way we're interested in employees' salary and commission from the scott.emp table:
    SELECT       deptno
    ,       ename
    ,       sal
    ,       comm
    FROM       scott.emp
    ORDER BY  deptno
    ,            ename
    ;Output:
    `   DEPTNO ENAME             SAL       COMM
            10 CLARK            2450
            10 KING             5000
            10 MILLER           1300
            20 ADAMS            1100
            20 FORD             3000
            20 JONES            2975
            20 SCOTT            3000
            20 SMITH             800
            30 ALLEN            1600        300
            30 BLAKE            2850
            30 JAMES             950
            30 MARTIN           1250       1400
            30 TURNER           1500          0
            30 WARD             1250        500Now say we want to add the total income (sal + comm, or just sal if there is no comm) to each row, and also to add a row for each department showing the total sal, comm and income in that department, like this:
    `   DEPTNO ENAME             SAL       COMM     INCOME
            10 CLARK            2450                  2450
            10 KING             5000                  5000
            10 MILLER           1300                  1300
            10                  8750                  8750
            20 ADAMS            1100                  1100
            20 FORD             3000                  3000
            20 JONES            2975                  2975
            20 SCOTT            3000                  3000
            20 SMITH             800                   800
            20                 10875                 10875
            30 ALLEN            1600        300       1900
            30 BLAKE            2850                  2850
            30 JAMES             950                   950
            30 MARTIN           1250       1400       2650
            30 TURNER           1500          0       1500
            30 WARD             1250        500       1750
            30                  9400       2200      11600(This relies on the fact that ename is unique.) Getting those results is pretty easy, using GROUPING SETS:
    SELECT       deptno
    ,       ename
    ,       SUM (sal)          AS sal
    ,       SUM (comm)          AS comm
    ,       SUM ( sal
               + NVL (comm, 0)
               )               AS income
    FROM       scott.emp
    GROUP BY  GROUPING SETS ( (deptno)
                             , (deptno, ename)
    ORDER BY  deptno
    ,            ename
    ;Notice that we're displaying SUM (sal) on each row. Most of the rows in the output are "groups" consisting of only one row from the table, so the SUM (sa) for that goup will be the sal for the one row in the group.
    Edited by: Frank Kulash on Nov 23, 2011 2:03 PM
    Added GROUPING SET example

  • Need help with a bookmarkable/Anonymous page, Got wierd error.

    Thanks in advance for your help. I have created a custom password reset page follow Kalimuthu Vellaichamy's instruction, the link for the instruction is the following if that helps:
    http://mukx.blogspot.com/2008/07/creation-of-anonymous-page-introduction.html .
    I get an error the first time I access the page, but if I refresh the page I can access the page successfully after then. If I clear browser's history and try to access the page, I get error again. Here is the error message:
    You have encountered an unexpected error. Please contact the System Administrator for assistance.
    Thank you for help
    -Bill

    Kali,
    I tried again this morning, Here is what I did.
    I made sure I did not logged in to the application and made sure I only opened one brower window. Then I tried to open the page. I was not able to log in the first time I opened the page, I got the error I mentioned in the first post, and on the right top corner of the error page it has a logout link.
    Then I clicked refresh button and I could access the page. I could tell I did not logged in at that time because there is no logout link on the right top corner, there were only links for "home" and "preferences".
    Then I closed the browser and reopened the browser, and tried to open the page, at this time I got error again, then I click refresh button and I could open the page again.
    Then I kept this browser window open and I opened another browser window and just went to blank page. Then I close the first browser window(the one with the bookmarkable page) and opened a new window (during this time the blank page was still open) and went to the bookmarkable page again. And this time it worked.
    I think there is something like cookie changed when I got the error so I could open the page after click refresh. But dont know what it is.
    Thanks
    -Bill

  • Need help with working in the background while doing a presentation

    Hi guys,
    I wanted to know if my MBP had a way to let me do a presentation, where on my screen I could tell it to present what I wanted it to present rather than showing every single move that I would make. If for instance, I were to open an app for looking up something to present, I wouldn't want people to see that action, but rather the things that I would put on a special window or virtual place created just for that.
    Maybe there's an app that will let me do this? What happens to me know is that when I connect the MBP to the data show presenter, everything I do gets displayed on the big screen on the wall. I want to work in the background without people seeing that. Please help. Thanks.

    The system software makes it about as easy as possible. Press fn+F7 (the pictographic mnemonic on the F7 kety is two overlapping rectangles). This will toggle the display mode between mirroring (same image on internal and external display) and spanning (each display independently contributing to the total viewable area).
    As a bonus when using Keynote (the presentation software from iWork) in a dual-screen configuration, you get one display showing the presentation and the other showing you context (the upcoming slide) and a timer. Check out the demo included with you MacBook.
    Randall Schulz

  • Need help with iPad 2 web page access requiring Adobe Flash Player

    New to apple have iPad 2 WiFi and need to access web pages that utilize adobe flash player what are my options since adobe and apple are not friends

    There are options in the app store, which may or may not work.  iSwifter and puffin are two you may try.......

  • Need help with copying group policy links to a new OU

    Good Morning everyone. I hope you can help (pretty sure you can). I am working on a powershell script to copy the OU structure from an existing OU and create a new one and then apply the same group policies to the newly created OU. I have the creation portion
    working fine.  The script creates the OU and all sub OU's however I have not been able to figure out how to get the GP links to copy from anything other than the root OU.  I found this snippet online but I can only get it to work on the root of the
    OU.  The full script is at the bottom.  Right now I am just manually applying the links but I would like to not have to edit this script every time a new GPO is created so I want it to read all of the GP links from the whole OU structure like the
    first part of the full script does.  Thanks in advance for any and all help!
    Roger
    import-module GroupPolicy
    $SourceOU = "Computers"
    $DestinationOU = "OU=computers,OU=MSP,OU=NA,DC=testeucs,DC=local"
    [xml]$gpos = Get-GPOReport -all -ReportType xml
    foreach ($gpo in $gpos.gpos.gpo) {
    if ($gpo.LinksTo.SOMName -eq $SourceOU) {
    New-GPLink -Name $gpo.name -Target $DestinationOU
    #--------Config
    $RegionOU = Read-Host "Enter Region: NA, ASIA, or EULA"
    $NewSiteOU = Read-Host "Enter name of new site"
    $sourceOU = "OU=NBKWin7,OU=NA,DC=testeucs,DC=local"
    $destinationOU = "OU=$NewSiteOU,OU=$RegionOU,DC=testeucs,DC=local"
    $DestCompOU = "ou=Computers,$destinationOU"
    $DestUserOU = "OU=Users,$destinationOU"
    #--------Main
    $adPath= "LDAP://" + $destinationOU
    import-module activedirectory
    Import-Module GroupPolicy
    #Create OUs
    $objDomain=New-Object System.DirectoryServices.DirectoryEntry($adPath)
    $ObjSearch=New-Object System.DirectoryServices.DirectorySearcher($ObjDomain)
    [array] $OUs = @()
    $OUs = dsquery * $sourceOU -Filter "(objectCategory=organizationalUnit)" -limit 0
    $OUsorted = $OUs | sort-object { $_.Length}
    for ($k=0; $k -le $OUsorted.Count -1; $k++)
    $OUtoCreate = ($OUsorted[$k] -replace $sourceOU,$destinationOU).ToString()
    $OUSearch = ($OUtoCreate -replace '"',"").ToString()
    $ObjSearch.Filter = "(&(objectCategory=organizationalUnit)(distinguishedName="+ $OUSearch + "))"
    $allSearchResult = $ObjSearch.FindAll()
    if ($allSearchResult.Count -eq 1)
    "No changes were done on = " + $OUtoCreate
    else
    dsadd ou $OUtoCreate
    "OU Creation = " + $OUtoCreate
    New-GPLink -Name KerberosDESEncryption -Target $destinationOU -Domain testeucs.local -LinkEnabled Yes -Order 1
    New-GPLink -Name WIN8_InternetExplorer -Target $destinationOU -Domain testeucs.local -LinkEnabled Yes -Order 2
    New-GPLink -Name WIN7_DCMSENABLE -Target $DestCompOU -Domain testeucs.local -LinkEnabled Yes -Order 1
    New-GPLink -Name DNS_Suffix -Target $DestCompOU -Domain testeucs.local -LinkEnabled Yes -Order 2

    Here is how to get the current GPO links so you can copy them:
    http://gallery.technet.microsoft.com/scriptcenter/Get-GPlink-Function-V13-b31253b4
    ¯\_(ツ)_/¯

  • I need help with working with old newspaper photos. The photos need to be blown up and displayed on a traveling exhibit. Is there any training available for this?

    The photos are from newspapers going back to the early 1900s and they are now on microfilm. I can get them digitized at 600dpi but that still doesn't make them ready for placement on a large display. Besides Adobe help I use Lynda.com but I can't find anything dealing with this very specific topic. Anyone have an idea of a training program that deals with this subject?

    Thinking back to when I've seen displays of newsprint that's been greatly magnified, being able to see the halftone screen pattern seems important.  It gives the display a look of authenticity.
    You say the library can scan at 600 ppi.  If that's 600 ppi of a greatly reduced image on a piece of microfiche, it may not give you the resolution you're looking for, and it's entirely possible that getting a quality optical print then scanning it would give you better.
    I don't see how you can plan how to proceed in anything like specific detail if you don't have an image that represents what you're really going to be starting with in detail.  Perhaps getting one scan might be a good idea.
    After that, you just need to figure out what ppi your final overall panel design is going to be at, and upsample the newspaper clippings to match, so that they're the size you need them to be.
    -Noel

  • Need Help with an Group By Count

    I'm having some difficulties with a query.
    My results are as follows:
    Acct_num - Route_ID - Service
    12345678 - 1112222 - Gas -
    12345678 - 1112222 - H20 -
    12345678 - 3334444 - Elec -
    98765432 - 8889999 - Gas -
    98765432 - 8889999 - H20 -
    98765432 - 8889999 - Elec -
    What i need to do is write a script that will show me, any acct_num's where the route_id is different. All Route_id's should be the same for all services, but in some cases, they were entered incorrectly and i need to find the invalid ones, so i can correct them.
    Ideally, i would only like to see one row, but if i can just get my results to show me all the acct_num for the ones where the route_id is different, that would be a great start
    I have been trying to use a distinct and do a count on the acct_num, but my counts are ignoring the distinct.
    This is the code i have been using so far, but i don't think it is on the right path:
    SELECT distinct SA.SERVICE_ACCOUNT_NUMBER,
           MR.METER_ROUTE_ID,
    --       ECAT.SERVICE_TYPE--,
           count(SA.SERVICE_ACCOUNT_NUMBER) as ACCT_NUM_COUNT
    FROM SERVICE_ADDRESS SADD,
         SERVICE_ACCOUNT SA,
         SERVICE_SERVICE_ACCOUNT SSA,
         EQUIPMENT E,
         EQUIPMENT_CLASS EC,
         EQUIPMENT_CATEGORY ECAT,
         EQUIPMENT_LOCATION EL,
         EQUIPMENT_LOCATION_EQUIP ELE,
         EQUIPMENT_LOCATION_ROUTE ELR,   
         EQUIPMENT_TYPE ET,
         METER_ROUTE MR       
    WHERE SADD.SERVICE_ADDRESS_ID = SA.SERVICE_ADDRESS_ID
    AND SSA.SERVICE_ACCOUNT_NUMBER = SA.SERVICE_ACCOUNT_NUMBER
    AND SSA.END_DATE IS NULL                             
    AND SSA.SERVICE_ID = E.CURRENT_SERVICE_ID
    AND ET.EQUIPMENT_CLASS = EC.EQUIPMENT_CLASS
    AND EC.EQUIPMENT_CATEGORY = ECAT.EQUIPMENT_CATEGORY
    AND EL.EQUIPMENT_LOCATION_ID = ELR.EQUIPMENT_LOCATION_ID
    AND EL.EQUIPMENT_LOCATION_ID = ELE.EQUIPMENT_LOCATION_ID
    AND ELE.EQUIPMENT_ID = E.EQUIPMENT_ID
    AND E.EQUIPMENT_TYPE_ID = ET.EQUIPMENT_TYPE_ID
    AND EC.EQUIPMENT_CATEGORY LIKE '%METER'
    AND ELE.END_DATE IS NULL
    AND MR.METER_ROUTE_ID = ELR.METER_ROUTE_ID
    AND SA.SERVICE_ACCOUNT_NUMBER IN (6051, 124899)
    GROUP BY SA.SERVICE_ACCOUNT_NUMBER, MR.METER_ROUTE_ID
    --HAVING COUNT(sa.service_account_number) > 1thanks in advance

    If you take your query more or less as it is:
    select <code> SA.SERVICE_ACCOUNT_NUMBER,MR.METER_ROUTE_ID</code>
    FROM (rest of your query) take your query more or less as it is:
    select <code> SA.SERVICE_ACCOUNT_NUMBER,MR.METER_ROUTE_ID</code>
    FROM (rest of your query) and then wrap around it:
    select <code>SERVICE_ACCOUNT_NUMBER</code>,count(*)
    from (your query above)
    GROUP BY saervice_account_number
    having count(*) &gt; 1
    that should give you what you want.
    The inner query gives you all of the account#/route combinations.
    The outer query picks those account#s with more than one route.
    Jon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Need help with a simple php page link

    I have a small .php to force the download of a file when a user clicks on a link:
    <?php
    header ("Content-type:application/pdf");
    header ("Content-Disposition:attachment;filename='form.pdf'");
    readfile ("form.pdf");
    ?>
    I need to include code which will redirect the user back to the home page without opening a new browser window, either during or immediately after downloading the file. And if it's possible, prevent the browser back button to return the user to the download page.
    I tried adding this after the readfile line:  echo "<a href="mywebsite.com/index.html" /a>";
    but that failed miserably. My php knowledge is as weak as a bull moose after the mating season. Can someone help me out on this?

    If you couldn't tell whether it is AS2 or AS3, it is doubtful you can turn it from AS2 into AS3, at least not until you learn both languages.  There is no tool made that does it for you.

  • Re: Need help with open a web page

    Dear friend i cant open www.truperenlinea.com maybe you can support me because i install IE but other 5.2 version,
    i dont want install parallel and Windows, you can try to open for me and explain me.
    See the right side in the web need can see the username and password space to fill.
    Thank you so much
    Best regards

    Sorry, I got confused.
    You need to stick you your original post.
    Please don't post in someone elses thread, especially when the thread is completely in the wrong place to begin with and you post has nothing to do with the original post.

  • Need help with work flow

    I need advice on importing raw photos. Right now I import raw files from my camera to desktop then open lightroom and import from disk. My problem is when I want to delete a photo I don't believe when I delete from lightroom it deletes the photo from the folder where I downloaded it to my desktop?? I hope someone can give me some advice on importing photos from my camera to lightroom...Bob

    You may have duplicate folders, one where you first placed it and one where LR copied to.
    Check by having LR show you the location of the photo, and then see if all the images are in that folder/directory. Then look for another folder (still on DT?), and delete it, after having made a full scale backup of the whole system.
    When I d/l to desktop, I then put the folder where I want it to ultimately live, and tell LR to import in place.

  • Need help with multiclip / grouping

    Hi everyone - I'm brand new to FCP but have used Avid for many years. I'm trying to do something in a short I've inherited from another editor & can't figure out how to do it in FCP.
    In my dailies, there's an A-camera and B-camera for every take. Some also have a C-camera. Every clip has 4 audio tracks. The DP has assured me that I can ignore the 3rd and 4th audio track of the clips; splitting into 4 tracks is just something weird the camera does. The DP thinks the audio that was captured by the mixer's hard drive on set (before sending it to the camera) will be better quality than the audio tracks that are attached to the video clips. So he suggested that I sync up the WAV files to the video clips.
    So - my goal is to have a multiclip for each take that has all 3 cameras, deletes audio tracks 3 and 4, and also includes the WAV file. I can easily set an in-point to sync all of them, but I don't know how to get rid of the audio 3 and 4. Can anyone advise me on how to do this?
    Thanks in advance...

    The short answer is just make your multi-clips and ignore tracks 3/4. Mute those tracks and when you get you edit set you can unlink them from the clips and delete them. You might try and set up the channels in the sequence to strip them off when you place them in, but not sure what will happen if you try this with multi-clips.
    Unless the camera recordings weren't monitored or the mixers output wasn't recored at the camera, there would be no reason why the wav files on a hard disc would be better.
    You could go through the trouble of duplicating the clips loading them in a time line and unlinking audio 3/4 and then dragging those back in the bin and making multi-clips from those but arghhh.
    o| TonyTony |o

Maybe you are looking for

  • Can I use the File Adapter to transfer files from/to my own PC

    Hello, Would it be possible to set tu the file adapter to send or receive files from my own PC's file system? For example I would like to transfer a file from my PC to PI instead of using PI's file system? Can I do that? Thanks Marcelo

  • Taking a certain image out of a picture

    I'm trying to take a particular image out of my picture to use as a logo and be able to put it on business materials. I'm not having any luck with it. Can someone tell me how to do this, PLEASE. Thanks!

  • How Do i get new effects in Photobooth (like dizzy, lovestruck, nose twirl, etc)

    Hello. I have a 13 inch MacBookPro that I purchased in December, 2010. It's an OS X. I went to the Apple Store yesterday and I was fiddling with the other MacBookPro's there, and I was on Photobooth. I noticed that there are some new effects like "Di

  • Infopath Form Web Part not showing form

    Hello, I recently edited a list form in a InfoPath 2010 and published it to my site.  When clicking on "Add new item" it works fine.  The new form shows up and all is well.  The idea though was to enable the form from a separate page by using the Inf

  • Hard Drive Migration w/Boot Partition

    I am currently running an Arch media box/server from which I am planning to move all home server functionality onto a new piece of hardware. It currently has two hard drives setup in it (/dev/sda & /dev/sdb) which are setup with lvm. I am planning to