No image for username!!

I have uploaded a photo for my username but it does not show against my username. Can anyone please advise??

Is that the photo of the Doberman? It's in your profile page.  If you want it to be you avitar you'll need to go to your Profile page and click on the Change photo and avatar link at the right.  Then drag the photo to the bottom of the grid of avatar photos at the bottom and then select it as your avatar.
OT

Similar Messages

  • Multipoint 2012: Same Desktop (Template/Image) for all stations possible?

    How can I get the same Desktop on all stations?
    - same startpage in Internet Explorer
    - same search engine (e.g. fragfinn.de)
    - same Icons on Metro and Desktop
    - same background

    Group Policy will do a lot of the things for you but it wasn't robust enough for my needs so I created an unattend.xml file for our sysprep image that accomplishes what you want. We've set up 3500 stations with this.
    We have 700+ of the same servers, so I created the image exactly how I wanted it, down to where the desktop icons were located, customizations within Office products, classicshell.net start button replacement, drivers, etc. The trick is to create a normal
    user account (not an administrator account) that will be copied over as your default profile when you sysprep the image. All users will get the account settings by default when you run sysprep. I suggest that you clean up this master user account as well,
    by deleting temp, cache, and dump files that are not needed. You can do this after-the-fact by cleaning the C:\Users\Default profile, but you might as well do it now. Also, do NOT turn on DiskProtect or authenticate Windows. The unattend.xml file will authenticate
    Windows for you and automatically log in as the administrator account so you can rename the server and join it to your domain if needed.
    1. Once you've got your image perfect, make a backup of the partition/drive BEFORE continuing, since if you ever want to make changes to your image (i.e. install Windows Updates, software, or new drivers), you'll need to restore from this backup. You can
    do this with Ghost, Acronis, or some free ones out there.
    2. Log into your master user account that will be used for all users (DO NOT USE THE ADMINISTRATOR ACCOUNT). For this example, I created a user called SysPrep.
    3. Open up a command prompt with "Run as Administrator" and run this command (replace "U:\SysPrep" with the drive and folder where you've saved your unattend.xml file). Your server will power off after a minute.
    Do NOT turn your computer back on unless you're going to boot up to a CD/USB drive to capture an image or backup.
    C:\Windows\System32\SysPrep\sysprep.exe /oobe /generalize /shutdown /unattend:U:\SysPrep\unattend.xml
    4. Your drive is now ready to be used as a master drive for cloning to other hard drives. You have several options at this point but let me tell you what I did.
    A. Create a .wim file of the image to be used in ConfigManager. I was able to do this by booting up into WinPE and then running the imagex command as shown in the "Capture an Image for Deployment" section of this guide:
    http://www.danscourses.com/Windows-7-and-8/how-to-create-a-wim-system-image-file-with-windowsaik-and-windowspe.html
    B. I also purchased some StarTech.com SATDOCK4U3RE stand-alone hard drive duplicators with 3 StarTech.com 12in 22 Pin SATA Power and Data Extension Cables (Item: SATA22PEXT from MonoPrice) to make the transfer easier (I just plug the hard drives to the cable,
    so I don't have to remove the hard drive enclosure). This allows you to copy the master hard drive to 3 other drives at the same time. It takes about 17 minutes to transfer the master drive to 3 other drives. I purchased 3 of these units, which was much cheaper
    than purchasing one big unit that does more hard drives at the same time
    5. You'll want to do some cleanup after you've booted up a computer with the image. These commands (just put them in a .bat file and run as an administrator) will remove the unattend.xml files from the computer since they may include passwords and it will
    remove the master user account (I called mine SysPrep) since you don't need that anymore. I have a TON of other commands that created for more customization, but that's beyond the scope of this message.
    del /Q /F c:\windows\system32\sysprep\unattend.xml
    del /Q /F c:\windows\panther\unattend.xml
    powershell -command "([ADSI]\"WinNT://$env:computername\").delete(\"user\",([ADSI]\"WinNT://$env:computername/SysPrep,User\").name.value)"
    Okay, one last thing, since you asked about the background image. There are ways to get a different background image and I think you can do this in the unattend.xml file, but I sort of cheated and just replaced the master background image with my own (if
    I remember correctly, the file was locked down, so I had to take ownership of it before I could replace it with my own). The downfall of this is that if you run a check/repair on your Windows system files (I can't remember the command for that) it'll "repair"
    this background image and restore the old one. Here's the default background image: C:\Windows\Web\Wallpaper\Windows\img0.jpg
    Here is the unattend.xml file that I created. You'll want to tweak it for your own. I take no responsibility if this messes up your system or doesn't work as expected, so make backups before using this. The magic of this unattend file is that the following
    two lines allow the image to retain your drivers and most of your user profile settings (custom toolbars and pinned programs will not be retained).
    <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>      
    <CopyProfile>true</CopyProfile>
    The following values need to be adjusted for your situation:
    <Value>TypeInYourAdminPassword</Value>
    <Value>TypeInYourAdminPassword</Value>
    <ProductKey>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</ProductKey>
    <CompanyName>YourCompanyName</CompanyName>
    <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
    <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
    <Organization>YourCompanyName</Organization>
    <Home_Page>http://google.com</Home_Page>
    <Manufacturer>Lenovo</Manufacturer>
    <Model>TS130</Model>
    <TimeZone>US Mountain Standard Time</TimeZone>
    <HorizontalResolution>1366</HorizontalResolution>
    <VerticalResolution>768</VerticalResolution>
    ----------------------- Here are the contents of the Unattend.xml file below ----------------------
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>0809:00000809</InputLocale>
                <SystemLocale>en-GB</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-GB</UserLocale>
            </component>
            <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComplianceCheck>
                    <DisplayReport>Never</DisplayReport>
                </ComplianceCheck>
                <Diagnostics>
                    <OptIn>false</OptIn>
                </Diagnostics>
                <DiskConfiguration>
                    <WillShowUI>Always</WillShowUI>
                </DiskConfiguration>
                <DynamicUpdate>
                    <Enable>true</Enable>
                    <WillShowUI>OnError</WillShowUI>
                </DynamicUpdate>
                <ImageInstall>
                    <OSImage>
                        <InstallFrom>
                            <MetaData wcm:action="add">
                                <Key>/IMAGE/NAME</Key>
                                <Value>Windows MultiPoint Server 2012</Value>
                            </MetaData>
                        </InstallFrom>
                    </OSImage>
                </ImageInstall>
                <UserData>
                    <AcceptEula>true</AcceptEula>
                    <FullName>IT</FullName>
                    <Organization>YourCompanyName</Organization>
                    <ProductKey>
                        <WillShowUI>OnError</WillShowUI>
                    </ProductKey>
                </UserData>
                <EnableNetwork>true</EnableNetwork>
            </component>
        </settings>
    <!--
        PersistAllDeviceInstalls set to true makes it so Windows doesn't delete the existing drivers when you generalize
        DoNotCleanUpNonPresentDevices set to true allows for devices to persist after generalization, even if they aren't turned on
    -->
        <settings pass="generalize">
            <component name="Microsoft-Windows-PnpSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
                <DoNotCleanUpNonPresentDevices>true</DoNotCleanUpNonPresentDevices>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Home_Page>http://google.com</Home_Page>
                <CompanyName>YourCompanyName</CompanyName>
                <FavoritesOnTop>true</FavoritesOnTop>
                <FilterLevel>High</FilterLevel>
                <ShowMenuBar>true</ShowMenuBar>
                <Help_Page></Help_Page>
                <DisableFirstRunWizard>true</DisableFirstRunWizard>
                <DisableWelcomePage>true</DisableWelcomePage>
                <PlaySound>true</PlaySound>
                <ShowInformationBar>true</ShowInformationBar>
                <UserAgent></UserAgent>
                <Window_Title_CN></Window_Title_CN>
                <SearchScopes>
                    <Scope wcm:action="add">
                        <ScopeDefault>true</ScopeDefault>
                        <ScopeKey>Search1</ScopeKey>
                        <ScopeDisplayName>Google</ScopeDisplayName>
                        <ScopeUrl>http://www.google.com/search?q={searchTerms}&amp;sourceid=ie7&amp;rls=com.microsoft:{language}:{referrer:source}&amp;ie={inputEncoding?}&amp;oe={outputEncoding?}</ScopeUrl>
                        <FaviconURL>http://www.google.com/favicon.ico</FaviconURL>
                        <SuggestionsURL>http://clients5.google.com/complete/search?q={searchTerms}&amp;client=ie8&amp;mw={ie:maxWidth}&amp;sh={ie:sectionHeight}&amp;rh={ie:rowHeight}&amp;inputencoding={inputEncoding}&amp;outputencoding={outputEncoding}</SuggestionsURL>
                    </Scope>
                </SearchScopes>
                <EnableLinksBar>false</EnableLinksBar>
                <PrintBackground>true</PrintBackground>
            </component>
            <component name="Microsoft-Windows-RemoteAssistance-Exe" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <fAllowFullControl>true</fAllowFullControl>
                <fAllowToGetHelp>true</fAllowToGetHelp>
            </component>
            <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipAutoActivation>false</SkipAutoActivation>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ProductKey>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</ProductKey>
                <ComputerName>*</ComputerName>
                <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
                <RegisteredOwner>IT</RegisteredOwner>
                <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
                <CopyProfile>true</CopyProfile>
            </component>
            <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <fDenyTSConnections>false</fDenyTSConnections>
            </component>
            <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
            </component>
            <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <UserAuthentication>1</UserAuthentication>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SystemLocale>en-GB</SystemLocale>
                <UILanguage>en-GB</UILanguage>
                <UserLocale>0809:00000809</UserLocale>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
                <RegisteredOwner>IT</RegisteredOwner>
                <TimeZone>US Mountain Standard Time</TimeZone>
                <Display>
                   <ColorDepth>32</ColorDepth>
                   <HorizontalResolution>1366</HorizontalResolution>
                   <VerticalResolution>768</VerticalResolution>
                </Display>    
                <Themes>
                    <ThemeName>C:\Windows\Resources\Themes\aero.theme</ThemeName>
                    <DefaultThemesOff>false</DefaultThemesOff>
                </Themes>
                <OEMInformation>
                    <Manufacturer>Lenovo</Manufacturer>
                    <Model>TS130</Model>
                </OEMInformation>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                </OOBE>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>TypeInYourAdminPassword</Value>
                        <PlainText>true</PlainText>
                    </AdministratorPassword>
                </UserAccounts>
                <VisualEffects>
                    <FontSmoothing>ClearType</FontSmoothing>
                    <SystemDefaultBackgroundColor>9</SystemDefaultBackgroundColor>
                </VisualEffects>
                <AutoLogon>
                    <Password>
                        <Value>TypeInYourAdminPassword</Value>
                        <PlainText>true</PlainText>
                    </Password>
                    <Username>Administrator</Username>
                    <LogonCount>1</LogonCount>
                    <Enabled>true</Enabled>
                </AutoLogon>
            </component>
        </settings>
    </unattend>

  • DBUS doesn't start - Could not get UID and GID for username

    Hi.
    Today i installed Archlinux in other of my systems, but i have a problem. I installed the last dbus (dbus 1.4.16-1) and i putted it in my rc.conf:
    DAEMONS=(syslog-ng @network crond dbus alsa)
    but it doesn't start.
    The error is:
    Thu Apr 5 23:03:36 2012: :: Starting D-BUS system messagebus [BUSY] Failed to start message bus: Could not get UID and GID for username "dbus"
    Thu Apr 5 23:03:36 2012: [FAIL]
    So, i don't know what happen. In my other systems, i don't have any problem, only with this fresh install.
    Googling i found this solution from Chakra's wiki:
    Could not get UID and GID
    If you get the following error while starting DBUS:
    Failed to start message bus: Could not get UID and GID for username "dbus"
    then add the user like so:
    # groupadd -g 81 dbus
    # useradd -c 'System message bus' -u 81 -g dbus -d '/' -s /bin/false dbus
    If i do this, can i funk my system?
    Edit:
    That solution works well. I don't kown if in the future maybe i'll have some problem.
    Should i mark this post like "Solved"? Still i don't know what was the real problem.
    Last edited by superchango (2012-04-06 14:08:34)

    i'm out today and as i haven't completed setup yet i can't upload log to phone to post it all. 
    the problem wasn't spotted until trying to set up NetworkManager and lightdm.
    useradd and groupadd owned by shadow (4.1.5-4), it wasn't installed before dbus-core and avahi needed them though. not sure how install environment works, does it rely on installed version or installer versions?
    installed filesystem (2012.2-4) //FIRST LINE OF FILE
    /tmp/alpm_INcwzu/.INSTALL: line 2: usr/sbin/groupadd: No such file or directory
    /tmp/alpm_INcwzu/.INSTALL: line 3: usr/sbin/useradd: No such file or directory
    installed dbus-core (1.4.16-1)
    installed xcb-proto (1.7.1-1)
    installed xproto (7.0.23-1)
    installed libxdmcp (1.1.1-1)
    installed libxau (1.0.7-1)
    installed libxcb (1.8.1-1)
    installed kbproto (1.0.6-1)
    installed libx11 (1.4.99.901-1)
    installed dbus (1.4.16-1)
    /tmp/alpm_ETrJQT/.INSTALL: line 2: usr/sbin/groupadd: No such file or directory
    /tmp/alpm_ETrJQT/.INSTALL: line 3: usr/sbin/useradd: No such file or directory
    // INFO ON ADDING AVAHI TO RC.CONF
    installed avahi (0.6.31-1)
    // LOTS OF SUCCESSFUL PACKAGES
    installed shadow (4.1.5-4)
    // MORE SUCESS
    installed mkinitcpio (0.8.6-2)
    >>> Updating module dependencies
    ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    bsdcpio: Failed to set default locale
    // REPEAT FOR FALLBACK, SAME ERROR
    After that it's fine.

  • My Mac Pro is not displaying any images for videos or games, it is showing sound and working but nothing else. DVD player is also coming up with an error.

    My Mac Pro is not displaying any images for videos or games, it is showing sound and working but nothing else. DVD player is also coming up with an error. I'm not sure why neither is working, it just suddenly happened. I have done nothing different.

    Lao Bo,
    yes, you can locate and copy a file from your HD to a USB key using UNIX commands. If you know the exact name of the file which you’re trying to locate, try this:
    find / -iname filename -print
    This command will search your entire internal disk for the particular filename. If you know that it’s within a particular user account, then you can save search time with this variation:
    find /Users/username -iname filename -print
    Either variation of this command will print all files found which have the given filename. Presuming that you’re able to identify the correct file, you can copy it to a USB key using the command
    cp -p filename_returned_by_find /Volumes/USB_volume
    If you’re not sure which volume name your USB key has, this command will show you what the possibilities are:
    ls /Volumes
    Please let me know if you have any trouble with these commands.

  • Images for tabs are not getting displayed in the page

    Hi,
    I have given images for tabs on a page. when iam applying images from the local disk, it is showing the images in edit mode. But when I view the page, it is not showing any images.
    Where should i copy the images I use in my pages. I ahev copied all the images in the images directory of portal30 in server.
    Please help.
    Murthy

    Hi,
    Please check the httpd.conf file in your server for /images alias. The /images alias will point to a directory. Copy your
    image files in that directory.
    Thanks,
    Sharmila

  • How can I use a JPEG file as a background image for my vi in 8.5

    Im working on a vi that I plan on using as part of an alarm system.  I would like to use a JPEG file of my house as a background image for the vi, or possibly to just be displayed in a window on the control panel.  I have seen people use their own images before, but never looked at what this involved.
    Im trying to use the "read JPEG file" vi and the "draw flattened pixmap" vi to accomplish this.  The vi does run, but nothing shows on the front panel.  If I try to create an indicator from the "new picture" output of the "draw flattened pixmap" vi, I get an empty white window on the front panel.
    Any advice?
    Thanks
    Solved!
    Go to Solution.

    Guruthilak wrote:
    the earlier vi (using the JPEG) works fine. just increase the size of the picture control
    I figured this was the problem. And to the OP, I'm glad a bitmap worked, but no I didn't mean use any sort of LabVIEW programming at all. I meant open your image in Microsoft Paint, Press ctrl+A to select the whole thing. Then copy the image to the clipboard. Now select your front panel and press ctrl + v to paste it. No programming needed and the image is there. However, if you want to programmatically change it, you will need a picture control.
    CLA, LabVIEW Versions 2010-2013

  • How to use the same (selection) paths in multiple images for batch processing?

    I have a whole bunch of photos I need to batch process, but, when creating an action for this, I stumbled upon the problem that the paths I selected with the pen tool, and saved under the "Paths" tab need to be in every image for to be used in the action. I did try to solve it for some time, but couldn't figure out. Any ideas?
    Many Thanks
    Carlos

    Batch processing usually involves using actions you have recorded.  In Action you can insert Path that can be used during processing documents.  Path have some size so you may want to only process document that have the same size.  Look in the Actions Palette fly-out menu for insert path.  It inserts|records the current document work path into the action being worked on and when the action is played it inserts the path into the document as the current work path..

  • How to exchange one image for another with a click

    I am brand new to actionscript, so bear with me! I need to create an interactive web-based system which takes the user through steps to assemble something. One of the pages will have images of the tools needed. I want the user to be able to 'tick' off each tool, so that when they click on the image of a specific tool it is replaced by the image faded out and a big red tick over it. essentially it is replacing one image for another when it is clicked on.
    any ideas on the actionscript? Sorry i know this must be basic stuff for you!
    thanks!

    your tool images should be converted to movieclips and given instance names and you should create a red tick movieclip that you assign a class, say RedTick.  you can then use:
    tool1.addEventListener(MouseEvent.CLICK,toolClickF);
    function toolClickF(e:MouseEvent):void{
    var redtick:RedTick=new RedTick();
    addChild(redtick);
    redtick.x=e.currentTarget.x;
    redtick.y=e.currentTarget.y;
    e.currentTarget.alpha=.4;

  • How to create a background image for each item in a List object

    Hello.
    I am trying to create a background image that displays whenever a user posts something to a list.  For example when a user posts text it would appear in a list.  The new item in the list would contain a specific background image with the users text appearing on top of the background image.  I do not want a background image for the entire list, rather each item within the list.
    I am not sure how clear this is so I added an image below.  When a user enters text in and clicks the "post-it" button their text would appear below with the sticky note background. 
    I am not sure which list type would be best for this problem or how to create insert the image, so I am open to suggestions. 
    Thank you for your help.  Any advice or guidance will be greatly appreciated!

    Hi
    the easiest way would be with itemRenderer.
    You have to do two things:
    1. In your list declaration use a item renderer: <mx:List itemRenderer="myRenderer"/>
    2. create a flex component myRenderer that will be the single item. This can be a canvas with a background image and a text field on it.
    When you add a new item to the list, a new myRenderer item will be created and the data property will be passed to it. So you have to put "data" in your textField.
    If you need more help try looking at Tour de Flex samples, they're pretty easy.
    Andrei

  • One Image for dual and single processor G5 machines

    I'm working in a lab that has both single and dual processors G5 machines. There is only one image for both machines and I suspect that we have a few bugs with the single processor machines because of this. Has anyone else used one image for both single and dual processors? Have there been problems. I'm wondering if it is necessary to create two separate images.
    mdinger

    There is not difference in the images, but you might have problems with the single G5 machines and 10.4. Did you do the firmware upgrade?
    I have ~10 single G5 and 25 dual D5 machines netinstalled from one image without trouble.
    jotjot

  • How can I add the logo image for a single item in an RSS feed?

    Hello,
    I am an administrator of iTunes U at the University of Minnesota.
    Before transitioning new public site, we are trying to figure out how to put a logo image into RSS feeds.
    We use our server to makes xml codes to create RSS feeds for podcasts.
    We successfully put a logo image for a collection in a RSS feed, but putting a logo image for a single item did not work.
    Below is the part of the xml code for the logo image for a single item, which is created by our server. I deleted other parts of xml code for your convenience.
    <item>
    <title>Plagiarism</title>
    <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" />
    <enclosure url="http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3" length="8544508" type="audio/x-mp3" />
    <guid>http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3</guid>
    <image></image>
    </item>
    We tried both <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" /> or <image>http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimming-conta st.jpg</image>.
    Both did not work.
    Can anyone help?
    Thank you for your help in advance!!
    Seogjoo

    Haven't created too many podcasts, but in this one
    http://itunes.apple.com/us/podcast/connecticut-college-sculpture/id372414245
    or
    itpc://video.conncoll.edu/d/sculptures/index.xml
    before we included the audio files, we added the images in iTunes.
    Select the file, then go to File>Get Info, here you can add metadata, and in Artwork add an image.
    Then upload this file to your server. Works for audio files anyways.
    You don't see the image in the web podcast, but you do in iTunes after you download each item, in "Show item artwork" in lower left. Click on the image and it zooms out.

  • Using a background image for the buttons in spry menu

    Hi All,
    Going nuts here.
    I'm using the vertical spry menu widget w DW CS3 and trying
    to alter the css style sheet, so that I can use a li class for each
    of the 14 links on this page, with an upstate and a hover state
    only. (the focus, and hover while down will be the same as the
    others, to keep it simple and not too distracting)
    The page is here that I will be replacing the entire
    background image in sidebar1 and sidebar2 with a custom spry menu
    with the 14 li classes for 2 seperate menus:
    http://audibleimagesav.com/blank_doc.html
    Has anyone used a background image in place of just using
    bkgrd colors and borders for the spry menu ?
    I am aware of the attributes that the help docs suggest that
    need to be altered as listed here :
    http://livedocs.adobe.com/en_US/Spry/1.4/help.html?content=WS0BB04E11-1BE3-4a67-BC94-BE7DA 93A0159.html
    I have been working on just an experimental page, that is now
    hacked up, however if you want to see that it is here with only the
    first list item coded:
    http://audibleimagesav.com/site%20theme%20ideas/sprymenu_exp.html
    The spry css menu widget for that page is here:
    http://audibleimagesav.com/SpryAssets/SpryMenuBarVertical.css
    So in short, has anyone done a bkgrd image for the main menu
    (not submenu) in a spry widget?
    Thanks in advance.
    Art
    Art Hansen
    Web Design & Marketing
    http://www.innova-techsolutions.com
    321.750.3852 - Cocoa Beach, Florida, USA

    http://meyerweb.com/eric/css/edge/popups/demo2.html
    Maybe

  • Using the value "Image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of preconfigured file types (.jpe, .jpg, .jpeg, .?

    On a form, using the value "image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of pre-configured file types (.jpe, .jpg, .jpeg, .gif, .png, .bmp, .ico, .svg, .svgz, .tif, .tiff, .ai, .drw, .pct, .psp, .xcf, .psd, .raw)?
    Say I wanted to add .gif, .jfif or .ico. I find this array limited, how can I add types to image?
    <input type="file" name="file" accept="image/*" id="file" />
    mimeTypes.rdf does not seem to allow this.

    ''mimeTypes.rdf'' has nothing to do with web development. It's a file that stores your file handling preferences (e.g. if you want ZIP files automatically saved or opened).
    You can't change the file types of the pre-defined content specifiers (audio/*, video/*, image/*), but you can specify additional MIME types. To add PDF to your above example,
    <pre><nowiki><input type="file" name="file" accept="image/*,application/pdf" id="file" /></nowiki></pre>
    For details, see
    * [https://developer.mozilla.org/En/HTML/Element/Input developer.mozilla.org/En/HTML/Element/Input]

  • Why can I no longer use an image for my signature on forms?  The only option I have now is "use a certificate".  It was never like this until today.

    Why can I no longer use an image for my signature on forms?  The only option I have now is "use a certificate".  It was never like this until today.

    Hi,
    I had never heard of someone using the iPhone Number as the ID in the iMessages account in the Mac version.
    i.e without adding an Apple ID
    iMessages does allow iPhone numbers and mine lists mine.
    I would try this.
    Sign Out of the iMessages account and Quit Messages
    On the iPhone in Settings > Messages remove the Apple ID
    Set the iPhone to Airplane mode for a few minutes (to break with the  Server)
    On starting the phone up again check the iPhone Number  is ticked for iMessages.
    If it is add the Apple ID
    On the Mac restart Messages
    Add the Apple ID
    At this point you should get a pop up or two saying the iPhone is using the Number and Apple ID.
    Accept these and they get added to the Receive At list and Send From drop down.
    9:41 pm      Monday; October 28, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • On Ibooks Author, my programmed image for the Chapter page no longer shows up on new pages, just appears as a question mark inside a box, How do I fix this?

    On Ibooks Author, my programmed image for the Chapter page no longer shows up on new pages, just appears as a question mark inside a box, How do I fix this? Please help, its the same when I try and copy and paste the same image within Ibooks author.

    https://discussions.apple.com/message/24420017#24420017
    You may have  moved or removed content on your page or  its possible you  used the"Adjust Image" and over sharpeed one or more images.
    I assume  you mean it does not show up of new Chapter pages... have you checked the  template?
    Where you see the  ?    you  need to either reduce teh  box outline size - or drop anther  copy of the original image onto  it, it may  fill the  ? box or sit on top.... delete the ? box.
    If its Chapter page only related, its  better doing this in the template.
    Is you image .jpg or .png?

Maybe you are looking for

  • SLD server connection is inactive

    Hi, "SLD server connection is inactive is shown" by executing RSGET_SMSY SLDCHECK -> is ok SLDAPICUST -> is ok LCRSERVADDR  -> is set SMSY_SETUP->Edit->expert setting     ->  testet with all Blank and with serveral user data SLD is working fine by co

  • Why is iPod syncing so slow?

    I have been try to sync my iPod with my pc and it has taken close to 20 hours, and I am not yet half way. This has never happened. Why is it so slow? Any help

  • JTabbedPane flashing problem

    I have a JTabbedPane with two tabs (JPanels) added to it. When the view comes up sometimes the second tab (the panel which is being added later) flashes and some of the fields in it are shown on the first tab. When I click on the second tab and then

  • Cs4 quick selection tool program error

    When ever I try to use the quick selection tool in photoshop cs4 it gives me a can't complete the request program error. I have turned off open GL I have the latest drivers.  It never did this before.  I reset the preferences file more than once.  An

  • Wha? bluetooth is either ON or OFF. help!?

    Basically. The bluetooth chip is always unpredictable. At one moment, it'll be On even when I had never turned it on. Sometimes it'll be off like I normally have it. Then it'll be GONE. As if the chip never existed in my computer. My preferences and