some changes to install and configure file of slashster
Status: Beta
Brought to you by:
seventhcycle
hello,
the INSTALL file under the slashster folder, gives us
step by step instructions for installing and
configuring slashster. i have noticed some problems and
tried to make some changes. i have uploaded this file
for your reference.
also, there are 2 new lines to be added to the
configure file at the top that resides under
slashster/setup folder.
####################
mkdir ../cron/tmp
mkdir ../friendlist
###################
hope this helps.
let me know if i am wrong at any place.
thanks,
viv
modified files
Logged In: NO
the above message was posted by vishwa vivek ....
asp_php_coder@hotmail.com
Logged In: NO
The installation is ok for me but 3 words at the verification
box does not appear. How to disable that feature?
Logged In: YES
user_id=315968
Instead of the
mkdir ../cron/tmp
I'd have:
mkdir -p ../cron/tmp
...to just help avoid errors on the sheer chance that the
cron directory might not already exist.
The -p switch to mkdir makes all parent directories as
neccessary, not erroring if the dirs already exist.
Logged In: YES
user_id=315968
I couldn't find a way to edit my other message, so I will
write this to further clarify...
What I mean when I say "the sheer chance that the
cron directory might not already exist" is that .. from
experience I have had gzipped tar files (as the downloadable
file is) get corrupted and some (but not all) of the
directories or files are missing or not complete. The mkdir
option I suggest (-p) is just to help with if that were to
happen.