Trouble with MySQL/PHP5... Need Help!

I uncommented the PHP line in Apache. Apache is running sites in Sites folder. PHP pages are running on Apache server.
MySQL5 will not work. The system preferences add-on is not functional. The GUI services to turn on and off MySQL causes errors, and can not properly turn on and off the database. In Dreamweaver CS3, every time I try to connect a PHP page to the local MySQL database, the program gives me either warnings that it can't find a right file in the right place, and then crashes.... or after much trying to fix it, that it can't connect through the socket '/var/mysql/mysql.sock'(2). I simply removed MySQL from the hard drive all together.
Server is running and working. PHP appears to be working.
Any help setting up a development environment with APACHE/PHP5/MySQL5 would be much appreciated... I'm at a loss at this point. I set this up so easily on Tiger, and now I can't get it to work.

Hi There,
To get MySQL working on Leopard do this, until MySQL fixes their PrefPane and a few other things.
http://discussions.apple.com/thread.jspa?messageID=5645748&#5645748
sudo /usr/local/mysql/bin/safe_mysqld
close Terminal, then open it again and put in these two...
sudo mkdir /var/mysql/
sudo ln -s /tmp/mysql.sock /var/mysql/mysql.sock
Restart Apache
To get PHP working (Apple's Version) un-comment the line the PHP line in your conf file.
private/etc/apache2/httpd.conf
If your using Marc Liyanage package, you and rest of us will have to wait until he updates it. If you don't need all the extensions (GD, MCrypt, Etc..) then use Apple's version, its latest release of PHP. Otherwise, we all have to wait until Marc updates PHP installer. Hope this helps.

Similar Messages

  • Trouble with itunes six need help

    I am having i use Norton internet security, and I can't pull up Itunes 6 it pulls up the hourglass for a second then the hourglass disapears but no itunes what do I need to do my Quick time player works fine. And Can I back up my Itunes music by saving it under another file and moving it back should I erase and then reinstall Itunes 6?

    hi jimmy!
    I am having i use Norton internet security, and I can't pull up Itunes 6 it pulls up the hourglass for a second then the hourglass disapears but no itunes what do I need to do my Quick time player works fine.
    is that NIS 2005? if so, try the "Lorraine" technique:
    Lorraine M, "NIS/i-tunes problem rectified" #2, 12:51am Oct 17, 2005 CDT
    keep us posted.
    love, b

  • Trouble with installation.  Need help

    I have uninstalled and reinstalled 10 express on a Redhat Fedora Core 8 linux box. I cannot get it to connect to the get started page. Additionally, when I try to connect with SQLPLUS I get error message that Shared Memory Realm does not exist and Oracle is unavailable. TIA DG

    Hi,
    I think it is Ok for the installation, this problem you mentioned happened a lot in this forum,
    you can fix it by start it up manually:
    sql> connect sys as sysdba
    startup;If not, you can try to restart the services at the sevices of linux OS page.
    Peter
    Maybe you cofigured it during installation not startup automatically when you start Fedora.

  • SQL executing error differences with different tools, need help!!

    Hi everyone,
    I'm getting trouble with executing SQL query using SQLdevelopper.
    but it returns the error about bind value parameter in & out doesn't set.
    I also try to same SQL with other tools but only one tool could succeed
    executing which is Osqledit.
    SQL*Developper--------No
    Object Browser--------No
    Sql*Plus-------No
    Osqledit-----Yes
    does anybody know why some sql tools couldn't succeed executing
    same sql such as Osqledit?
    and also in this case often to cause or not?
    thank you for reading and helping me.

    thanks SHUBH I think so too.
    To Colin and others,
    here is my SQL query which wasn't written in English so
    it took me for a while to translate.
    and it very long SQL which my co-worker made it.
    sorry for it unable to read easily tho I need your help.
    in additon, we use bind-values on this SQL.
    select
         shopcode,
         JAN,
         h.lowestestprice,
         h.highestprice,
         h.amount,
         h.totalsales,
         h.retailprice,
         h.aprice,
         h.normalamount,
         h.normaltotalsales,
         h.normalretailprice,
         h.normalaprice,
         h.discountamount,
         h.discounttotalsales,
         h.discountretailprice,
         h.discountaprice,
         h.memberamount,
         h.memberretailprice,
         h.memberretailprice,
         h.memberaprice,
         h.normalreserveamount,
         h.discountreserveamount
    from
              select
              shopcode,
                   JANcode JAN,
                   min(lowestestprice) lowestestprice,
                   max(highestprice) highestprice,
                   sum(amount) amount,
                   sum(totalsales) totalsales,
                   sum(retailprice) retailprice,
                   sum(aprice) aprice,
                   sum(normalamount) normalamount,
                   sum(normaltotalsales) normaltotalsales,
                   sum(normalretailprice) normalretailprice,
                   sum(normalaprice) normalaprice,
                   sum(discountamount) discountamount,
                   sum(discounttotalsales) discounttotalsales,
                   sum(discountretailprice) discountretailprice,
                   sum(discountaprice) discountaprice,
                   sum(memberamount) memberamount,
                   sum(membertotalsales) membertotalsales,
                   sum(memberretailprice) memberretailprice,
                   sum(memberaprice) memberaprice,
                   sum(normalreserveamount)
    normalreserveamount,
                   sum(discountreserveamount)
    discountreserveamount
              from
                   testsalesfact
              where
                   salesdate between :begindate and :enddate
              group by
                   shopcode,
                   JANcode
         ) h
         full outer join
              select
                   shopcode,
                   JANcode,
    min(lowestestprice) lowestestprice,
                   max(highestprice) highestprice,
                   sum(amount) amount,
                   sum(totalsales) totalsales,
                   sum(retailprice) retailprice,
                   sum(aprice) aprice,
                   sum(normalamount) normalamount,
                   sum(normaltotalsales) normaltotalsales,
                   sum(normalretailprice) normalretailprice,
                   sum(normalaprice) normalaprice,
                   sum(discountamount) discountamount,
                   sum(discounttotalsales) discounttotalsales,
                   sum(discountretailprice) discountretailprice,
                   sum(discountaprice) discountaprice,
                   sum(memberamount) memberamount,
                   sum(membertotalsales) membertotalsales,
                   sum(memberretailprice) memberretailprice,
                   sum(memberaprice) memberaprice,
                   sum(normalreserveamount)
    normalreserveamount,
                   sum(discountreserveamount)
    discountreserveamount
              from
                   shopweeksaleswk
              where
                   salesdate between :begindate and :enddate
              group by shopcode, JAN
              union all
              select
                   a.shopcode,
                   a.JAN,
                   min(a.pricewiotax) lowestestprice,
              -     max(a.pricewiotax) highestprice,
                   sum(a.amount) amount,
                   sum(a.totalsales) totalsales,
                   sum(a.retailprice) retailprice,
                   sum(a.aprice) aprice,
                   sum(a.normalamount) normalamount,
                   sum(a.normaltotalsales) normaltotalsales,
                   sum(a.normalretailprice) normalretailprice,
                   sum(a.normalaprice) normalaprice,
                   sum(a.discountamount) discountamount,
                   sum(a.discounttotalsales) discounttotalsales,
                   sum(a.discountretailprice) discountretailprice,
                   sum(a.discountaprice) discountaprice,
                   sum(a.memberamount) memberamount,
                   sum(a.membertotalsales) membertotalsales,
                   sum(a.memberretailprice) memberretailprice,
                   sum(a.memberaprice) memberaprice,
                   sum(a.normalreserveamount)
    normalreserveamount,
                   sum(a.discountreserveamount)
    discountreserveamount
              from (
                   select
                        p.shopcode,
                        substr(p.makedate, 1, 8) salesdate,
                        p.JAN,
                        p.pricewiotax,
                        p.amount amount,
                        trunc(p.amount * p.pricewiotax)
    totalsales,
                        trunc(p.amount * decode
    (p.discountcode, '000000',
                        p.retailprice, p.discountretailprice))
    retailprice,
                        decode(decode
    (p.discountcode, '000000',
    p.retailprice,
                        p.discountretailprice), 0, 0,
                        trunc(p.amount * p.pricewiotax) -
                        trunc(p.amount * decode
    (p.discountcode, '000000',
                        p.retailprice, p.discountretailprice)))
    aprice,               
                        decode(p.discountcode, '000000',
    p.amount, 0) normalamount,
                        decode(p.discountcode, '000000',
                        trunc(p.amount * p.pricewiotax), 0)
    normaltotalsales,
                        decode(p.discountcode, '000000',
                        trunc(p.amount * p.totalsales), 0)
    normalretailprice,
                        decode(p.totalsales, 0, 0, decode
    (p.discountcode, '000000',
                        trunc(p.amount * p.pricewiotax) -
                        trunc(p.amount * p.retailprice), 0))
    normalaprice,
                        decode(p.discountcode, '000000', 0,
    p.amount) discountamount,
                        decode(p.discountcode, '000000', 0,
                        trunc(p.amount * p.pricewiotax))
    discounttotalsales,
                        decode(p.discountcode, '000000', 0,
                        trunc(p.amount *
    p.discountretailprice))
    discountretailprice,
                        decode(p.discountretailprice, 0, 0,
                   decode(p.discountcode, '000000', 0,
                   trunc(p.amount * p.pricewiotax)
                        trunc(p.amount *
    p.discountretailprice))) discountaprice,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554')
                        then p.amount else 0 end
    memberamount,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554')
                        then trunc(p.amount * p.pricewiotax)
    else 0 end membertotalsales,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554') then
                        trunc(p.amount * decode
    (p.discountcode, '000000',
    p.retailprice,
                        p.discountretailprice)) else 0 end
    memberretailprice,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554') then
                        decode(decode
    (p.discountcode, '000000',
    p.retailprice, p.discountretailprice),
    0, 0,
                        trunc(p.amount * p.pricewiotax) -
                        trunc(p.amount * decode
    (p.discountcode,'000000',
                        p.retailprice, p.discountretailprice)))
    else 0 end memberaprice,
                        decode(p.discountcode, '000000',
                   decode(p.discountsec, '07',
    p.amount, 0), 0)
    normalreserveamount,
                        decode(p.discountcode, '000000', 0,
                        decode(p.discountsec, '07',
    p.amount, 0)) discountreserveamount
                   from shopweeksaleswk p
                   where p.salesdate between :begindate
    and :enddate
                   and p.makedate not between
                   :begindate|| '000000 '
    and :enddate|| '000000 '
                   ) a
              group by a.shopcode, a.JAN
              union all     
              select
                   a.shopcode,
                   a.JAN,
                   min(a.pricewiotax) lowestestprice,
                   max(a.pricewiotax) highestprice,
                   sum(a.amount) amount,
                   sum(a.totalsales) totalsales,
                   sum(a.retailprice) retailprice,
                   sum(a.aprice) aprice,
                   sum(a.normalamount) normalamount,
                   sum(a.normaltotalsales) normaltotalsales,
                   sum(a.normalretailprice) normalretailprice,
                   sum(a.normalaprice) normalaprice,
                   sum(a.discountamount) discountamount,
                   sum(a.discounttotalsales) discounttotalsales,
                   sum(a.discountretailprice) discountretailprice,
                   sum(a.discountaprice) discountaprice,
                   sum(a.memberamount) memberamount,
                   sum(a.membertotalsales) membertotalsales,
                   sum(a.memberretailprice) memberretailprice,
                   sum(a.memberaprice) memberaprice,
                   sum(a.normalreserveamount)
    normalreserveamount,
                   sum(a.discountreserveamount)
    discountreserveamount
              from (
                   select
                        p.shopcode,
                        substr(p.makedate, 1, 8) salesdate,
                        p.JAN,
                        p.pricewiotax,
                        p.amount *- 1 amount,
                        trunc(p.amount * p.pricewiotax) *- 1
    totalsales,
                        trunc(p.amount * decode
    (p.discountcode, '000000',
                        p.retailprice, p.discountretailprice)) *-
    1 retailprice,
                        decode(decode
    (p.discountcode, '000000',
                        p.retailprice, p.discountretailprice),
    0, 0,
                        trunc(p.amount * p.pricewiotax) -
                        trunc(p.amount * decode
    (p.discountcode, '000000',
                        p.retailprice, p.discountretailprice))) *-
    1 aprice,
                        decode(p.discountcode, '000000',
    p.amount, 0) *- 1 normalamount,
                        decode(p.discountcode, '000000',
    trunc(p.amount * p.pricewiotax), 0) *
                        - 1 normaltotalsales,
                        decode(p.discountcode, '000000',
    trunc(p.amount * p.retailprice), 0) *
                        - 1 normalretailprice,
                        decode(p.retailprice, 0, 0, decode
    (p.discountcode, '000000',
                        trunc(p.amount * p.pricewiotax) -
                        trunc(p.amount * p.retailprice), 0)) *- 1
    normalaprice,
                        decode(p.discountcode, '000000', 0,
    p.amount) *- 1 discountamount,
                        decode(p.discountcode, '000000', 0,
    trunc(p.amount * p.pricewiotax)) *
                        - 1 discounttotalsales,
                        decode(p.discountcode, '000000', 0,
                        trunc(p.amount *
    p.discountretailprice)) *- 1
    discountretailprice,
                        decode(p.discountretailprice, 0, 0,
    decode(p.discountcode, '000000', 0,
                        trunc(p.amount * p.pricewiotax) -
                        trunc(p.amount *
    p.discountretailprice))) *- 1
    discountaprice,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554')
                        then p.amount *- 1 else 0 end
    memberamount,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554')
                        then trunc(p.amount * p.pricewiotax) *-                                                                1 else 0 end membertotalsales,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554')
                        then trunc(p.amount * decode
    (p.discountcode, '000000',
                        p.retailprice, p.discountretailprice)) *-
    1 else 0 end memberretailprice,
                        case when substr(p.cardnumber,
    1, 7) in
    ('4986428', '4986429', '4986554')
                        then decode(decode
    (p.discountcode, '000000',
    p.retailprice,
    p.discountretailprice), 0, 0,
                        trunc(p.amount * p.pricewiotax) -
    trunc(p.amount *
                        decode(p.discountcode,'000000',
    p.retailprice, p.discountretailprice))) *
                        - 1 else 0 end memberamount,
                        decode(p.discountcode, '000000',
    decode(p.discountsec, '07',
    p.amount, 0), 0)*
                        -1 normalreserveamount,
                        decode(p.discountcode, '000000', 0,
    decode(p.discountsec, '07',
    p.amount, 0))*
                        -1 discountreserveamount
                   from shopweeksaleswk p
                   where p.salesdate not between :begindate
    and :enddate
                   and p.makedate
    between :begindate|| '000000 '
    and :enddate|| '000000 '
                   ) a
              group by a.shopcode, a.JAN
         ) m
         using (shopcode,JAN)
    where
         and h.lowestestprice != m.lowestestprice
         or h.highestprice != m.highestprice
         (h.amount != m.amount
         or h.totalsales != m.totalsales
         or h.aprice != m.aprice
         or h.normalamount != m.normalamount
         or h.normaltotalsales != m.normaltotalsales
         or h.normalretailprice != m.normalretailprice
         or h.normalaprice != m.normalaprice
         or h.discountamount != m.discountamount
         or h.discounttotalsales != m.discounttotalsales
         or h.discountretailprice != m.discountretailprice
         or h.discountaprice != m.discountaprice
         or h.memberamount != m.memberamount
         or h.membertotalsales != m.membertotalsales
         or h.memberretailprice != m.memberretailprice
         or h.memberaprice != m.memberaprice
         or h.normalreserveamount != m.normalreserveamount
         or h.discountreserveamount != m.discountreserveamount)
    order by shopcode, JAN ;

  • BB Desktop Manager no longer works with Mac Maverick - Need Help Urgently

    I have been a loyal Blackberry user since the Government of Canada officially began using these cell phones. I feel, however, abandoned by Blackberry (they obviously don't believe that it is easier to retain an existing customer than acquire a new one). I'm using a Blackberry Bold (9900) with a Macbook Pro. Everything was fine until I upgraded my Mac operating system to Maverick; my Blackberry Desktop Manager no longer works, so I cannot sync the content (contacts, calendar) of my phone with my Mac, but that's not the worst of it.
    I recently had a momentary lapse and exceeded the 10 password attempts to access my phone... this accidentally wiped my phone clean... and because Desktop Manager does not work with Mac, I do not have a way to recover my data. Rogers was of no help and had Blackberry updated its desktop software months ago, as it should have, this issue would have been moot. I do not know how or why, but I was able to recover most of my data, but I'm not sure just how up-to-date tha data is and am still going through it, but I'm having issues with some functionality.
    I'm in the US for several months and have suspended my Canadian services. Prior to the wipe, I was able to use wifi on my phone to send and receive emails with no problem.  After the wipe, I can't send emails or bbms.  I checked my blackberry internet service and all email accounts are good to go. BBMs are another issue.  I need help.  Suggestions please. 

    Apple has ceased synchronization with Mavericks. The issue lies with Apple, not with the desktop software. To mitigate the lack of sync capabilities in Mavericks you can sync your contacts and calender on your Mac with the usual suspects (Yahoo, Google). Create a backup (archive) for Contacts and Calender on your Mac first, then create one of those email accouonts that allow syncing. On your 9900 and with BlackBerry provisioning enabled create the new or existing email account. See which email accounts can sync with BB, I know Yahoo is working fine. For Yahoo, get the Yahoo Calender sync (a few bucks one-off payment required), Contacts sync works off the shelf within BB. If you reset the 9900 you should be able to restore all data with BB DTM. Please note that emails you received during the 9900 reset and the date of restore will not be available on the device. You will still not be able to sync contacts/calender over BB DTM. I hope that helps.
    BlackBerry Bold 9900, Blackberry Z10 and BlackBerry PlayBook.

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • Blue boxes with question marks, Need help

    In safari i am constantly getting blue boxes with question marks in them, replacing images.
    These boxes are showing up on tumblr, forums, facebook and other places.
    I need help fixing it please.

    Thoseboxes mens it can't decipher the format, might try
    Perian...
    http://perian.org/
    Perian enables QuickTime application support for additional media:
              •          File formats: AVI, DIVX, FLV, MKV, GVI, VP6, and VFW
              •          Video types: MS-MPEG4 v1 & v2, DivX, 3ivx, H.264, Sorenson H.263, FLV/Sorenson Spark, FSV1, VP6, H263i, VP3, HuffYUV, FFVHuff, MPEG1 & MPEG2 Video, Fraps, Snow, NuppelVideo, Techsmith Screen Capture, DosBox Capture
              •          Audio types: Windows Media Audio v1 & v2, Flash ADPCM, Xiph Vorbis (in Matroska), and MPEG Layer I & II Audio, True Audio, DTS Coherent Acoustics, Nellymoser ASAO
              •          AVI support for AAC, AC3 Audio, H.264, MPEG4, VBR MP3 and more
              •          Subtitle support for SSA/***, SRT, SAMI
    Never heard of those sites though, so no idea what they use.

  • Serious Issue with Linkage..Need help ASAP!

    OK, I have big deadline for Monday and I can't figure this
    out. I have a bunch of movieclips that are set up with linkage for
    actionscript and set to export in first frame. Everything was fine
    and dandy for a week. Now all of a sudden Flash hangs when I try to
    export the swf. If I turn off the export in first frame everything
    is fine. The problem then is that my move clips aren't available
    for the attachmovie call. What I don't understand is why it was
    fine, then all of a sudden this happened for no apparent reason.
    Has anyone got a workaround or solution for this? I need help with
    this ASAP. Thanks.
    --Paul

    Sadly nothing you can do. The file must be corrupted.
    sometimes files that need saving corrupt themselves (product of
    voltage variations or some other physical things) making some
    objects "BAD", maybe you can save your work if you determine what
    is the only object that is corrupting all the file and delete and
    and redraw it.

  • Trouble with CS5 off-line help install

    Hello,
    I can't access help files after having recently purchased and installed several copies of CS5 Web Premium.
    Here's the situation: military site with closed (non-internet) network needs CS5 to replace existing CS3 installation. Windows 32-bit. A stand-alone internet computer with cd-r drive is available, but I can't install anything on it. See the problem?
    I've already read a number of threads on this subject and all the relevant KB articles that I could find (including 84215 and 83703). I downloaded the PDF manuals individually (much later I found http://blogs.adobe.com/premiereprotraining/2010/08/help-documents-for- creative-suite-5-pdf-and-html.html, which points to all of them in one place - that should be linked from the support site). Adobe phone support could not help beyond suggesting download of the PDFs.
    My developers are used to being able to hit F1 and search help, specifically in Flash for ActionScript language reference. The external PDF manuals, while useful, are not an option for this purpose - just too clumsy.
    As I understand it, the first time Adobe Community Help is run, it can optionally download all html help files for offline use. Since I can't connect the development computers to the internet, I need to download an archive of those files from elsewhere.
    It seems like I need to either:
    a) Find a magical adobe.com page with an archive of the html help files that I can download
    -or-
    b) Go home and download (on my mac) the applicable portions of adobe.com and burn to CD
         (e.g. http://help.adobe.com/en_US/flash/cs/using/index.html)
    -then-
    c) Find the appropriate file location to install these files on my development computers
    d) Update any TOC or preference files so that the CS5 apps will know that the files are installed locally.
    I could also just download the html files and put them on an internal web server, but this isn't preferred since then it wouldn't be connected to the CS5 apps, unless I can point them to an arbitrary web address for when my users hit F1 for help.
    It seems like this would be a problem not just for military users but for any company that uses development computers not connected to the internet.
    Any ideas would be greatly appreciated!
    - Jim Grisham, United States Navy
    P.S.
    Not sure if it's related, but in Flash Professional CS5 when attempting to request help from the menu I receive the following error:
    <Windows Internet Explorer>
    Cannot find 'file:///C:/Program%20Files/Common%20Files/Adobe/Help/en_US/Flash/CS5 /AS3LR/index.html
    I think that's after telling Community Help to work offline. In Photoshop, I get no such error, just a message that I need to access the internet to download help.

    Hi Jim:  you could try either approach (either hosting on your own intranet or copy the local help files to each machine). Here's some info that may help:
    1. the Help application relies on a small XML file called the Help Configuration file (.helpcfg). There is one for each product located in the user's Local Store.
    On Windows, look in C:\Documents and Settings\ * USER NAME* \ApplicationData\ chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1\Local Store\HelpCfg\en_US
    On Mac, look in USER NAME (Home) > Library > Preferences > chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 > Local Store > HelpCfg> en_US
    2. The Help Config file tells the app two very important things:
    Where to look for online content
    Where to look for download content
    There are a few other variables managed by the file but those two are the most important.
    3. Open the Help Config with a text editor and look for the following property: baseUrl="http://help.adobe.com/"
    4. Now look a little further down in the file and you should see a number of "package" elements.  Each package represents a distinct help book (i.e. "Using Flash CS 5"). The path variable is where the online HTML is located. For example, path="en_US/Flash/CS5/Using"  
    5. Look further below and you will see a variable called, downloadContent. For example, downloadContent="client.Flash_CS5_Using_en-us.zip"
    6. If you put these three elements together (baseURL + path + downloadContent), you can parse the location for each downloadable help archive like so: http://help.adobe.com/en_US/Flash/CS5/Using/client.Flash_CS5_Using_en-us.zip
    So what does this mean for you? What you could do is manually download the help files and host them on your own intranet -- you can then alter the baseURLs in the Help Configs to point to your own server. This would require editing each and every HelpConfig file so this may not be scalable for a very large team. 
    Or, you could go home, fire up the Help app, download the Help content outside of your network and then copy the entire Help folder back into the Local Store for each user. The app will automatically default to local Help if it cannot detect an internet connection so your team should be able to access just fine as long as the files are in the Help folder of your Local Store. No additional edits to the config file required. 
    For your convenience, here are a few additional package URLs relevant for the Web Suite - these are the default packages that a user is prompted to download on first launch. There are many other packages defined in the help configs so there may be additional books relevant to your team.
    Photoshop:  http://help.adobe.com/en_US/Photoshop/CS5/Using/client.Photoshop_CS5_Using_en-us.zip
    Illustrator: http://help.adobe.com/en_US/Illustrator/CS5/Using/client.Illustrator_CS5_Using_en-us.zip
    Dreamweaver: http://help.adobe.com/en_US/Dreamweaver/CS5/Using/client.Dreamweaver_CS5_Using_en-us.zip
    Fireworks: http://help.adobe.com/en_US_Fireworks_11.0_Using/client.Fireworks_CS5_Using_en-us.zip
    Flash Builder (aka Flex):
    Using Flash Builder: http://help.adobe.com/en_US_Flex_4.0_UsingFlashBuilder/client.Flex_4.0_UsingFlashBuilder_e n-us.zip
    ActionScript 3.0 Language and Component Reference:      http://help.adobe.com/en_US/AS3LCR/Flex_4.0/Flex_4.0_en-us.zip
    Using Adobe Flex 4:   http://help.adobe.com/en_US/Flex/4.0/UsingSDK/client.Flex_4.0_UsingSDK_en-us.zip
    Accessing data with Flex 4:    http://help.adobe.com/en_US/Flex/4.0/AccessingData/client.Flex_4.0_AccessingData_en-us.zip     
    LiveCycle Service Discovery: http://help.adobe.com/en_US/Flex/4.0/LCServiceDiscovery/client.Flex_4.0_LCServiceDiscovery _en-us.zip
    Flash
    Using Flash CS5:   http://help.adobe.com/en_US/Flash/CS5/Using/client.Flash_CS5_Using_en-us.zip     
    ActionScript 3.0 Reference for the Flash Platform: http://help.adobe.com/en_US/Flash/CS5/AS3LR/Flash_CS5_en-us.zip

  • My first Mac and first experience with iPhoto.  Need help

    Hello everyone. I just purchased my first Mac, a Mini, last week and I'm trying to learn how iPhoto works. I've been able to import picturs from my NAS (network attached storage) drive which holds all our photos, music and videos.
    However, when I took pictures over the weekend, I wanted to put them on the NAS as well and have them automatically import into iPhoto. I like that iPhoto lets you put a description about the pictures, but I can't find a way to type a description and then set iPhoto to save the pictures to my NAS drive.
    I ended up just saving them to the NAS drive and then importing again and telling iPhoto to not import duplicates. The problem with that is I get folders called thumbnails and then I get messages telling me the Thumbs.db files are not readable and those are coming from my camera card or the NAS drive, maybe because it was formatted on a PC. I know Thumbs is a PC item.
    With my old PC, it allowed me to pick where I wanted my photos stored and what name I would like to call the pictures and then it named them all in succession automatically. Will iPhoto do this and if so, how do I do that? And how do I enter descriptions about my old photos to make them easier to find during a search?
    Thanks for the help. While the Mac is very similar to my old PC, there sure are a lot of things I'm unfamiliar with. But with time and some help from experts like you, I'm sure I'll get comfortable with it.
    John

    John
    iPhoto is a photo organiser - that is a database. Like any database the data has to be imported into the application.
    What format is that NAS? iPhoto does not sit happily on disks that are not formatted for Mac OS X (journalled). You will find issues with saving changes to the db and with sharing pics among other apps.
    You can put a library on an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library Folder as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    With my old PC, it allowed me to pick where I wanted my photos stored and what name I would like to call the pictures and then it named them all in succession automatically. Will iPhoto do t
    No. For a start, filenames have no relevance in iPhoto - it's all about visual organisation. You can attach titles, keywords and comments to pics, of course, and can add them to the File on export.
    If you want to set the pics in a spot, then do that with the Finder and thereafter import them. You can use a batch file renamer such as FileList to rename the files prior to import.
    and telling iPhoto to not import duplicates.
    Using a Referenced rather than a Managed library means that iPhoto will not copy the files, but rather simply reference them on your HD. It will create an alias to the Original file, a thumbnail and, if you modify the pics, a Modified version.
    However, you need to be aware of a number of potential pitfalls using this system.
    1. Import and deleting pics are more complex procedures
    2. You cannot move or rename the files on your system or iPhoto will lose track of them
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    Always allowing for personal preference, I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers.
    As a general comment: iPhoto is a bit different from most photo apps. It's happiest when it manages the files and lets you go on to manage your Photos. That's a key distinction though, between Files and Pictures. iPhoto is about Pictures, not Files.
    You do all your work in the iPhoto Window - there is never a need to go into the Photo Library on the Hard Disk. To find and access photos:
    There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To use an external editor
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    By all means post again if you need more info.
    Regards
    TD

  • Problems with exporting. Need help fast

    So I recorded some video game footage (Battlefield 4) and when I look at the raw file, it says it's 1920x1080. I edited it and finished it and even if I look in info it says that it's 1920x1080.
    But when I try to export the video it says that the source file is 1280x1080
    So when I export it, it is in REALLY bad quality and I usually upload high quality videos! What do I do? I need help, fast! I have Adobe Premiere Pro CS6.
    I have a i7 3770k CPU so I don't think that is an issue. 8GB of ram aswell.

    Quickest way:
    Get Started with Premiere Pro
    New to Premiere Pro? Get started with your first project — editing a video. In less than an hour, you'll learn to edit together different types of media to tell a video story.  

  • I just got a iPhone 5S and I forgot my passcode. I don't have Find my Iphone or icloud and my phone isnt synced with itunes, i need help.

    I just got a IPhone 5S and I forgot my passcode. I'm stuck on the disabled part. I don't have Find My IPhone or iCloud and my phone isn't synced with iTunes, I really need help.

    Hi Numento,
    Follow the instructions in this support article for "If you have never synced your device with iTunes....":
    http://support.apple.com/kb/HT1212
    Cheers and good luck!
    GB

  • 2 issues with my phone need help !!

    I am having problems with my app store, when I am downloading an app it is always stuck on 92% that's 1 issue,  my second issue is my messages when I send a message it keeps saying sending I don't know why. I need help with these 2 issues Please & Thank You

    What phone?

  • Guys i just deleted a very important back up of my iphone 5 on itunes on a mac book pro and it wasnt backed up with i tunes need help to get it back 911

    guys i need help please

    How do u get points
    You can get points when you answer peoples questions.  The person asking the question awards the points as they deem appropriate.  You can't awared points to yourself.  Points aren't worth anything.

  • Multiple ethernet network adaptors + MySQL/php5: configuration help needed

    I would be grateful if someone could give me some advice on how to configure multiple ethernet adapters under OS X 10.5.6
    I have set up my system to work nicely with two ethernet network adapters, each with its own fixed IP. This bit works just fine. The machine supports two separate servers - a mail server and the OS X Apache2 server. I have configured the mail server to only listen to one of the IPs, and the Apache2 server to listen to the other (via httpd.conf). The system also has MySQL and php5 installed / enabled, and these services are only used by the Apache2 server.
    The problem I have is that when I start the machine, initially the php5 system cannot connect reliably to the MySQL database system. The fix I have found is to temporarily make the ethernet adapter connected to the mail server 'inactive'. While this is so, the php5/MySQL connection to Apache2 works. Curiously, once an initial connection between php5 and MySQL has been made, subsequently I can make the mail server's ethernet adapter active again without further problems.
    I initially thought this might be due to 'service order' issues - but changing the service order (e.g. putting the Apache adapter 'above' the mail adapter in the service order does not help. The fix only works by making the mail adapter inactive temporarily.
    I suspect that there is some configuration change I can make to clarify the setup I have. The MySQL and Apache installations only need to talk to the Apache server - but I am not sure how to record this configuration in the OS X system.
    Thanks in advance for any assistance that you can provide.
    Message was edited by: Gavin Lawrie

    Hi Stepehen,
    Did the configuration as per your advice  but i am getting the below mentioned error which i have highlighted it in red. Please advice what needs to be done.
    Home
    Re: 1941W configuration help needed
    created by Stephen Rodriguez in Getting     Started with Wireless - View the full discussion
    conf t
    interface     Dot11Radio0
    no ssid     Cisco_Kamran_BGN
    no encryption mode     ciphers aes-ccm
    exit
    interface     Dot11Radio1
    no encryption mode     ciphers aes-ccm
    no ssid     Cisco_Kamran_A
    exit
    dot11 ssid     Cisco_Kamran_A
    vlan 10
    dot11 ssid     Cisco_Kamran_BGN
    vlan 11
    exit
    interface     Dot11Radio0
    encryption vlan 11     mode ciphers aes
    ssid     Cisco_Kamran_BGN
    exit
    interface     dot11radio0.1
    encapsulation     dot1q 1 native
    bridge-group 1
    interface     dot11radio 0.11
    encapsulation     dot1q 11
    bridge-group 11
    Configuration of     subinterfaces and main interface
    within the same bridge     group is not permitted
    exit
    interface     Dot11Radio1
    encryption vlan 10     mode ciphers aes-ccm
    ssid     Cisco_Kamran_A
    interface     dot11radio1.1
    encapsulation     dot1q 1 native
    bridge-group 1
    interface     dot11radio1.10
    encapuslation     dot1q 10
    bridge-group 10
    Configuration of subinterfaces and main     interface
    within the same bridge     group is not permitted
    end
    wr
    Reply to this message by going to Home
    Start a new discussion in Getting Started with Wireless at Home

Maybe you are looking for

  • Error message when trying to use recovery disks

    Hello, My hard drive failed, and I had remembered to create a Recovery Disk (2 DVD) in case this happened.  I wanted to use the same hard drive, to see if I could get it back and running, but I get a message, which is in Norwegian since I am living i

  • Configuration scenario currently being edited by user" & locked

    HI all, Appreciate your help on this object locks; I was changing some configuration scenarios in integration Directory - suddanly lost the internet connection; Now when i try to change it says "configuration scenario currently being edited by user"

  • Error -2041: an invalid sample description was found in the movie

    I just tried to use quick time to open mp4 on my PC (taken from my dopod/HTC pda phone), but NOW get "error -2041: an invalid sample description was found in the movie". I used to be able to watch the vids, but no longer......

  • Connecting 2 3750 Switches in Stack with 2 2960 switches in full Mesh

    Hi Friends,            I have attached a pics  which DC design of one of our customer , as network engineer i have design this , so i am responsible for implementing it, now request you all to kindly guide me what would be technical problem i have to

  • French translation program with grammar and spell check?

    Does anyone know of any really good translation programs where you can write a document in english and the program will translate it to french? The program would also need to have spell and grammar checks.  Thanks