View Single Post
  #7 (permalink)  
Old 07-21-2008, 05:07 AM
chuckroast's Avatar
chuckroast chuckroast is online now
Pligg Developer
 
Join Date: Jun 2006
Location: PA
Posts: 2,607
Thanks: 178
Thanked 458 Times in 296 Posts
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
__________________


Thank this developer by tipping or by moving your website to PliggDrive!
Visit Pligg Pro the official Pligg Mods & Template Shop!



Reply With Quote