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.
i can confirm this bug with kdevelop-3.3.0-rc1
In automake manager at the middle I click the second leftmost button, and kdevelop crashes. I cannot reproduce by intention.
Well sorry, disregard my previous post.
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(); }
thanks.