URL info for Yahoo!

Hello All!
Quick question. Recently Yahoo! revised their online ad services and now it's more dependant on the listed URL information.
I need to alter the URL for my "Welcome" page so that instead of reading www.CinemaShorts.com/Welcome it shows up as something like www.CinemaShorts.com/PopularScienceDVD.
Here's my question - any advice on what's the best format for the URL? If I leave spaces in between Popular Science DVD I know it will appear as Popular%Science%DVD. I guess I could use the old underscore method (PopularScienceDVD) but what about having everything run together as in PopularScienceDVD? Does it make a difference when search engines compile and deliver results?
I'm paying for per-click impressions but if someone types in the keywords "popular science" and my ad doesn't show it does me no good (and apprently the lack of a "popular science" reference on the page header info overrides my selection of "popular science" as a searchable keyword).
Any help is much needed and greatly appreciated!
Thanks!
Mark

Disassemble the login page to find the details of the form - target URL and fields. Do a HTTP POST to it (Google will turn up example code using URLConnection). Record the Cookie headers from the reply, and set them in subsequent URLConnections. See the relevant RFC for details. Java 1.5 includes some cookie management, but I haven't tried using it.

Similar Messages

  • Jdbc url for yahoo finance

    Hey guys,
    Can anyone please help me find out what is the JDBC url for Yahoo Finance Database that stores the values of the historical stock quotes . I desperately need it for my java application in which I require to access the database in order to get the high, low, open, close quotes of a stock index. Any help would be greatly appreciated.
    Thank you,
    Vivek

    Hi!!
    The URL to the database on the yahoo webpage is http://chart.yahoo.com/d . If you go to that link then you will be able to access the database and do a search on it.
    Please reply. Any help will be greatly appreciated.
    Thank you,
    Vivek

  • Step By Step Example for Application Integrator for Yahoo or any kind of

    All EP Expert,
    I want to create yahoo or Gmail or any kind of url iView on which I can implement SSO for learning purpose on my Local laptop.
    I have installed EP SP9 on my laptop.
    I go through some blog and some discussion but I am not able to find below files mentioned in those blog.
    1. AppIntegrator.zip file to find two files
    2. com.sap.portal.howtos.webapp.par file
    3. HowToUseAppIntegrator_en.pdf file
    So I am not able to perform step by step instruction as mentioned in blogs.
    Can any one provide me any kind of documents for EP SP9 for Application Intigrator functionality basically I am interested to integrate JAva base application in my portal with SSO but if any one can provide for Yahoo or Gmail for EP SP9 it will be a great help.
    Thanks and waiting for some help on this form all EP experts.
    I will reward full points for right answer.
    Thanks in Advance.
    Ashish.

    Hi Mona,
    Thank you very much for your prompt reply.  I really appreciate if you can provide me exact location from where I can download "Application Integrator" zip file from which I can extract  "com.sap.portal.howtos.webapp.par" file as describe in example PDF file. I tried very hard to find on SDN and "help.sap.com"  but could not find it.
    If you have it with you then please send it to me on my email ID [email protected]
    Or please tell me exact location from where I can download it.
    I give 10 points for this help.
    Thanks in Advance.
    Ashish.

  • Get URL info

    I am building a file that will called a stored function in my DB, passing dynamic emp info to the function. P
    ie.
    select 'http://server1.test.org:9000/pls/apex/#OWNER#.sis_express_base.display_student_picture?l_fk_student_id=' || B.FK_STU_BASE
    from stu_base B
    What I don't want to do is hard-code my server info in the URL ''http://server1.test.org:9000/'. I want to grab that based on the the URL info from page I am currently on. Is there anyway to do that?

    bobmagan wrote:
    Thanks.
    Your talking about doing something like this:
    'http://' || owa_util.get_cgi_env('http_host')
    || '/'
    || owa_util.get_cgi_env('script_name')
    || '/'
    || owa_util.get_cgi_env('path_info')
    || '/'
    || owa_util.get_cgi_env('query_string')
    Is there a way to get everything at once?What webserver are you using? If Apache, then you might be able to use SetEnv to create a new CGI env var that contains exactly what you want since it doesn't exist by default... http://httpd.apache.org/docs/2.2/mod/mod_env.html#setenv
    Then you need to use PlsqlCGIEnvironmentList to access it from owa_util...
    http://docs.oracle.com/cd/B14117_01/server.101/b12255/confmods.htm#1028003
    For example there is already an variable called REQUEST_URI that gets you closer to what you want. You'd need to add the following to your dads.conf to access it...
    PlsqlCGIEnvironmentList     REQUEST_URI
    Update: SetEnv can't do it either as it only lets you set a variable for the entire instance, not per request. Just concatenate or otherwise you could try SetEnvIf or mod_rewrite has a thing apparently too which looks even more promising and even more fandangled.
    Edited by: Capt. Egg on 21/05/2012 22:02

  • Different url-patterns for same servlet running in 2 different environments

    Hi All,
    I have a question about url mappings in my web.xml file and I hope somebody can help. The situation is that I�m putting together a web app using a combination of JSPs and servlets. I can�t develop on the machine that it will be hosted on, so I�m working and testing on my own machine and will transfer to the host machine when finished. However, the host machine is set up to map serlvets to http://�/servlet/MyServlet but the copy of tomcat I have installed locally maps to http://�/MySerlvet. My question is, when I get ready to transfer my application do I have to go through all my code and find serlvet references and insert the �servlet/� path info required by the hosting service, or can I just change the url patterns for the servlet mappings of the web.xml file on the host machine ? In other words:
    Local install of Tomcat where servlets are accessed at http://�/MyServlet
    <servlet-mapping>
    <servlet-name> MyServlet </servlet-name>
    <url-pattern>/MyServlet </url-pattern>
    </servlet-mapping>
    Host machine install of Tomcat where servlets are accessed at http://�/servlet/MyServlet
    <servlet-mapping>
    <servlet-name> MyServlet </servlet-name>
    <url-pattern>/servlet/MyServlet </url-pattern>
    </servlet-mapping>
    I guess my thinking is that it would be better/easier to have a remote and local version of the web.xml file that reflects the environment each one resides in and have only one codebase rather than 2 codebases and 1 web.xml file. Am I thinking about this in the right way, or have I misunderstood something?
    Thanks,
    Peter

    What you�re suggesting is logical, but won�t that
    effect all the other stuff I�ve got running on my
    local Tomcat install that expects servlets to be
    accessed at http://.../ServletName ?
    in web.xml, you decide of your mapping, so you could use the /servlet/ServletName pattern for your application that needs to be remote, and /ServletName for the rest of your stuff. You can even define more than one mapping for a servlet...
    In fact, you should probably put your whole application that is going to be on a remote server in it's own context, and to be ahead of dufymo :-) , learn to put it a war file for deployment.

  • My Galaxy S III email setup for Yahoo isn't working

    I'm not able to setup my Galaxy S III for Yahoo mail. I get an message 80315, that the username or password is incorrect. They're not--I tried several times! I tried using both the Yahoo setup and the generic Other manual setup. It retrieved all the info from Yahoo OK, but at the end gave me the same message, about my username or password being incorrect.
    (I encountered a similar problem with live.com, which I was able to fix using the Manual setup.)

    Yahoo email setup has been troublesome for a while for android devices.  Try the Yahoo app from the Play Store instead.

  • Need to edit server info for my mac account

    How do we edit server details once a mail account is set up? I can't find a way. And somehow the server for my .mac account has changed from the standard smtp.mac.com.
    Thanks for your help.

    I can edit my accounts. To do that to my Yahoo smtt server I go to:
    Settings> Mail >Yahoo account>account info>SMTP Yahoo SMTP server>smtp.mail.yahoo.com>tap on the server host name and the keyboard pops up for editing.

  • Cannot find site lookup info for request Uri

    Hi Team,
    I am receiving the below error in the ULS log continously can someone help to resolve the issue.
    02/04/2015 18:40:43.11 w3wp.exe (0x4F18) 0x2D98 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.11 w3wp.exe (0x4F18) 0x2D98 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.11 w3wp.exe (0x4F18) 0x2D98 Web Content Management Publishing Cache aa6pl High PublishingHttpModule.PostAuthorizeRequestHandler(): Unexpected exception while analyzing URL: System.IO.FileNotFoundException:
    The Web application at https://10.0.0.01:443/ could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping
    to the intended application.     at Microsoft.SharePoint.SPSite.LookupSiteInfo(SPFarm farm, Boolean contextSite, Boolean swapSchemeForPathBasedSites, Uri& requestUri, Boolean& lookupRequiredContext, Guid& applicationId, Guid&
    contentDatabaseId, Guid& siteId, Guid& siteSubscriptionId, SPUrlZone& zone, String& serverRelativeUrl, Boolean& hostHeaderIsSiteName, Boolean& appWebRequest, String& appHostHeaderRedirectDomain, String& appSiteDomainPrefix,
    String& subscriptionName, String& appSiteDomainId, Uri& primaryUri)     at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, Boolean swapSchemeForPathBasedSites, SPUserToken userToken)    
    at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken)     at Microsoft.SharePoint.SPSite..ctor(String requestUrl)     at Microsoft.SharePoint.Publishing.PublishingHttpModule.PostAuthorizeRequestHandler(Object
    sender, EventArgs e) a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.11 w3wp.exe (0x4F18) 0x1E54 SharePoint Foundation General af71 Medium HTTP Request method: GET a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.11 w3wp.exe (0x4F18) 0x1E54 SharePoint Foundation General af75 Medium Overridden HTTP request method: GET a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.11 w3wp.exe (0x4F18) 0x1E54 SharePoint Foundation General af74 Medium HTTP request URL: / a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x1E54 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x1E54 SharePoint Foundation Files aise3 Medium Failure when fetching document. 0x80070005 a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation Runtime aep93 High Exception trying get context compatibility level: System.IO.FileNotFoundException: The Web application at
    https://10.0.0.01 could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.    
    at Microsoft.SharePoint.SPSite.LookupSiteInfo(SPFarm farm, Boolean contextSite, Boolean swapSchemeForPathBasedSites, Uri& requestUri, Boolean& lookupRequiredContext, Guid& applicationId, Guid& contentDatabaseId, Guid& siteId, Guid&
    siteSubscriptionId, SPUrlZone& zone, String& serverRelativeUrl, Boolean& hostHeaderIsSiteName, Boolean& appWebRequest, String& appHostHeaderRedirectDomain, String& appSiteDomainPrefix, String& subscriptionName, String& appSiteDomainId,
    Uri& primaryUri)     at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, Boolean swapSchemeForPathBasedSites, SPUserToken userToken)     at Microsoft.SharePoint.SPSite..ctor(SPFarm
    farm, Uri requestUri, Boolean contextSite)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.GetContextCompatibilityLevel(Uri requestUri) a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri
    https://10.0.0.01/. a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation Runtime aep93 High Exception trying get context compatibility level: System.IO.FileNotFoundException: The Web application at
    https://10.0.0.01 could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.    
    at Microsoft.SharePoint.SPSite.LookupSiteInfo(SPFarm farm, Boolean contextSite, Boolean swapSchemeForPathBasedSites, Uri& requestUri, Boolean& lookupRequiredContext, Guid& applicationId, Guid& contentDatabaseId, Guid& siteId, Guid&
    siteSubscriptionId, SPUrlZone& zone, String& serverRelativeUrl, Boolean& hostHeaderIsSiteName, Boolean& appWebRequest, String& appHostHeaderRedirectDomain, String& appSiteDomainPrefix, String& subscriptionName, String& appSiteDomainId,
    Uri& primaryUri)     at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, Boolean swapSchemeForPathBasedSites, SPUserToken userToken)     at Microsoft.SharePoint.SPSite..ctor(SPFarm
    farm, Uri requestUri, Boolean contextSite)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.GetContextCompatibilityLevel(Uri requestUri) a565e69c-8d86-50e0-05a3-a7ca753286a0
    02/04/2015 18:40:43.12 w3wp.exe (0x4F18) 0x0180 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PreSendRequestHeaders). Execution Time=5.16643875129381 a565e69c-8d86-50e0-05a3-a7ca753286a0

    Hi Amol,
    check AAM, check host files and remove unneeded entries
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • Unable to retrieve nametab info for logic table BSEG during Database Export

    Hi,
    Our aim is to Migrate to New hardware and do the Database Export of the existing System(Unicode) and Import the same in the new Hardware
    I am doing Database Export on SAP 4.7 SR1,HP-UX ,Oracle 9i(Unicode System) and during Database Export "Post Load Processing phase" got the error as mentioned in SAPCLUST.log
    more SAPCLUST.log
    /sapmnt/BIA/exe/R3load: START OF LOG: 20090216174944
    /sapmnt/BIA/exe/R3load: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#20
    $ SAP
    /sapmnt/BIA/exe/R3load: version R6.40/V1.4 [UNICODE]
    Compiled Aug 13 2007 16:20:31
    /sapmnt/BIA/exe/R3load -ctf E /nas/biaexp2/DATA/SAPCLUST.STR /nas/biaexp2/DB/DDLORA.T
    PL /SAPinst_DIR/SAPCLUST.TSK ORA -l /SAPinst_DIR/SAPCLUST.log
    /sapmnt/BIA/exe/R3load: job completed
    /sapmnt/BIA/exe/R3load: END OF LOG: 20090216174944
    /sapmnt/BIA/exe/R3load: START OF LOG: 20090216182102
    /sapmnt/BIA/exe/R3load: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#20
    $ SAP
    /sapmnt/BIA/exe/R3load: version R6.40/V1.4 [UNICODE]
    Compiled Aug 13 2007 16:20:31
    /sapmnt/BIA/exe/R3load -datacodepage 1100 -e /SAPinst_DIR/SAPCLUST.cmd -l /SAPinst_DI
    R/SAPCLUST.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (GSI) INFO: dbname   = "BIA20071101021156                                                                               
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "tinsp041                                                    
    (GSI) INFO: sysname  = "HP-UX"
    (GSI) INFO: nodename = "tinsp041"
    (GSI) INFO: release  = "B.11.11"
    (GSI) INFO: version  = "U"
    (GSI) INFO: machine  = "9000/800"
    (GSI) INFO: instno   = "0020293063"
    (EXP) TABLE: "AABLG"
    (EXP) TABLE: "CDCLS"
    (EXP) TABLE: "CLU4"
    (EXP) TABLE: "CLUTAB"
    (EXP) TABLE: "CVEP1"
    (EXP) TABLE: "CVEP2"
    (EXP) TABLE: "CVER1"
    (EXP) TABLE: "CVER2"
    (EXP) TABLE: "CVER3"
    (EXP) TABLE: "CVER4"
    (EXP) TABLE: "CVER5"
    (EXP) TABLE: "DOKCL"
    (EXP) TABLE: "DSYO1"
    (EXP) TABLE: "DSYO2"
    (EXP) TABLE: "DSYO3"
    (EXP) TABLE: "EDI30C"
    (EXP) TABLE: "EDI40"
    (EXP) TABLE: "EDIDOC"
    (EXP) TABLE: "EPIDXB"
    (EXP) TABLE: "EPIDXC"
    (EXP) TABLE: "GLS2CLUS"
    (EXP) TABLE: "IMPREDOC"
    (EXP) TABLE: "KOCLU"
    (EXP) TABLE: "PCDCLS"
    (EXP) TABLE: "REGUC"
    myCluster (55.16.Exp): 1557: inconsistent field count detected.
    myCluster (55.16.Exp): 1558: nametab says field count (TDESCR) is 305.
    myCluster (55.16.Exp): 1561: alternate nametab says field count (TDESCR) is 304.
    myCluster (55.16.Exp): 1250: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 8033: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 2624: failed to convert cluster data of cluster item.
    myCluster: RFBLG      *003**IN07**0001100000**2007*
    myCluster (55.16.Exp): 318: error during conversion of cluster item.
    myCluster (55.16.Exp): 319: affected physical table is RFBLG.
    (CNV) ERROR: data conversion failed.  rc = 2
    (RSCP) WARN: env I18N_NAMETAB_TIMESTAMPS = IGNORE
    (DB) INFO: disconnected from DB
    /sapmnt/BIA/exe/R3load: job finished with 1 error(s)
    /sapmnt/BIA/exe/R3load: END OF LOG: 20090216182145
    /sapmnt/BIA/exe/R3load: START OF LOG: 20090217115935
    /sapmnt/BIA/exe/R3load: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#20
    $ SAP
    /sapmnt/BIA/exe/R3load: version R6.40/V1.4 [UNICODE]
    Compiled Aug 13 2007 16:20:31
    /sapmnt/BIA/exe/R3load -datacodepage 1100 -e /SAPinst_DIR/SAPCLUST.cmd -l /SAPinst_DI
    R/SAPCLUST.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (GSI) INFO: dbname   = "BIA20071101021156                                                                               
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "tinsp041                                                    
    (GSI) INFO: sysname  = "HP-UX"
    (GSI) INFO: nodename = "tinsp041"
    (GSI) INFO: release  = "B.11.11"
    (GSI) INFO: version  = "U"
    (GSI) INFO: machine  = "9000/800"
    (GSI) INFO: instno   = "0020293063"
    myCluster (55.16.Exp): 1557: inconsistent field count detected.
    myCluster (55.16.Exp): 1558: nametab says field count (TDESCR) is 305.
    myCluster (55.16.Exp): 1561: alternate nametab says field count (TDESCR) is 304.
    myCluster (55.16.Exp): 1250: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 8033: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 2624: failed to convert cluster data of cluster item.
    myCluster: RFBLG      *003**IN07**0001100000**2007*
    myCluster (55.16.Exp): 318: error during conversion of cluster item.
    myCluster (55.16.Exp): 319: affected physical table is RFBLG.
    (CNV) ERROR: data conversion failed.  rc = 2
    (RSCP) WARN: env I18N_NAMETAB_TIMESTAMPS = IGNORE
    (DB) INFO: disconnected from DB
    SAPCLUST.l/sapmnt/BIA/exe/R3load: job finished with 1 error(s)
    /sapmnt/BIA/exe/R3load: END OF LOG: 20090217115937
    og (97%)
    The main eror is "unable to retrieve nametab info for logic table BSEG "  
    Your reply to this issue is highly appreciated
    Thanks
    Sunil

    Hello,
    acording to this output:
    /sapmnt/BIA/exe/R3load -datacodepage 1100 -e /SAPinst_DIR/SAPCLUST.cmd -l /SAPinst_DI
    R/SAPCLUST.log -stop_on_error
    you are doing the export with a non-unicode SAP codepage. The codepage has to be 4102/4103 (see note #552464 for details). There is a screen in the sapinst dialogues that allows the change of the codepage. 1100 is the default in some sapinst versions.
    Best Regards,
    Michael

  • How to use webcam for Yahoo Messenger on MacBook Pro, How to use webcam for Yahoo Messenger on MacBook Pro

    How to use webcam for Yahoo Messenger on MacBook Pro, How to use webcam for Yahoo Messenger on MacBook Pro because it's not working =(

    The cheap & easy way is to just drag the app to the Trash.
    If you want to get all of the associated files use an app deleting app like the free AppCleaner;
    http://www.freemacsoft.net/appcleaner/
    Just drag an app and drop it on the AppCleaner icon in the Dock and it will find and present to you all the files it thinks are associated with the app. You can uncheck any that you want to keep and then let AppCleaner Trash the rest.

  • I have created an extensive slideshow w/music on my MacBook Pro iPhoto. How do I export a slideshow so that I can burn a DVD from it? "Help" does not offer info for this request, only if you want to export to another Apple device.   Help!!!

    I have created a lengthy slideshow with music on my MacBook Pro under Iphoto.   What steps do I need to take in order to burn a DVD copy of this slideshow?     "Help" does not offer info for this transaction, only if you want to export to another Apple device and it shows that you must first export to Itunes.  Can anyone help me with information on just copying to a DVD?  I don't want to email it or show it on another Apple device.  I want to be able to burn multiple copies on DVDs as a gift......    Can it be done?   I'm not real computer savvy

    Connect the device to the computer.
    In iTunes, select the content desired to sync.
    Sync.
    This is all described in the User's Guide, reading it may be a good place to start.

  • How do I find the FTP info for my site?

    I created a site with Wix.com. Since then I've been exploring Dreamweaver, and the author of "Dreamweaver for Dummies" suggets that the best way to make changes to my existing site is to use Dreamweaver's FTP capabailities to download the existing pages. But Wix doesn't support FTP -- so they tell me, and simpleurl.com (where I regeistered my domain name) and which is somehow involved in the posting of my site) can't help either. Here's the Dreamweaver page that I need to fill in.
    How do I get this information?

    Yup, it's basically free, altho you can upgrade a little, as I've done. 
    And I took
    a careful look at the "source" for the pages I've created. That code will 
    show
    nothing of what I've written -- text-wise. It's all stored on the Wix 
    servers
    and accessed with various scripts. You can re-locate your Wix-created site
    after 60 days -- not before. So the suggestion I got from the "...Dummies"
    book doesn't apply here.
    Nonetheless, I'm going to continue to learn how to use Dreamweaver. Maybe
    after my 60 days are up I'll wanna move it. Don't know.
    MurraySummers http://forums.adobe.com/people/MurraySummers created the 
    discussion
    "Re: How do I find the FTP info for my site?"
    To view the discussion, visit: 
    http://forums.adobe.com/message/5993566#5993566

  • ITunes is asking for payment info for a child's AppleID

    All iPads have been updated to OS8. Desktop is waiting for Yosemite. My child (age10) has had an Apple ID for many years with a false birthday. I am trying to get Family Share to work correctly and turn on Ask to Buy.  My child is the only member of my Family Share
    After browsing support posts, I retroactively changed the date to the youngest possible (age 13) as many other parents have done.  Before the Family Share existed, I used to split the AppleID on my child's iPad so that I could share content. Many years ago, when I set up my child's personal AppleID, I set up her iPad with iCloud using her AppleID, and iTunes using mine so that purchases had to be approved and my AppleID could maintain all the kid-friendly content I'd been purchasing for years.  When I first set up family sharing, I forgot that iTunes will was using my Apple ID, so when I tried to turn on "Ask to Buy" I got a message saying 
    "Cannot Enable Ask to Buy"
    Adin is sharing purchases from an
    account also used by another family
    member. Ask to Buy can be enabled
    only on accounts that are not shared.
    So I logged out of iTunes on my child's iPad and used her AppleID instead. But then iTunes wanted credit card info for purchases, so obviously iTunes does not recognize that she is a child in my Family Share plan. I can't troubleshoot the problem on my Mac because Yosemite isn't available yet. I opted to leave my child's AppleID logged into iTunes, on her iPad, without payment info. I still get the same message when I try to turn on Ask to Buy for my child from my iPad.
    HELP!

    Run System Profiler.  Go to the Apple in the upper left corner of any window, then "About This Mac", then "More Info..."
    Check under both Applications and Frameworks for Quicktime.  Applications are the actual Player application itself.  I believe Frameworks is the underlying system software support.  If you see something different there it might be that about which iTunes is complaining.  On my computer both say the same, but I'm not having the issue.
    I'm guessing here but if you re-installed the system using Archive and Install,  your applications were left intact and that's why your Player is 7.7, but all your system software (includingQT framework) was replaced with earlier versions which may be why the you're seeing different versions.  iTunes doesn't need the Player, but it does need the underlying QT software.

  • How do I update credit card info for my iCloud Apple ID only (I have a different iTune Apple ID)?

    How do I update credit card info for my iCloud Apple ID only (I have a different iTune Apple ID)?

    I hope by now you found it already, but if not ...
    iTunes Store: Changing account information - Apple - Support
    it is the same as itunes account.

  • I need to download a version of Firefox that is optimized for Yahoo! but I cannot use Firefox 4 for Yahoo! because it doesn't support Norton 360 as of yet. Any suggestions?

    If you do have any suggestions, where can I find it? The only place I know of is the http://www.mozilla.com/en-US/firefox/all-older.html web site and you can only get version 3.6.16 there and it's NOT optimized for Yahoo!. Please help!
    Yahoo! keeps sending me the following message in a box on my screen along with the links to Firefox 4 and IE : Attention: Please upgrade to the latest Yahoo! optimized browser to ensure the best Yahoo! experience. But, as I stated in the question above, I cannot use Firefox 4 yet because it does NOT support Norton 360. Plus, I don't trust IE8 to use Facebook!
    Thanks for any help you can give me! Your very prompt attention to this question is greatly appreciated as I am sort of at a standstill before moving on with my work.
    Regards,
    Christine
    (Running Windows Vista Service Pack 2)

    Symantec have released an update for Norton 360 to make it compatible with Firefox 4, for details see http://us.norton.com/support/kb/web_view.jsp?wv_type=public_web&docurl=20100720113635EN&ln=en_US

Maybe you are looking for