Debugging in Dreamwever CS4

Hi Guys,
I am using Dreamweaver CS4,PHP and Mysql for my website.
Are there any extensions for debugging the php code in dreamweaver..Which is very very neccessary for me
plz help me
Thanks in Advance
RafelNash

I'm not aware of any PHP debugging extensions for Dreamweaver.

Similar Messages

  • Debug Frameserver in CS4

    Hello,
    I have tried to export an HD timeline in Premiere Pro CS4 in Media  Encoder CS4 to an MPEG2 HDTV 1080p 24.  When I tried to do this, I got  about 15 minutes in and the blue screen of death appeared.  I have read  this is a common occurrence.
    So I am using Debug Frameserver to export to an AVI in Virtuldub and  then try media encoder again with the single file.  
    My question, other than what other alternatives I could do to get my  Mpeg2 without a program crashing, is...why is it when I select Debug  Frameserver in Premiere CS4, it doesn't have any presets or custom  settings available?  When I used it in Premiere Pro CS3, I was able to  select from A LOT of options, including aspect ratio and quality,  etc...why are they absent in CS4?  Am I missing something? Should I be  using version 2.6 instead of 2.7?
    Any help on this matter would be greatly appreciated, please!
    Thanks.

    2.7 works in it, but the features are just missing, which makes no sense at all, when they were all there on CS3.  I beleive I installed DFS properly.  In installation, I saved the core files under the default folder it gives you for DFS, and for the plug in files I saved under the one they gave me, which was Premeire Pro CS4/Common/MediaCore
    I can't post a screenshot, but I can tell you.  Once I go to export media and go to debug frameserver, the only option I have for settings once it's selected is "custom."  No presets, no ability to change anything, even when I go to advanced setting and check the video...no presets have loaded, nothing.  The only thing I can altered is the audio.
    Then I click save and media encoder CS4 opens, and there is still no way to alter my settings like I was able to do in CS3.  Why is this?  Is something in the wrong folder?  Do other people that are using Debug Frameserver in CS4 not have this issue?

  • Debug Adobe Photoshop CS4 Plugin in XCode 2.5

    Hello I've added PS CS4 as an Executable following the instructions on http://developer.apple.com/qa/qa2006/qa1500.htmlbut am getting this error message when I try to build and debug in Xcode:
    "GDB: Error: Xcode could not locate source file: kill.s (line:28)"
    Any help would be appreciated. Thank you,
    Andreas

    I can't install Xcode 3.1 on the Mac OS X 10.4.11. Here's my ouput when I try to build and run using Photoshop as my executable environment:
    [Session started at 2009-04-14 13:46:29 +0200.]
    2009-04-14 13:46:30.680 Adobe Photoshop CS4[1941] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    [Session started at 2009-04-14 13:46:43 +0200.]
    2009-04-14 13:46:44.171 Adobe Photoshop CS4[1943] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    [Session started at 2009-04-14 13:47:01 +0200.]
    2009-04-14 13:47:02.079 Adobe Photoshop CS4[2040] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    Here the output for build and debug:
    Maybe there are some additional arguments or debugging settings required under the photoshop's executable environment settings. Any tips?

  • Update Error on Adobe Update... CS4 no longer works

    Recently I downloaded the latest adobe update... and now it seems like CS4 is falling apart, mainly photoshop...here are the current problems I am faceing
    Program |Problem
    Photoshop Extended CS4| unable to open or create new files due to an error
    |that says:
    | "The specific module could not be found. C:\Program
    |Files\Common Files\Adobe\Adobe Version Cue CS4\Client
    |\4.0.1\VersionCue.dll
    Acrobat Pro |No problems so far...
    Dreamwever CS4 |No problems so far...
    Flash CS4 |No problems so far...
    So... I'm a little bit stuck... any help would be apreciated!
    Alex

    I'll assume you are on vista and refering to this:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb408524&sliceId=1
    It's the top link in the creative suite forums... I know this why? because I just had the same issue and it took forever to figure out it was posted right up top. That said I did follow all the instructions and now everything is working fine. Be prepared though as the steps you need to take are basically.. change some rights in windows and then uninstall your suite and re-install it again. I can say it works though.. Good luck.

  • CS4 Crashes when attempting to change color of characters in story

    Below is a function that we have been using since forever. It changes the color of a specified number of characters in a story starting at a specific position in the textmodel.<br /><br />The crash happens when processing the command (immediately after "11" is displayed).<br /><br />classID is kTextAttrColorBoss.<br /><br />Any help would be greatly appreciated.<br /><br />ErrorCode ApplyTextAttributes(ITextModel * pTextModel, int32 position, int32 length, UID swatchUID, ClassID classID)<br />{<br />     ErrorCode rc = kFailure;<br />     do<br />     {<br />          InterfacePtr<ITextAttrUID> textAttrUID_Color(::CreateObject2<ITextAttrUID>(classID));<br />          if (textAttrUID_Color == nil)<br />          {<br />//               ASSERT_FAIL("TSCore::CreateCharStyle: color invalid");<br />//               CAlert::ErrorAlert("textAttrUID obj is nuil");<br />               break;<br />          }<br /><br />          if (swatchUID == kInvalidUID)<br />          {<br />               ASSERT_FAIL("TSCore::CreateCharStyle: ResolveRGBColorSwatch failed");<br />//               CAlert::ErrorAlert("Invalid color UID");<br />               break;<br />          }<br />          <br />          // Set our color attribute and store it:<br />          textAttrUID_Color->SetUIDData(swatchUID);<br />          <br />          InterfacePtr<ICommand> pApplyTextAttrCmd ( Utils<ITextAttrUtils>()->BuildApplyTextAttrCmd(pTextModel, position,  length, textAttrUID_Color, kCharAttrStrandBoss) );<br />          //pApplyTextAttrCmd->SetUndoability(ICommand::kUndoNotRequired);     <br />CAlert::WarningAlert("11");<br />          rc = CmdUtils::ProcessCommand(pApplyTextAttrCmd);<br />CAlert::WarningAlert("12");<br />          if (rc != kSuccess)<br />               CAlert::WarningAlert("Error on ApplyTextAttrCmd");<br />     }while(false);<br />     <br />     return rc;               <br />}

    Hi Rick,
    I've just been chasing a crash in the Debug version of CS4 InDsign which was asserting with Protective shutdown.
    Like you the manifestation was on a call to ProcessCommand.
    I don't know if it's the same, but on the off chance I'll detail what I discovered.
    I traced back the cause of the crash to an earlier call through our ASB-CSB using the function template and macros, Process and make_functor.
    The function template Process which is in the SelectionASBTemplates.tpp sets up a abortable command sequence on the stack.
    If the result from the CSB function wasn't kSuccess then the sequence was aborted.
    Unfortunately in our CS2 version of the ASB/CSB's we were rather naughtily using the return to pass  a value and not an ErrorCode.
    the result was that our call was forcing an abort everytime.
    I've duplicated and renamed the Process function at the top of our ASB code and missed out the command sequence and it works fine.
    This isn't really the best solution and I'll have to investigate further but at least it solves the crash.
    Below is the new version of Process. I hope it helps you (or someone else out).
    All the best
    Caerwyn  Pearce
    #if (CREATIVE_SUITE_VERSION == CS2)
    // Use standard function template from SelectionASBTemplates.tpp for CS2.
    // It doesn't seem to cause problems, and I'd prefer not to fix it if it's working.
    #define ATLASB_Process        Process
    #else
    //    DESCR:        Call each CSB suite to process the request, wrapping the entire call in a sequence.
    //                Compare this with the one in SelectionASBTemplates.tpp.   
    //                Essentially I've removed the command sequence, and the possibility of an abort.
    //                For some reason this was causing a Protective shutdown in CS4.
    //                Also note the abort takes place if the return value from Process is not kSuccess(aka 0).
    //                For GetSelection we are returning ATLCSB::SelectionType which has a value of -1, -2 or -3
    //                which is most definitely not kSuccess and which was provoking an abort.
    //                However that's not the end of the problem, and the line ErrorUtils::PMSetGlobalErrorCode
    //                seems to be causing problems else where outside of the Process function template.
    //                It may be that our code is not resilient to aborting command sequences.
    //    NOTE:        Most definitely doesn't abort the sequence regardless of errors.
    //    RETURNS:    Error Code.
    template <typename Functor>
    typename Functor::result_type ATLASB_Process (Functor& f, typename Functor::argument_type object, PMIID iid)
        InterfacePtr<const IIntegratorTarget>                     iIntegratorTarget (object, UseDefaultIID ());
        std::auto_ptr<IIntegratorTarget::TargetSuiteCollection> selectionSuites (iIntegratorTarget->GetTarget (iid));
        ErrorCode                                                errorCode = kSuccess;
        if (!selectionSuites->empty())
            for (int32 i = selectionSuites->size () - 1; i >= 0 && errorCode == kSuccess; i--)
                typename Functor::argument_type        iUnknown = static_cast<typename Functor::argument_type>(static_cast<IPMUnknown*>((*selectionSuites) [i]));
                errorCode = f(iUnknown);
        return (errorCode);
    template <typename Functor>
    typename Functor::result_type ATLASB_Process (Functor& f, typename Functor::argument_type object)
        return (ATLASB_Process (f, object, GetDefaultIID (object)));
    #endif

  • PLEASE important dreamweaver CS4 spry

    hi all, can someone help me with a problem on HTML Dreamwever CS4 please

    #1 The best way to share your work online is to upload your site to a TEMP folder on your remote server.  If you don't have permanent web hosting yet, you should procure some from a commercial web host as soon as possible.  You will need this to publish your site online.  There are some free hosting services you can use temporarily but you get what you pay for.
    #2 Spry is dead.  Adobe abandoned Spry last year because it has outlived is usefulness.  You may continue using it if you wish, but most people have moved to other, more modern solutions.
    Nancy O.

  • PS CS4 Currupt Trial Download

    I have tried unsuccessfully to extract the trial download of PS CS4 extended. I have downloaded both files from adobe.com, but upon lauching the adobe extractor, the progress bar reaches 100% and displays the error "An error ocurred please check you have enough memory and right privliges on the destination folder"
    My machine is running XP SP2, INtel PIV with 2 gig of ram.
    I am succesfully downloaded and installed Dreamwever CS4 with problems.
    Trying google a couple of people have had problems they think with the downloaded files from adobe being currupt, abd I wondered whether I may be suffering the same fate with the files I have downloaded.
    Hvaing checked those files that have extracted in the destination folder
    C:\Documents and Settings\Alan.ALAN-33C123774C\Desktop\Adobe CS4
    Some files seem to extracted ok but many have file size of ZERO KB
    Any help or assistance would be great.
    Cheers

    UPDATE - within the larger file (8815mb) I think I have established the currupt or damaged file/archive:
    Extracting Adobe CS4\extensions\AdobePhotoshop11-fr_CA\Assets\_1360_696807bdeb1695f530d6e9da439891d1 Data error
    So it would appear that the PS CS4 trial is indeed CURRUPT.
    NIce one adobe. Hope you dont mind if I DONT rush to part with my cash.
    Tried 7 times now to download the trial with exactly the same results everytime.
    All their online help doesnot address the issue.
    Is or has anyone else suffered the same fate??
    Cheers

  • Dreamweaver CS4 Extenstion Manager

    Dreamwever CS4 is installed on a laptop. So is Production Premium CS6   When I try  to use the Dreamweaver Extension Manager, only the CS6 applications come up.  How can I add to the Dreamweaver CS4 extensions given that Production CS6 is installed?   I really don't need a new version of Dreamweaver  I DID need the new version of Production Premium.
    Any help appreciated.
    Dave

    That Lynda.com tutorial is out of date.  Effective late last year, Adobe abandoned the Spry Framework because it has outlived its usefulness.  You can keep using it if you want to.  The repository was moved from Adobe's servers to GitHub.
    https://github.com/adobe/Spry
    That said, most of us have moved away from Spry to better frameworks.
    Project Seven Responsive Tabs
    http://www.projectseven.com/products/tools/tpm2/tutorials/responsive/index.htm
    Pop-Menu  Magic2 by PVII (DW extension purchase)
    http://www.projectseven.com/products/menusystems/pmm2/index.htm
    jQuery Superfish
    http://users.tpg.com.au/j_birch/plugins/superfish/
    jQuery Mega Menus 
    http://www.javascriptkit.com/script/script2/jkmegamenu.shtml
    CSS3 Dropdown Menus
    http://www.red-team-design.com/css3-dropdown-menu
    10 Responsive Menus
    http://speckyboy.com/2012/08/29/10-responsive-navigation-solutions-and-tutorials/
    Nancy O.

  • Alignment problems in IE

    Hi,
    I have an issue with text alignment in only some cells of a
    table in Dreamwever CS4.
    I made the table with the first two columns centred, third
    column left justified and remaining 6 columns centred.
    It all appeared fine, but at some point when I saved the file
    I realised that a few of the cells in 3 of the columns had changed
    text alignment. Weird thing is they have not changed to left or
    right etc, but are about 4 characters to left of centre.
    I tried selecting the columns and using the css style to make
    them centred again, but it does not work and these cells remain out
    of alignment.
    I looked at it it Firefox and Google Chrome and it looked
    fine anyway...but in Internet Explorer...the problem I see in the
    dreamweaver design view is also happening in the browser.
    Also..the radio buttons in the first two columns are centred
    and aligned vertically in the design view ...look fine in other
    browsers, but in IE the the radio butttons are "offset" by one
    vertical line space.
    I am not great with code, but have attached it to the
    message.
    So...first can anyone tell me why is this happening in the
    design view and how I can fix it...and could I be lucky enough that
    it would then work in IE or is that too much to hope?
    Thanks for checking out the post.
    Lani

    Hi,
    I have an issue with text alignment in only some cells of a
    table in Dreamwever CS4.
    I made the table with the first two columns centred, third
    column left justified and remaining 6 columns centred.
    It all appeared fine, but at some point when I saved the file
    I realised that a few of the cells in 3 of the columns had changed
    text alignment. Weird thing is they have not changed to left or
    right etc, but are about 4 characters to left of centre.
    I tried selecting the columns and using the css style to make
    them centred again, but it does not work and these cells remain out
    of alignment.
    I looked at it it Firefox and Google Chrome and it looked
    fine anyway...but in Internet Explorer...the problem I see in the
    dreamweaver design view is also happening in the browser.
    Also..the radio buttons in the first two columns are centred
    and aligned vertically in the design view ...look fine in other
    browsers, but in IE the the radio butttons are "offset" by one
    vertical line space.
    I am not great with code, but have attached it to the
    message.
    So...first can anyone tell me why is this happening in the
    design view and how I can fix it...and could I be lucky enough that
    it would then work in IE or is that too much to hope?
    Thanks for checking out the post.
    Lani

  • Strange Error using Flex Profiler

    Hi,
    I am trying to use the Flex Profiler to figure out where to put my time when optimizing the code of a .swf file generated in Flash CS4. In Flex, I select "Profile External Application" for the "Profile" menu item. Then I select "Launch the application manually from Ooutside Flex Builder" and set the timeout to 60000 milliseconds. I then go over to Flash CS4 and start a debug session of the application I want to profile. This should make the profiler pick up the session and give me the stats I need. But I get a couple of weird errors in the Flex Builder.
    The first error is a message box the pops up and says: "Profiling can only be performed on the debug version of an application."  I am definitely running the Flash application in debug mode... The only thing that I can think may be a problem is that I am using the Flash Facebook API and linking to the external .swc file for that API. Could that cause a problem?
    The second error is an exception that gets thrown in Flex Builder and is displayed in the Console. The exception is this:
    flash.swf.SwfFormatException: unrecognized fill style type: 202
        at flash.swf.TagDecoder.decodeMorphFillStyle(TagDecoder.java:982)
        at flash.swf.TagDecoder.decodeMorphLinestyles(TagDecoder.java:914)
        at flash.swf.TagDecoder.decodeDefineMorphShape(TagDecoder.java:868)
        at flash.swf.TagDecoder.decodeDefineMorphShape2(TagDecoder.java:849)
        at flash.swf.TagDecoder.decodeTag(TagDecoder.java:310)
        at flash.swf.TagDecoder.decodeTags(TagDecoder.java:170)
        at flash.swf.TagDecoder.parse(TagDecoder.java:119)
        at com.adobe.flash.profiler.internal.PlayerSession.swf(PlayerSession.java:570)
        at com.adobe.flash.profiler.internal.ProtocolHandler.readSwf(ProtocolHandler.java:353)
        at com.adobe.flash.profiler.internal.ProtocolHandler.process(ProtocolHandler.java:114)
        at com.adobe.flash.profiler.internal.PlayerSession.run(PlayerSession.java:383)
        at java.lang.Thread.run(Unknown Source)
    It looks like it has something to do with a fill style, but I am just doing standard Flash stuff... No version of Flash Player has had any problems with the .swf file, but somehow the profiler is not liking something.
    Does anyone have any idea about what is going on here? Apparently the profiler is a great tool to use to optimize ones code, and I would really love to use it.
    Thanks!!!

    I would not start a debug session in CS4.  I would just find the SWF generated by the last debug session and launch the standalone player with that SWF.  There might be some contention in having both CS4 and the FB profiler trying to hook up to the same SWF.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Mysql conn with remote server

    Good evening,
    I have my db loaded, phpmyadmin loaded all on my remote server, went in the phpmyadmin and created my table, now I am in dreamwever cs4 and want to conn to my db
    on server tab I put
    ' mysqlXX.webcontrolcenter.com ' (where XX is my server #),
    but i keep getting "an unidenfied error occour"thats all.      
    Any ideas or is there something I am missing, Thx

    ok, but answer this to me, if I used phpmyadmin on my remote site which my host set up, and gave me my server addy for mysql. I went on line and to my phpmyadmin set up my table users. Now in dreamweaver my site is defined, local, testing, and remote. I now make a connection to mysql, click the plus and then mysql connection, dialog box comes up, I put conn name in, host addy (from my hoster), username and pw from when I set up phpmyadmin on the remote server, click test and works, check out the table users and all the info is now in dreamweaver, how did it get that info if not getting from remote? thx

  • ID CS4 Debug slow

    Hi,
    can anyone tell me, if there's anyway to speed up the performance of ID CS4 Debug. What I have already tried helps, but does not help enough:
    I tried unchecking all TRACE options, under Test->PERFORMANCE I chose the no cache-checking (faster option), I unchecked all further Test options, the Debug Settings.xml File has everything set to false.
    The performance running an extend script is still 8-10 times slower than the non-debugged version. Is this normal, and can any more be done to speed it up to near normal speed? (I'm testing on an Intel Centrino vPro 2GHz, with 2GB Ram.)
    Thanks in advance!
    - Claire

    T Schneider
    Can you elaborate on this for plugin development, I'm assuming your using Xcode?
    Thanks in advance.
    Mike

  • InDesign CS4 Debug Application

    Hi,
    Can anybody suggest how to get the InDesign CS4 Debug application?
    Thanks,
    Anil Yadav

    same question with more detailed answers:
    http://forums.adobe.com/message/2696232
    Find mail adress here (old post but still valid):
    http://blogs.adobe.com/notesfrommnr/2005/08/heres_how_to_ge.html
    My plugins where never revisited by somone from adobe, I also had no delay. Reply/access to debug version granted from/by Adobe was very fast (4h).

  • Error loading Indesign CS4 Debug plug-in. Sxs trace attached

    When I try to open Indesign Debug after placing my plugins in the plug in folder, I get the following Sxs trace:
    INFO: Parsing Manifest File C:\Program Files\Adobe\Adobe InDesign CS4 Debug\Plug-ins\IPG3EXPORTER.PLN.
        INFO: Manifest Definition Identity is (null).
         INFO: Reference:  Microsoft.VC80.DebugCRT,processorArchitecture="x86",publicKeyToken="1  fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053"
    INFO:  Resolving reference  Microsoft.VC80.DebugCRT,processorArchitecture="x86",publicKeyToken="1  fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053".
        INFO: Resolving reference for ProcessorArchitecture x86.
            INFO: Resolving reference for culture Neutral.
                INFO: Applying Binding Policy.
                     INFO: Find publisher policy at  C:\Windows\WinSxS\manifests\x86_policy.8.0.microsoft.vc80.debugcrt_1f  c8b3b9a1e18e3b_8.0.50727.762_none_6d78e2ee5a7eb616.manifest
                    INFO: No binding policy redirect found.
                INFO: Begin assembly probing.
                    INFO: Did not find the assembly in WinSxS.
                     INFO: Attempt to probe manifest at  C:\Windows\assembly\GAC_32\Microsoft.VC80.DebugCRT\8.0.50727.4053__1f  c8b3b9a1e18e3b\Microsoft.VC80.DebugCRT.DLL.
                    INFO:  Attempt to probe manifest at C:\Program Files\Adobe\Adobe InDesign CS4  Debug\Plug-ins\Microsoft.VC80.DebugCRT.DLL.
                    INFO:  Attempt to probe manifest at C:\Program Files\Adobe\Adobe InDesign CS4  Debug\Plug-ins\Microsoft.VC80.DebugCRT.MANIFEST.
                     INFO: Attempt to probe manifest at C:\Program Files\Adobe\Adobe InDesign  CS4 Debug\Plug-ins\Microsoft.VC80.DebugCRT\Microsoft.VC80.DebugCRT.DLL.
                     INFO: Attempt to probe manifest at C:\Program Files\Adobe\Adobe  InDesign CS4  Debug\Plug-ins\Microsoft.VC80.DebugCRT\Microsoft.VC80.DebugCRT.MANIFE  ST.
                    INFO: Did not find manifest for culture Neutral.
                INFO: End assembly probing.
    Any ideas? It looks like the manifest is null, whatever that means.

    I'm guessing there is a mismatch between:
         x86_policy.8.0.microsoft.vc80.debugcrt_1fc8b3b9a1e18e3b_8.0.50727.762_none_6d78e2ee5a7eb6 16.manifest
    and
         x86_policy.8.0.microsoft.vc80.debugcrt_1fc8b3b9a1e18e3b_8.0.50727.42_none_3825408a574a21c b.manifest
    is your plugin built on the same machine as you trying to launch InDesign Debug? is InDesign starting without your plugin?
    Regards
    Bartek

  • InDesign CS4 Debug not working on Windows

    Dear All,
    Two days back I purchased Bronze ASN memebership. This is the first time when I am trying debug version of InDesign. I have installed InDesign CS4 Debug on both Mac & Windows. On Mac it is working fine, but on windows it is not working.
    Debug Indesign is not getting launch and asking for re-installation. I have re-installed 2-3 times. Release version allready installed one my PC. I have tried with differeent combination like "install without Release version of InDesign", "insatalled on different drive", etc.
    I hope some one can help me to resolve this issue.
    Regards,
    Rajeev

    I think the Adobe terminology is Required not recommended, but the
    recommended build environment for CS4 plugins is Visual Studio 2005 plus
    service pack 1.
    As has been said many times on this list, and I can confirm from painful
    experience, you may have problems if you try to build your plugins with VS
    2008.
    Caerwyn

Maybe you are looking for

  • Including Objects in Request from Other System

    I've got an interesting question. This will be hard to explain but here goes: You know how you can u201CInclude Objects in Requestu201D? E.g. create a new request from an old one and copy the keys from the old one to the new one. That way when you re

  • Help please , iv emailed bt but been ignored .....

    help please , iv emailed bt but been ignored , iv phone but the operator had know idea what he was talking about . hope this is in the write forum . last year i applied to be on bt basic , the cheap one for if your on income support etc , it was exce

  • Service activity creation in SAP from MSP (Microsoft Project)

    Dear All, As we are planning to integrate  SAP & MSP, I have one query regarding service activity creation in SAP from MSP. In case of service activity in SAP we have to assign respective services also otherwise it does not get saved.So when we trans

  • Is it possible to have a link to delete a value in a SQL report?

    Application Express 3.1.0.00.32 I have a simple table with a listing of names (project managers) and would like to have a link in a separate column that would have the pm removed (delete the pk_id from the table). I have tried several things without

  • Project files location when moving from one PC to another

    Hi - I hope this isn't t oo silly a question but I have started a project at one location and I am now going to our overseas office for a month and will need to work on the project on another PC while I am there. I am a little confused as to where I