OT: Question for author David powers

Hi David Powers.

I was wondering if I could order this book (as in "early" command) "PHP Solutions: Dynamic Web Design Made Easy." When this work is published in the market? I think you had mentioned this a while back in the middle of November of this year (2006), no?

Finally, I love your book, "PHP for Dreamweaver 8" and you've probably noticed that I'm recommending other participants your book several times already. Because it's a book excellent, excellent. I mean! Like no other! * hands down *.

I really recommend that you wrote this book rather eloquencely a concise, clear and precise, to discuss or present information at all on PHP working around in/with DW8. Thank you very much, David Powers!

Thank you, Brian, aka DWD

Deaf Web Designer says:
> I was wondering if I could order this book, 'PHP' (as in 'early bird' command)
> Solutions: Web design Dynamics Made Easy. "When this book is distributed in
> market? I think you had mentioned this some time ago in the middle of
> November this year (2006), no?

"PHP Solutions" are available for pre-order on Amazon (and probably
other online stores). The official publication date is November 20, and
I understand that the book is on schedule. He was sent to the last printing
Friday. You can see the details of what the book contains, together
with direct links to some stores online, by visiting my site to the
following address:

http://foundationphp.com/phpsolutions/

I would like to point out that there * not * a book of Dreamweaver. It emphasizes
entirely on PHP coded manually. Some of these techniques in the book copy
which is already automated for you by Dreamweaver. However, there is a
a lot of other material that does not support Dreamweaver. So I hope
Dreamweaver users will also find the book useful.

It will also be published as an e-book (available through the Apress
site). There is a special offer on the last page of the printed version
for all those who want the printed and electronic versions.

Online stores are displayed just in case any confusion, the
book as having a purple cover, which is very different from that
shown on my site. Purple cover was just a mockup out my
editors several months ago. I expect they will get finally round
showing actual coverage, which is a kind of matte gold - and in my opinion,
much more enjoyable.

> Finally, I love your book, "PHP for Dreamweaver 8" and you probably
> noticed I have recommend other participants your book several times already.
> Because it is an excellent book, excellent. I mean! Like no other! * hands down *.

Thank you, Brian, I'm glad you like it. I also hope that "PHP Solutions"
the height of your expectations.

--
David powers
Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
http://foundationphp.com/

Tags: Dreamweaver

Similar Questions

  • same old same old: the appeal of David Powers

    It was interesting to watch and read comments recently about the tangle of DW with database-driven sites.

    I use DW CS6 (12.03) Mac with Mountain Lion and have installed MAMP and runnning.

    I'm done religiously tute David Powers here.

    Question:

    Why am I getting her "dynamically files cannot be resolved due to an internal error" when I go to the page with the Live button?

    The page displays empty... Laughing out loud

    Can someone tell me the possible cause?

    I wonder why Adobe has left this for 3 years when (after all updates) the message is still displayed and development stops.

    Are the defective tutorial files, or am I missing soemthing?

    David: can shed you some light on this please?

    In order to track the problem, I created a new site on my MacBook Air running Mountain Lion and followed the steps in the tutorial, using a new download of the files. Everything worked exactly as planned.

    After finishing, I checked the version of Dreamweaver CS6. It turned out to be the original 12.0. I tried to apply the update 12.03, but could not. So, I uninstalled and downloaded again CS6. However, because I have a subscription to creative cloud, when I have updated the program, he maintained at 12.2.

    Also, I copied your code of the forum and who was running. It also displays correctly.

    I don't know if there is a problem with CS6 12.03, but it seems highly unlikely because the files work fine in Dreamweaver CC as well, even if I do not have the server behavior extension installed.

    The unusual thing only I see in your screenshots is the wildcard: php_test in the privileges of phpMyAdmin. However, we should not make a difference because Dreamweaver must clearly connect seamlessly to your database.

    The only other thing I see as a possible cause is the server parameter in the site configuration dialog box. Make sure that the check box is selected, not away.

  • Seek help from David powers once again, please

    David,

    I am using your drop-down list of the script files page 197 of PHP Solutions. I have adapted successfully to read a list of PDFs of my subdirectories. The list of files is not on a base of data, but read in directly from a subdirectory.

    However, for the life of me, I can't understand how actually do one load the PDF file. I tried every syntax/combination in the action property that I can think of with no luck.

    What I would do is either: 1) select the PDF in the drop down menu and then have it load in the browser or the 2) select the PDF fromt the drop down then press a button 'Download' and the file to load in the browser.

    Can you please help me understand this?

    Thanks in advance. Here is my code so far.

    Glenn

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    "< html xmlns =" http://www.w3.org/1999/xhtml "> "
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = iso-8859-1 "/ >"
    drop down Image < title > < / title >
    < / head >

    < body >
    < form id = "form1" name = "form1" method = "post" action = "PDF files / <?" PHP echo $_POST ['pix'];? "> .php" >
    < p >
    < select name = "pix" id = "pix" >
    < option value = "" > select a picture < / option >
    <? PHP
    include('Includes/buildFileList5.php');
    buildFileList5 ('PDFs');

    ? >
    < / select > < label > < / label >
    < /p >
    < p >
    < label > download
    < input type = "submit" name = 'Download' id = 'Download' value = "Submit" / >
    < / label >
    < /p >

    < / make >
    < / body >
    < / html >

    GEAtkins wrote:
    > Now, I get this error in download.php.
    >
    > Parse error: syntax error, unexpected T_STRING in
    > C:\xampp\htdocs\Garrison\download.php on line 21

    It's the kind of mistake that you should be able to diagnose quickly by
    looking at the code coloring. The error is mine, because I was
    just by typing in a News Reader, but the cause becomes immediately visible
    in Dreamweaver code view, because several lines after the leak of slash
    became red. This means that the following lines are treated as
    part of the chain. A backslash before a single quote, it turns
    in a quotation mark in a string.

    The answer is to escape the backslash:

    > $filepath = ' C:\xampp\htdocs\Garrison\PDFs\'.$getfile;

    Should be this:

    $filepath = ' C:\xampp\htdocs\Garrison\PDFs\\'.$getfile;

    You can also use forward slashes for the separator of directory like this:

    $filepath = ' C:/xampp/htdocs/Garrison/PDFs/'.$getfile;

    --
    Adobe Community Expert David Powers
    Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Is this a problem re CONCAT: David Powers, or a problem of magic quotes...

    I tried to understand this with the posts (and some info on the site of David, etc.), and I can't seem to understand the real problem.

    I'm working on a tutorial and I can't know if the error message is correct and this is an incorrect encoding inserted by DW (and if so, I can't understand what it takes to correct) or

    If there is a problem with DW8.0.2 like what will fix the fix that seems so hard to get, or

    If this goes in the direction of an example of why magic quotes must be turned off and if so, where and how can I turn off the correct code, and if not, how could it be properly corrected?

    Here is the error message:
    Parse Error: parse error, unexpected '=' expected ', 'or')' in < dittos > on line 34.

    Here's the code that reference:
    32 $Search_rsSearch = "abc";
    33 cases (isset(#txtSearch#)) {}
    34 $Search_rsSearch = (get_magic_quotes_gpc())? #txtSearch #: addslashes(#txtSearch#);
    35}
    36 @mysql_select_db ($database_dorknozzle, $dorknozzle);
    37 $query_rsSearch = sprintf ("SELECT * FROM EmployeeStore WHERE ItemName AS CONCAT('%%', %s,)")
    (') ", GetSQLValueString ($Search_rsSearch,"text"));
    38 $rsSearch = mysql_query ($query_rsSearch, $dorknozzle) or die (mysql_error ());
    39 $row_rsSearch = mysql_fetch_assoc ($rsSearch);
    40 $totalRows_rsSearch = mysql_num_rows ($rsSearch);

    I use php4.4.4, mysql5.0.24, apache2.2.3

    Thank you
    Jeff G.

    xViPERed wrote:
    > If there is a problem with DW8.0.2 like what the software fix that
    > seems to be hard to get set,.

    That will fix the part of your problem, but the error is caused by something
    Another thing:

    > Here is the error message:
    > Parse Error: parse error, unexpected '=', expected ","or")" in
    > on line 34.
    >
    > Here is the code it refers:
    > 32 $Search_rsSearch = "abc";
    > if 33 (isset(#txtSearch#)) {}
    > 34 $Search_rsSearch = (get_magic_quotes_gpc())? #txtSearch: #
    > addslashes(#txtSearch#);
    > 35}

    # is one of the characters used to comment on the part of a PHP script. I have
    think you have received it in the Dreamweaver Help files, which
    damage especially on this point. The show the runtime value
    expression as #formFieldName #, which isn't a ColdFusion, PHP model. You
    need to replace #txtSearch # with something like $_GET ['search'] or
    $_POST ['search'].

    What makes matters worse, is that the code inserted by 8.0.2 without the
    fix is also incorrect. Line 34 should be something like this:

    $Search_rsSearch = $_GET ['search'];

    Line 37 is also wrong.

    > 37 $query_rsSearch = sprintf ("SELECT * FROM EmployeeStore ItemName WHERE AS")
    > CONCAT('%%', %s,)
    (' > ' %%') ", GetSQLValueString ($Search_rsSearch,"text"));

    It should be this:

    $query_rsSearch = sprintf ("SELECT * FROM EmployeeStore WHERE ItemName")
    LIKE "%s", GetSQLValueString ('%'. $Search_rsSearch.) '%', 'text'));

    --
    David powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • Help please David powers

    David,

    I use redirection to a personal page on page 515 of The Essential Guide to DWCS3 in the following form: $_SESSION [MM_Username] .php in the field "If the connection is successful.

    This does work for me the first time, that loading of the login page. I get a 404 error. However, it I click the back button and try it again it works. I have a hypothesis that the Session variable is used before the username, it draws from the DB, but I don't know enough to be sure. I tried to move the lines of variable assignment and he screwed up royally.

    This is performed on a live server. Below is my code that works if I hit the back button. Any help would be greatly appreciated.

    Thank you.

    Glenn

    <? php require_once('.. / Connections/connatkinsdb.php');? >
    <? PHP
    If (! function_exists ("GetSQLValueString")) {}
    function GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
    {
    $theValue = get_magic_quotes_gpc()? stripslashes ($TheValue): $theValue;

    $theValue = function_exists ("mysql_real_escape_string")? mysql_real_escape_string ($TheValue): mysql_escape_string ($theValue);

    Switch ($theType) {}
    case 'text ':
    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue! = "")? intval ($TheValue): 'NULL ';
    break;
    case "double":
    $theValue = ($theValue! = "")? « " ». doubleVal ($TheValue). "" "": "NULL";
    break;
    case "date":
    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";
    break;
    case "set":
    $theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;
    break;
    }
    Return $theValue;
    }
    }
    ? >
    <? PHP
    Validate request to connect to this site.
    If (! isset {})
    session_start();
    }

    $loginFormAction = $_SERVER ['PHP_SELF'];
    If (isset($_GET['accesscheck'])) {}
    $_SESSION ['PrevUrl'] = $_GET ['accesscheck"];
    }

    If (isset($_POST['username'])) {}
    $loginUsername = $_POST ['username'];
    $password = $_POST ["pwd"];
    $MM_fldUserAuthorization = "admin_priv";
    $MM_redirectLoginSuccess = "$_SESSION [MM_Username] .php ';
    $MM_redirectLoginFailed = "... / Area/loginfail.php of the user;
    $MM_redirecttoReferrer = false;
    @mysql_select_db ($database_connatkinsdb, $connatkinsdb);

    $LoginRS__query = sprintf ("SELECT name from user, pwd, admin_priv FROM users WHERE username = %s AND pwd = %s",
    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $connatkinsdb) or die (mysql_error ());
    $loginFoundUser = mysql_num_rows ($LoginRS);
    If {($loginFoundUser)

    $loginStrGroup = mysql_result($LoginRS,0,'admin_priv');

    Declare two session variables and assign them
    $_SESSION ['MM_Username"] = $loginUsername;
    $_SESSION ["MM_UserGroup"] = $loginStrGroup;

    If (isset($_SESSION['PrevUrl']) & & false) {}
    $MM_redirectLoginSuccess = $_SESSION ["PrevUrl"];
    }
    Header ("Location:".) $MM_redirectLoginSuccess);
    }
    else {}
    Header ("Location:".) $MM_redirectLoginFailed);
    }
    }
    ? >
    ? >

    GEAtkins wrote:
    > I use redirection to a personal page on page 515 of the essential
    > Guide of DWCS3 in the following form: $_SESSION [MM_Username] .php in the "if".
    ' > connection is successful "field.

    Thank you for reminding me. There is a mistake in the book, I
    discovered during the Christmas period, if you forgot to send to friends of ED
    for the errata page.

    Do not use $_SESSION [MM_Username]. Use $loginUsername instead. He then worked.

    --
    Adobe Community Expert David Powers
    Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • The Essential Guide to Dreamweaver CS3 with CSS, Ajax, and PHP by David Powers

    The Essential Guide to Dreamweaver CS3 with CSS, Ajax, and PHP by David powers:

    This book would help me learn more about Spry and Ajax and how applications may be lodged with them, if I have my e-commerce site works on a compiled C code cart (ShopSite) but supports scripts PHP server-side or is - this only for shopping carts based on PHP itself (like X-Cart)?

    I'm not sure. Someone please let me know if I can buy this book. Thank you.

    ahsenabro wrote:
    > 1. What I need to be a developer/programmer to learn from this book or
    > can a savvy entrepreneur can also get some gems out of it and direct sound
    > programmer?

    You don't need no prior knowledge of PHP or Ajax, but you must
    know the basics of HTML and CSS. As I say in the introduction, "You."
    don't need to be an expert, but do not have a curious mind.
    It teaches the basics of web site design, or he's trying to list
    each unique feature in Dreamweaver CS3. There are many other books
    to fill this gap. However, by working through this book, you will gain a
    in-depth knowledge of the most important features of Dreamweaver.

    > 2. I am interested in buying this book especially to implement cool Ajax/Spry
    > stuff on my e-commerce site. I wonder about PHP, because the content of the book
    > mentions making a PHP site. Now I realize this book isn't on purchases
    > carts, but the Ajax/Spry stuff can be implemented on e-commerce sites, right?

    The book provides detailed coverage of the features of Spry 1.4
    Dreamweaver CS3, which can be applied to any site. With minor
    adjustment, you can also use Spry 1.6. It is important to realize,
    However, the features of Spry/Ajax in Dreamweaver CS3 * cover of no
    asynchronous requests to the server. The ability to communicate
    asynchronously with the server has been added in Spry 1.6. If it has
    the asynchronous server calls and answers you are looking for, your
    programmer will need to dig into the documentation for Spry 1.6 on the
    Adobe Labs site and manually code it.

    The Spry features covered in the book are Spry, Spry UI widgets effects
    (menu accordion, tabbed and folding panels), Spry
    Widgets of validation and Spry XML data sets.

    > I just want to know if I can learn and implement Ajax/Spry apps on my
    > HTML/CSS-based simple pages, on a server that allows PHP scripts on the server side
    > but the pages themselves are not with the .php extension. This book is still going
    > apply?

    Yes. All Spry techniques can be used on any web page. This is not
    you have to be a PHP one.

    --
    Adobe Community Expert David Powers
    Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Question for the moderators of the Forum

    Salvation and thanls for all your work on behalf of the community.

    Today I noticed that my Forum name changed from Ken Binney for many years. for Ken Binney-FD1LaW.

    Would appreciate ideas as to why.

    Thank you

    I'm not a moderator, but the same thing happened to me. I don't remember if it was a bug that hit the Board, but David Powers said by signing our and signature should heal, at least it did for me.

    Gary

  • Question for the geniuses of pictures only.

    Question for the geniuses of pictures only.

    You see, I started with iPhoto and later began to use Aperture.  With iPhoto and Aperture, you can have ALL the metadata below the thumbnails, (nice).  Well, I put all my images descriptions in the keywords section because it didn't really matter, because these programs could show them as thumbnails.

    Now, I use this wonderful program of Photos and I found out that it will ONLY show the title of"the image in the thumbnails.  I've got on 30 000 images with keywords but no title.  I want to move / copy the text in the keywords section in the section of the title. I'm not a computer scientist, I guess that my skills are in average.  But I can follow directions.

    Suggestions appreciated.

    Member of ASC compiled some useful on Photos AppleScripts. Maybe one of them will be sufficiently close to your needs.

    http://www.oldtoadstutorials.NET/no.P01.html

  • How to get assistance from mozilla to answer questions for windows when I use a macintosh computer

    How to get assistance from mozilla to answer questions for windows when I use a macintosh computer?

    Look on the right side of the knowlegde base articles, where it is said ' help to ". Here, you can change the operating system and the version of firefox. The content of the article will adjust.

    If you ask a question on the help forum, you can simply say this in your question.

  • Question for Microsoft Support; I have a huge amount of music files .m4a that I can not play on Windows Media Player?

    Question for Microsoft Support;
    I have a LARGE amount of files music .m4a in a storage drive stand alone that I downloaded from an old Apple computer have more possession of. I can't understand how to enter these data into my old Emachines computer Windows Vista run the Media Player program. I tried to copy a few files m4a manually in the file Media Player Music folder, but they do not play. I'm not really all that computer savvy and know only the basics, I need to use my computer really. Can you give me some step by step instructions how to get these converted files or whatever it is I need to do to get them to play and to integrate properly into my library if it is possible? If this isn't the case, I'll have to go out and buy a new Apple computer for my 60 GB music collection. In the past, that I've never had no real problem shooting files to leave this computer based Vista and convert these files to my old computers Apple Itunes Player. So what's the problem with your system of guys that done anyway this such a pain in the butt? I would really like to understand what exactly is happening with this issue? It's very frustrating for me. I'm a finish Carpenter not a computer programmer. Such things should not be so difficult for someone like me to understand. All I intend to buy a really nice computer, probably in the summer and was considering a Microsoft based computer. But if this kind of problem will be spread with Microsoft products, so maybe I should reconsider. help you can offer to alleviate this problem will be greatly appreciated.
    Thank you
    Signed;
    Tim M. from Detroit.

    According to research on the Internet, Windows Media Player, atleast this is version 11 (included in Windows Vista and available for Windows XP SP2 +) cannot play Apple loseless type .m4a audio files without having to install any codecs.

    If you want to use Windows Media Player, you can follow the instructions mentioned here to install the necessary codecs and plugins.

    (In the related instructions above, in the first step talks about codecs - your .m4a files are files Apple loseless then follow the party referred to in the first stage about Apple loseless .m4a)

    Personally, I prefer using alternatives to Windows Media Player rather than installing codec packs.

    If you don't want to install codecs, download no matter what media player from "programs that open. M4A files"- Windows category list on this page.

    If you use a spare player - VLC Media Player is my choice.

  • Question for all developers, who participated in the offer of Playbook 2012

    Hello

    Ive got a question for all the developers who participated in the BB PB 2012 bid. Have you received E-mail about your shipping information (giving your address for shipping) immediately with enamel, that said, that your application has been approved? or did you get it later?

    Thank you.

    A few days later.

  • Oracle cert exams are equal weight to each of the questions - for example 1z0-117?

    Oracle cert exams are equal weight to each of the questions - for example 1z0-117?

    For example, 1z0-117 Oracle 11 g r2 SQL Tuning has 75 questions.

    Some of these questions you will have to look a long explain plan

    and determine what is happening.

    Other issues could be just take 2 of the 4.

    Is equal weight each question.

    Roger

    Is equal weight each question.

    Yes.  And each issue is 100% right or 100% false.  There is no middle ground with multiple answer questions.

  • Anyone know if there is no CC or BC apps or other alternatives that allow a way to create an online survey consisting of 3 questions for the participants to a trade appear to fill out and submit for the purposes of data collection?  Offlin data collection

    Anyone know if there is no CC or BC apps or other alternatives that allow a way to create an online survey consisting of 3 questions for the participants to a trade appear to fill out and submit for the purposes of data collection?  Offline data collection is a must. Ability to export data to Excel would be an added bonus. Thanks for the tips.

    Hi Nathan,

    This link might help: Create PDF fillable, creative forms of PDF form. Adobe Acrobat DC

    Kind regards

    Sheena

  • A few question for vsphere

    Hello

    I have a few question for vSphere

    1 > what kind of network, I'll use for my win xp VM destop (flexible, E1000, V...) What is the difference between that?

    2 > I give 5 or 4 GB memory for my VM (WIN 2003) servers, but a lot of time I can see alert the CPU usage or memory usage? ... Why then, can it be optimized, which will be the way?

    3 > if in 1 ESX I have 8 core (Processor) & I create 25 VM (win XP)... which gives 1 CPU each... then how it is possible to have 8 processor & distribution processor 25, what is the funda?

    Must be waiting for your reply.

    Thank you

    Rashid

    There is a selection list of the CPU (1,2,3,4,5,6,7,8) when creating VM, now my question is this amount of processor or number of processor?

    For example if I choose 5, then it means I selected 5 Fifth number of the processor or processors?

    This selection will be the number of vCPU, you give to your guests.  My suggestion would be to start with 1 vCPU and see how is the performance.

  • Help with Adobe Dreamweaver tutorial (by David Powers)

    When you use Dreamweaver tutorial Adobe (create your first website by David Powers), I met my only problem to step 18 of the fourth part.  The insctruction is as follows:

    "Once you added properties to all the three rules, press F5 or click once in Design view to refresh the view.

    Look at what happened to the text. The h2 title has turned blue; the h3 title has been resized and now fits on a single line; and the text of the paragraph has been reduced in size (see Figure 16). »

    My problem is that changes to the text of the said does not happen.  Step 17 is a code to change the text as described above, and I entered the text, verbatum, checked several times (it was entered correctly).

    Here is a link to the fourth part tutorial): http://www.Adobe.com/devnet/Dreamweaver/articles/first_website_pt4.html

    I had no problem until then and have done everything that the tutorial has loaded.  It is extremely detailed and everything that preceded eighteen number should be correct.

    Is that what the Cill problem someone please suggest me?

    Thank you.

    hello020 wrote:

    I entered the text, verbatum, checked several times (it was entered correctly).

    If it has been entered correctly, it will work as described. So, obviously there's a mistake somewhere. But as John pointed out, we must see what you've done to identify the problem.

    It would also help if you describe what happens. Say that something is not working is only half of the story. If something unexpected happens, that often gives a clue as to where the error is located.

    Common errors in the CSS are mix upward of colons and semicolons (or them leaving aside). You should also check that your opening and closing braces match. In addition, the color used in one of the rules is #00b4e1 . The first two characters after the sign of hash are zeros, and the last character is the number one. It's small errors that can make a big difference.

Maybe you are looking for

  • Video input with Qosmio G20-108 problems

    HelloI try to connect a video recorder/player for my Qosmio G20-108 and have had no luck so far.Tried the red-yellow-white cables that came with the laptop, can get sound via the laptop, but no image. Then tried the input cable tv/satellite of the RG

  • Unable to start Vista in a dual boot with XP

    original title: a 1.5 T hard drive 3 partitions. XP to end vist Center. When it is installed vista it does not start XP. I had xp pro on the end of the disc hard and then installed vista professional.  At boot, it gives a selection vista or windows m

  • SKYPE lost.

    My computer has an adjustment irritate a few weeks ago and now I can't find my SKYPE. How can I get that back? A friend sent me just and cannot get on SkYPE. .

  • Will not do PES 11 MAC download

    I already have PES 11 on my Windows laptop, but now have a Macbook Pro, El Capitan running. I still all the original packaging for the software, but as my new Mac has no disc drive I tried to download the software from the site.  After three attempts

  • Paid for the PDF Document Cloud services, but no service

    My bank account shows payment paid Adobe $ 23.88 for annual services two weeks ago, but to connect to convert PDF to Word - applications from Adobe that I 'sign up now' for the account that has already been paid. Apparently, no one is available at th