Using search and comments on my own server

Hi all,
I have created a blog site and I use the search and comments features.
I noticed that every time I publish my site to a folder (or to our internal server) instead to .Mac the functionality of the search and comments is gone.
Is there a way to restore them on our internal server?
Thanks,
Ziv

The search and comments features are part of dotMac.
WOW there are a lot of websites out there using .mac I would never of guessed given that information...
j/k
irony; if you _search for search_ your may find what you're searching for
Want someone to hold your hand?
Comments
C'mon Ziv search is your friend! Don't ask how to put it on your site if you don't know how to use it in the first place that's just hypocritical.

Similar Messages

  • How do I upload an image using as3 and display it without a server?

    Is it possible to upload an image using as3 and flash player 9 and then display it in a movie clip without server side assistance?
    thanks,
    JB

    Hi,
    Check out the links..
    I hope it will helps u.
    http://labs.findsubstance.com/2008/04/03/as3-upload-encode-images/
    http://flexscript.wordpress.com/2009/01/12/uploading-an-image-into-flash-without-server-si de-script-using-flash-player-10/
    Saransoft

  • How to use Version and Comments column in Finder

    Hi,
    in Finder you can choose to show the Version column and also the Comments column.
    Can someone please explain how to use these features?
    I hope there are some type of configuration managment feature hidden behind this column but I haven't found any info on this when seraching the web. To begin with I'd like to be able to add info to these fields.
    Have a nice day!
    /Erik

    Applications can have version numbers, like Safari 5.1.10 or 7, or Image Capture, as above.
    Files that the user can write to, may have 'spotlight comments' added via the Finder - Get Info window. Those can be displayed in a Finder listing, as you've noted, and entries  will be indexed by spotlight so that they show up in a search of file contents.

  • Capture image with webcam using flash and sending it to the server

    I have a need to use flash to capture an image and have that image uploaded to the server. I have seen some examples of code that uses flash to capture an image but it saves the file locally. We need that file to be sent to the server. We are using CF9.0 and I figure that once we are able to capture the image we could hand it off to ColdFusion to send to the server.
    Has anyone done anything like that or know if it's possible?
    Any help is apprecaited.
    Thanks,
    Mallory

    It's not that hard...after you capture the image in Flash encode just send it via Remoting to a cfc as a bytearray or a bytearray encoded as Base64 string (and then decode it to binary in the CFC). I have had better luck with the latter way. You could also post the bytearray encoded as a Base64 string to a .cfm page as a form field.
    For example in Action Script 3 you do something like this (assuming "frameBMD" is the BitmapData drawn from the video source):
    var ba:ByteArray=com.adobe.images.PNGEncoder.encode(frameBMD);
    var baAsString:String=com.dynamicflash.util.Base64.encodeByteArray(ba);
    var saveImageResponder:Responder=new Responder(onSaveImageResult,onFault);
    var rs=new NetConnection();
    rs.objectEncoding=flash.net.ObjectEncoding.AMF3;
    rs.connect("/flashservices/gateway");
    rs.call("Headshot.saveImage",saveImageResponder,baAsString,1);
    And your cfc would be something like this:
    <cfcomponent displayName="Headshot" hint="Save a Headshot">
    <cffunction name="saveImage" access="remote" output="false" returntype="string" roles="user">
      <cfargument name="data" type="string" required="true" />
      <cfargument name="user_id" type="numeric" required="no" default="1">
      <cfset SavePathParent = ExpandPath("/data/users")>
      <cfset SavePath = SavePathParent & "/user_" & arguments.user_id>
      <cfif NOT DirectoryExists(SavePath)>
        <cfdirectory action = "create" directory = "#SavePath#" mode="777">
      </cfif>
      <cfset theFilePath="#SavePath#/headshot_#arguments.user_id#.png">
    <!--- Write the file --->
      <cffile action="write" file="#theFilePath#" output="#toBinary(arguments.data)#"/>
      <cfset LOCAL.file_url="/data/users/user_#arguments.user_id#">
      <cfreturn LOCAL.file_url/>
    </cffunction>
    </cfcomponent>
    Anyway, that's the idea... hope that helps.

  • IMac phantom please help search and mouse on its own

    Hi,
    my iMac has gone crazy. Opening spotlight search. Characters. And search in finder all on its own. When on a web browser its scrolls to the bottom of the page on its own. The right mouse button Magic Mouse function has become the left click and right click.
    i Know iMac shouldnt get virus or malware but it sure feels like it has ?
    any help greatly appreciated

    Had logitech wireless adaptor in usb think this may have been the culprit. Have unplugged and will try again if this helps anyone reading this is the future.

  • Help Needed with using Japanese and Chinese characters in SQL Server

    Hi,
    In my application I have to deal with storing chinese, japanese and English characters in the database which will come from a JSP ... Please help me in knowing how to do this...
    Thanks
    Rhea

    Hello,
    I believe that I answered this question on this post:
    http://forum.java.sun.com/thread.jsp?forum=16&thread=25625
    I hope that this helps.
    Perogi.

  • When I use the   and - keys on their own it used to adjust exposure (in develop mode) but now it adjusts contrast and i can't work out how out change it back to exposure?

    How do you change + and - keys back to adjusting exposure rather than contrast? I can't find any documentation about this.
    Thanks :-)

    NO way!! thats os easy LOL thanks heaps, i really appreciate you responding :-) problems solved!!!! :-) cheers mate

  • Global search and replace on large-scale multi-user sites

    Is there a way for Dreamweaver to select only the files that
    are found when using the find and replace facility? This would make
    updating large websites a lot easier.
    From time to time I need to perform small changes to text or
    code (that obviously is not contained in an include file or library
    item) sitewide. As the site is administered by multiple users, it
    uses the check-in/check-out system, which means that before editing
    a file, it needs to be checked out. Thus, we can't just use search
    and replace directly, we have to check out the relevant files
    before performing the replace routine. The problem is selecting
    only those files which will be affected by the search and replace
    (and perform the operation in minutes) rather than selecting
    everything (and spending hours).
    Since it seems one is unable to select only files that appear
    in the search results, I have to manually identify the folder that
    holds the files with the results, and then check it out. As the
    files which need to be edited might be scattered around the whole
    site, this often means that I have to check out whole folders close
    to the site root. The check-out command will include everything in
    a folder, and the site contains thousands of files (which has to be
    checked back in afterwards), so obviously this is a heavy and
    time-consuming operation.
    Does anyone know if DW has a way of selecting only the
    relevant documents, or have suggestions for other ways of doing
    this? I get the feeling that this is most easily achievable by
    using tools outside DW, but I hesitate to go outside DW since it
    would interfere with DW's site managment system.

    I don't think you will find anyone here with such experience,
    not the least
    reason being that Library items run out of useful steam at
    about 100 pages.
    To use them on larger sites is just too tedious and risky,
    honestly. Is
    there any possibility to change to server-side includes?
    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
    ==================
    "lochnessmoose" <[email protected]> wrote in
    message
    news:gb5ua7$a2t$[email protected]..
    > Is there really noone here with experience with this
    problem?
    >
    > The same problem applies to editing library items. I
    need to update a
    > library
    > item that will affect 200+ files (on a website that has
    thousands). Being
    > able
    > to select only those 200 for check out before editing
    would be a lot
    > easier
    > than having to check out the entire 500 MB site....
    >

  • How to get numeric result from 'search and replace' string function

    hii
    i am using search and replace function to get output.my output is of form ' *X0123.3 ' .here i am replacing the term *X01 with space because i need only 23.3 as a result.but i am unable to get that out in the output indicator.i used lot of functions like string to number and so on but i am getting output as zero .can you please suggest me wt to do.i am attaching a copy of my file.
    Attachments:
    Untitled 1.vi ‏25 KB

    Your problem is the fact that you are converting it to an integer, thus loosing the fractional part. You need to use "Fract/Exp String To Number" instead and create a DBL so yor data is 23.3 instead of 23.
    You also don't need to manipulate the string if the initial part is of constant lenght. Just use the offset input as in the figure below.
    Message Edited by altenbach on 07-31-2006 07:02 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    ToDBL.png ‏2 KB

  • Search and Replace String throwing the wrong error message with regexp?

    This came up in a LAVA thread, and I'm not sure if there's a bug here or not. When using Search and Replace string, and using a regular expression of [(G[b|i])], LabVIEW throws error -4622, "There is an unmatched parenthesis in a regular expression."  There are obviously no unmatched parenthesis in that expression, so it seems to me that the wrong error is being thrown. I'm just not sure if that's a syntactically valid regexp. The problem seems to be with nesting [ ]'s inside ( )'s inside [ ]'s. I've tried a couple of regexp resources on the Web, and one suggests it's valid, while the other seems to think it isn't.
    Message Edited by eaolson on 03-13-2007 10:33 AM
    Attachments:
    ATML_StandardUnit2.vi ‏10 KB
    regexp.png ‏5 KB

    adambrewster wrote:
    I think your regexp is invalid.
    In regexps, brackets are not the same as parentheses.  Parens are for grouping, while brackets are for matching one of a class of characters.  Brackets can not be nested.
    If the regexp is replaced with [G[bi]], there is no error, so it's not a matter of nested brackets. I couldn't find anything on the PCRE man page that forbids nested brackets specifically, but it makes sense.
    Your expression "[(G[bi])]", therefore parses as a character class which matches '(', 'G', '[', 'b', or 'i' followed by an unmatched paren, and an unmatched bracket.
    I don't believe that's the case. Replace the regexp with [(Gbi)], and the error goes away. So it's not a matter of the '(' being literal, and then encountering a ')' without a matching '('.
    daveTW wrote:
    what string exactly you want to replace? I think the round braces are not right in this case, since they mark partial matches which are given back by "match regular expression". But you don't want to extract parts of the string, you want to replace them (or delete, with empty <replace string>). So if you leave the outer [( ... )] then your RegEx means all strings with either "Gb" or "Gi".
    It's not my regular expression. A poster at LAVA was having problems with one of his (a truly frightening one), and this seemed to be the element that was causing the problem. I'm pretty sure that the originator of the regexp meant to use G(b|i), which seems like a complicated way of matching "Gb" or "Gi", if you ask me.

  • Verdana Font not printing properly using Vista and Acrobat Pro v8

    Has anyone got any ideas as to how I can fix this problem.  When I send a word doc to the pdf printer that is all in verdana font it prints out gibberish, however, if in aerial or times new roman thats fine.  I'm using Vista and printing via a terminal server.

    S.D.A
    I'm sorry but I'm not if the font is embedded as I expect it is, as I have no problem printing the font on various personal computers I use.  However, the user that I am trying to support is having problems.
    Previously when we were using Windows XP Pro and Acrobat Pro v8 and the user had no problems printing over the LAN.  We recently moved and ugraded our systems to Windows Server 2008, Windows Vista and printing via Terminal Services.  The fault may lie with the pinter drivers not being installed on the Terminal Server, but I'm not sure I just need someone to confirm they have had the same problem and how they fixed it.
    Any suggestions would be greatful.

  • Strange Behaviour when opening pdf files using search results

    Hi
    I have observed inconsistencies between opening a pdf file when in the document library itself (it opens in a browser - good).
    However, when I click on a the same file in my search results having used Search and the Search Centre it opens in the adobe reader.  I would rather it opened in a browser rather than the adobe reader.
    The only difference I can see is that when opening from a document library the url ends in ".pdf", whereas when opening from the search results the url ends in ".pdf#search=<search string>.
    Anybody any ideas ?
    Regards
    Nigel
    Nigel Price NJPEnterprises

    Hi Nigel,
    According to your description, my understanding is that you want to open pdf from search result in browser.
    Firstly , permissive Browser File Handing in Central Administration, you can refer to the link:
    http://social.technet.microsoft.com/wiki/contents/articles/18858.sharepoint-2013-how-to-view-pdf-files-in-browsers.aspx
    Whether you are using OWA for SharePoint 2013. If Office Web Apps is not used for Search results of PDFs, the opening of PDFs in the browser passes the search terms into Adobe. So, if you don’t use OWA, please configure it for SharePoint 2013.
    More information, please refer to:
    http://stevemannspath.blogspot.com/2013/04/sharepoint-2013-pdf-support-and.html
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Search and replace with wildcard?

    I always use search and replace with Homesite but I wonder if
    there is a way of using a wildcard? I often want to replace text at
    the beginning and end of variable text. I mean, if I have this:
    <h3>First text</h3>
    <h3>Second text here</h3>
    What I'd like is, using the * as a wildcard, is to use
    something like this:
    Replace <h3>*</h3> with <h2>*</h2>
    Any ideas? Thanks

    Make a backup first, in case this doesn't work (although it should).
    Use this in the Find field:
    countryText = "([^"]*)";
    And this in the Replace field:
    <countryText>$1</countryText>

  • Comments and Moderators settings in RoboHelp Server is for AIR files? Or can it used for Pro outputs as well?

    Please explain how comments are enabled for Pro outputs in RH server. Is it only for AIR file, but i understand AIR output is not supported. Then how Moderators setting work for PRo outputs?

    Hi, PraTha
    If I can amplify what Peter has mentioned above. Actually it is just a wordy way of saying what Peter posted in one sentence! Hopefully it will help a bit.
    The relationship of AIR output and how it relates to Rh Server is admittedly confusing. In fact both are mutually exclusive.
    The AIR Help output does indeed support commenting as well as the moderation of those comments by designated people.
    However RoboHelp Server *does not* support commenting at this time. This feature has been requested and perhaps we will see it in a future release.
    Unlike a help system delivered by HTTP from a web server (like RoboHelp Server's WebHelp Pro), the AIR Help output (.air file) is an application which is installed on the end-user's local computer. For security reasons this works well for distributing and updating a help system. Optionally, it also supports commenting but because the comments must be "stored" somewhere outside the local computer, there are serveral options. One is to store them on an internal server (such as a network drive behind a firewall).
    So where might RoboHelp Server come into the picture at all? Here's the answer. Some organizations deploy both output flavors (AIR and RoboHelp Server) for different systems and different audiences. IF the RoboHelp authors *coincidentally* happen to have RoboHelp Server in their organization, then this server can be used to authenticate (usernames/passwords) for the moderation and storage of comments that AIR Help requires.
    The bottom line is that presently RoboHelp Server does not support commenting for its own output, though it can as a convenient "host" for the comments and moderation of a separate AIR Help system.
    John Daigle
    Adobe Certified RoboHelp and Captivate Instructor
    Evergreen, Colorado
    www.showmethedemo.com

  • Is it possible to use markers in a Premiere Pro sequence such as Chapter / Comment / Segmentation and export the XMP metadata for a database so that when the video is used as a Video On-Demand resource, a viewer can do a keyword search and jump to a relat

    Is it possible to use markers in a Premiere Pro sequence such as Chapter / Comment / Segmentation and export the XMP metadata for a database so that when the video is used as a Video On-Demand resource, a viewer can do a keyword search and jump to a related point in the video?

    take have to take turns
    and you have to disable one and enable the other manually

Maybe you are looking for

  • Problem with image transparency in Director

    We want to use some Photoshop images with some transparency and gradients (ie foreground color to transparent background) in a project where the image will be placed over various other background images (the background images will show through the tr

  • Creating a copy of an existing JTable that does not have source code.

    Hi I am working on a java swing based application. We used a third party API for JTable for showing some data in a table format and also for printing function. As of now print button is printing the whole table being shown in the application. Our new

  • How to make a duplicate record in oracle fomr

    Hi, I have a custom master-detail form in ebs. User wants to query a record and store a duplicate record in the database with modification of some column values. I am using custom tables in data blocks. Please guide me how can I do it. Regards Farooq

  • TDS on Transporter 100% Exempted

    Dear Expert, I got a scenario for 100% TDS on transporter vendor. I configured a withholding tax code with 0% and assigned it in vendor master data also assigned exempted reason, exempted % as 100%, when I am creating remittance challan i am getting

  • I lost my fone how do i track it

    Please help i lost my iphone.... how do i track it