In reply to:
Here what I want to do
- I need to run a crontab as well so I go to menu corntab, at command field I don't know where is my full path to my php file ...(I got this from script that show path of file
/home/.wycca/xxx/www.xxx.com/test.php
On "xxx" for sure I can tell where is it, but ".wycca" how do I know?)
I think I understand now what is confusing you.
That ".wycca" is what is called a "dataglob", and you *should not* use it as part of the path to your file.
This is because it is subject to change by DreamHost, and if you code it into your script/crontab and it should change, then your script/crontab will break.
It is *not* needed (as explained in the link above). So, given your example above, the "full path" top your .test.php file would be:
/home//xxx/www.xxx.com/test.php
*if* your actually have a directory named www.xxx.com. Note that this is a *directory name* on your server, *not* just the url to your site; - make sure you do not include the "www." unless there is actually a directory on your server with that name (mine are just named "xxx.com", with no "www").
--rlparker