Bug 80792

Summary: all php files searched in php project root URL even if they are inside a subdir
Product: [Applications] kdevelop Reporter: Imre Péntek <pentek.imre>
Component: Language Support: PHPAssignee: KDevelop Developers <kdevelop-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 3.0.1   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Imre Péntek 2004-05-02 18:22:26 UTC
Version:           3.0.1 (using KDE KDE 3.2.0)
Installed from:    Unspecified Unix
Compiler:          gcc version 3.3.2 Configured with: /var/uhubuild/work/compile/configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,objc,java,f77,pascal --enable-shared --with-gnu-as --with-gnu-ld --with-system-zlib --host=i386-pc-linux-gnu
OS:          Linux

So I created a php project into ~/public_html/php/ I put some files into some subdirs of this dir, and if I try to execute these files using apache and loopback it searches them in ~/public_html/php/ and hence these can't be executed. :(
But it runs them correctly if parsed using a php ELF executable interpreter.
Comment 1 frank 2005-11-24 19:50:07 UTC
i can confirm this bug with kdevelop-3.3.0-rc1
Comment 2 Imre Péntek 2006-04-12 17:57:35 UTC
In automake manager at the middle I click the second leftmost button, and kdevelop crashes. I cannot reproduce by intention.
Comment 3 Imre Péntek 2006-04-12 17:58:20 UTC
Well sorry, disregard my previous post.
Comment 4 Andreas Pakulat 2007-01-14 20:23:30 UTC
SVN commit 623419 by apaku:

Use project-relative path for opening php projects in web-mode.
BUG:80792


 M  +1 -1      phpsupportpart.cpp  


--- branches/kdevelop/3.4/languages/php/phpsupportpart.cpp #623418:623419
@@ -283,7 +283,7 @@
       KParts::ReadOnlyPart *ro_part = dynamic_cast<KParts::ReadOnlyPart*>(partController()->activePart());
       if (ro_part) {
          if ( configData->getInvocationMode() == PHPConfigData::Web )
-            file = ro_part->url().fileName();
+            file = URLUtil::relativePath( project()->projectDirectory(), ro_part->url().path() );
          else
             file = ro_part->url().path();
       }
Comment 5 Imre Péntek 2007-01-14 20:30:40 UTC
thanks.