I don't think anyone else is really answering this because it borders on the ridiculous. I have a
DreamHost account and it doesn't use my login in the path such as yours, you must have set it up that way. You can request this as a feature request but I can tell you that it would be so far down on any list that it would probably not happen ever. If you feel that your path shows too much personal information, I would suggest contacting
DreamHost and have them change it. But I wouldn't expect them to help either. Especially since
DreamHost provides you with the opportunity to compile your own php allowing you to create your own php.ini file. I would not expect Pligg to change their entire
CMS structure. You would have the same problem with practically every
CMS or php script on the planet.
Here is how to compile your own php on
DreamHost Code:
mkdir ~/php
mkdir -p ~/src/php
cd ~/src/php
wget http://us3.php.net/distributions/php-5.0.3.tar.bz2
tar -xjf php-5.0.3.tar.bz2
mkdir php5libs
cd php5libs
wget http://cogent.dl.sourceforge.net/sou...t-2.5.7.tar.gz
wget http://xmlsoft.org/sources/libxml2-2.6.18.tar.gz
wget http://xmlsoft.org/sources/libxslt-1.1.13.tar.gz
wget http://www.zlib.net/zlib-1.2.2.tar.gz
tar -xzf libmcrypt-2.5.7.tar.gz
tar -xzf libxml2-2.6.18.tar.gz
tar -xzf libxslt-1.1.13.tar.gz
tar -xzf zlib-1.2.2.tar.gz
cd zlib-1.2.2
nice ./configure --prefix=~/php --shared
nice make
nice make install
cd ../libxml2-2.6.18
nice ./configure --prefix=~/php --without-python
nice make
nice make install
cd ../libxslt-1.1.13
nice ./configure --prefix=~/php --with-libxml-prefix=~/php --without-python
nice make
nice make install
cd ../libmcrypt-2.5.7
nice ./configure --prefix=~/php --disable-posix-threads
nice make
nice make install
ln -s /usr/lib/libltdl.so.3 ~/php/lib/libltdl.so
cd ../../php-5.0.3
nice ./configure \
--prefix=~/php \
--enable-force-cgi-redirect \
--with-mcrypt=~/php \
--with-zlib-dir=~/php \
--with-mysql=/usr \
--with-xml \
--with-libxml-dir=~/php \
--with-openssl=/usr \
--with-xsl=~/php \
--enable-mbstring \
--enable-mbregex
nice make
nice make install