Whos Online

Joomla

We have 388 guests and 0 members online

    Forums

    We have 15 guests and 0 members online

      Tags

      android (7) anonymity (9) ant (10) apache (54) apple (7) atv (18) australia (8) bernardet (7) bombardier (7) book (7) browser (10) business (8) caliber30 (61) canon (9) cedricwalter (6) checklist (9) chrome (6) classpath (6) collection (7) continuousbuild (25) design (13) designpattern (23) desktop (7) development (28) DIY (9) draganflyer5 (9) dslr (14) eclipse (30) ek4 (8) electronic (18) enfrancais (66) FAQ (6) figures (13) firefox (20) firmware (7) flash (9) flickr (6) framework (12) fud (9) game (19) gaming (6) girls (6) google (68) gpl (8) gps (9) hacking (23) hdtv (7) hollidays (15) homecinema (14) homepage (20) howto (66) infrastructure (6) innoveo (7) iphone (6) italy (10) itsatrap (8) java (73) javascript (11) joke (11) joomla (215) joomla15 (33) joomlacloud (7) junit (9) kde (10) kyosho (62) links (17) linux (122) LittleBigPlanet (16) mambo (18) manual (8) manurhin (9) maps (6) maven (36) mediacenter (9) microsoft (52) modding (10) module (17) morespeed (16) motor (8) motorcycle (13) myhomepage (14) mysql (14) nas (14) neogeo (20) opencomment (27) opensource (61) opensuse (10) oss (7) p2p (7) patch (32) pc (12) pdf (8) php (26) picasa (7) plugin (65) privacy (9) projector (11) protection (7) ps3 (42) publicity (9) quad (18) raptor30 (7) rchelicopter (161) review (32) robot (9) robotic (7) rss (8) safety (8) scooter (29) security (62) securityimage (8) securityimage3 (6) securityimage4 (21) securityimage5 (19) securityimages (14) securityimages5 (6) server (17) simulator (8) smugmug (12) snk (16) software (31) sony (38) spammer (7) statistics (13) storage (7) subversion (6) suse (12) switzerland (7) teamcity (15) testing (9) thundertiger (20) tips (31) tomcat (7) tomtom (7) translatetofrench (8) trip (17) troubleshooting (7) tutorial (9) twitter (6) upgrade (15) vespa (10) video (17) vintage (8) watercooling (9) web2.0 (28) windows (14) xbmc (7) xbox (10) zurich (16) zürich (11)

      Skype me

      My status

      Follow me

      Facebook Digg LinkedIn MySpace Twitter Playstation network Xbox Live
      Digg Del.icio.us Reddit Simpy StumbleUpon Ask Facebook Slashdot Backflip Spurl MisterWong Netvouz Diigo Segnalo RawSugar Shadows Google Furl Newsvine Yahoo Technorati Live Blogmarks Netscape Fark Wink LinkaGoGo Bibsonomy FeedMe Magnolia Blue Tailrank Del.irio.us Y PlugIM SpotBack LinkSwarm

      Gallery

      Twitter

      Google Buzz


      Re: No related articles are displayed - Which missing plugins?
      2 hours ago,

      Re: No related articles are displayed - Try installing more updates of this and missing plugins, will do better and help to resolve this. Bravia | Timeline
      2 hours ago,

      did install recaptcha and akismet in my forum forums.waltercedric.com... so my buzz profile should not be polluted by spammers. Let see how it work in 2 days...
      18 hours ago,

      Re: Fatal error in com_installer/controller.php in joomla 1.4 how to recover? - hello friend, I received a fatal error as Call to a member function setState() on a non-object in /home/ngi/public_html/administrator/components/com_installer/controller.php .please provide the solution. Thanks SP
      23 hours ago,

      relations - in 21 and looking an aggrandizement to sex toys ? examine into into us at www.avi.vg... and upon the largest selction of vibrators, [url=www.avi.vg/category......
      11:54 PM Mar 09, 2010,
       
      Eclipse PDT 2.0 is available Print E-mail
      User Rating: / 4
      PoorBest 
      Thursday, 01 January 2009 21:24

      The PDT project is working towards providing a PHP Development Environment framework. This project was formerly known as PHP IDE.

      Make Eclipse PDT work for Joomla development

      Install a PHP debugger

      In order to be able to perform debugging using eclipse PDT, you must download one of the following extra packages:  XDEBUG or ZEND debugger. I was not able to get the debugger running with XDEBUG even after reading many tutorials and trial error approach. Both packages are free, and it has work nicely for me with ZEND debugger after 5 minutes...

      Unfortunately, XDEBUG/ZEND can not be packaged with PDT due to license restrictions, so both tools are not just running out of the box without few efforts.

      PDT and Zend Debugger

      Download

      PDT + Zend in one package thanks to Zend.com (118MB), highly recommended

      OR PDT (105MB) and add Zend debugger through software update later

      • Open Eclipse and go to Help-> Software Updates-> Find and Install
      • Select "Search for new features to install" and click "Next"
      • Create a New Remote Site with the following details:
      • Name: PDT
      • URL: http://downloads.zend.com/pdt
      • Check the PDT box and click "Next" to start the installation

      XAMPP, Zend debugger working together

      open the php.ini located at \xampp\apache\bin\php.ini

      and add the following

      [DEBUGGER]
      zend_extension_ts=
      E:\php\bin\eclipse\plugins\org.zend.php.debug.debugger.win32.x86_5.2.15.v20081217\resources\php5\ZendDebugger.dll
      zend_debugger.allow_hosts=127.0.0.1/192.168.1.100
      zend_debugger.expose_remotely=always

      Notes:

      • Only one key zend_extension_ts is allowed per php.ini file, un-comment all other or it wont work,
      • Attention: I did not move ZendDebugger.dll but use the one coming with eclipse Zend plugin, this may cause issues, if you update this plugin and the path change...

      Restart XAMPP apache

      By going to http://localhost/xampp/phpinfo.php check that you have a section Zend Debugger

      zend.debugger.active.in.xampp

      Put now a breakpoint in index.php of any Joomla! installation or deeper in any component you want to debug

      And right click on index.php, debug as PHP Web Page (Alt-Shift-D, W)

      Attention

      While the first page get properly rendered in the internal browser of eclipse PDT, I was getting some strange rendering issues (html code produced look fine), by using an external browser like Chrome, Firefox, the problem has disappear.

      PDT and XDebug

      Installing with PEAR/PECL is as easy as opening a command prompt and typing

      # \xampp\php\pecl install xdebug

      open the php.ini located at \xampp\apache\bin\php.ini

      and un-comment the following

      extension=php_xdebug.dll

      and

      [XDebug]
      ;; Only Zend OR (!) XDebug
      zend_extension_ts="e:\xampp\php\ext\php_xdebug.dll"
      xdebug.remote_enable=1
      xdebug.remote_host=localhost
      xdebug.remote_port=9001
      xdebug.remote_handler=dbgp
      xdebug.profiler_enable=0
      xdebug.profiler_output_dir="\xampp\tmp"

      Caveats:

      1. Modify the correct php.ini file, check the page phpinfo, normally the right php.ini is located at \xampp\apache\bin\php.ini
      2. You need to comment out any other references to “zend_extension_ts” in the php.ini file (the zend optimizer use it already as default)
      3. Restart apache, and check the page http://localhost/xampp/phpinfo.php to make sure XDebug has been successfully installed

      debugging AkoBookPlus:

      debugging.joomla.components

       

      Add subversion plugin

      Install subversive by pointing the update manager to subversive update site

      svn.subversive.install

      You need also to install SVN connectors by adding a new update site:

      http://www.polarion.org/projects/subversive/download/eclipse/2.0/update-site/ - [required] Subversive SVN Connectors

      svn.subversive.install.connector 

      Eclipse will restart, you should be able to browse www.joomlaCode.org repositories.

      Happy Joomla! development and PHP debugging!

      Related Posts

      relatedArticles

      Tags See All Tags Add New Tag...

      Please Enter New Tags Separated By Comma's
        Or Close

      Debug  eclipse  howto  joomla  pdt  php 



      Comments
      Add New Search RSS
      +/-
      Write comment
      Name:
      Email:
       
      Website:
      Title:
      UBBCode:
      [b] [i] [u] [url] [quote] [code] [img] 
       
       
      :):grin;)8):p:roll:eek:upset:zzz:sigh:?:cry
      :(:x
       
      Please input the anti-spam code that you can read in the image.
      Roy Ganor  - Great Review! |212.25.124.xxx |2009-01-02 09:13:12
      thanks!
      Aditya G Jadhav  - Nice plugin |59.95.17.xxx |2009-05-19 04:16:47
      i trying it now :)
      Last Updated on Friday, 02 January 2009 19:20
       

      Top 200 Tags

      Donation

      Thank You for supporting my work
      Click Here to make a donation