You can run the following to see if you're on PHP 5. Put this code in a file named
public_html/test5.php and run it
http://www.yoursite.com/test5.php:
<?php
if (stripos("Am I on 5?", "i")) {
echo "Yes it works.";
} else {
echo "No, it doesn't work.";
}
?>If you get an error that the function
stripos isn't found, then you're still on PHP 4. Otherwise it should say "Yes it works.".
/ is the Unix/Linux "root" of the file system on your server
/home/ACCOUNTNAME/ is the top of your site's files -- this is where cPanel > File Manager or an FTP client dumps you
/home/ACCOUNTNAME/public_html/ is the top of your Web site (where index.html or whatever is found)
/usr is a publicly readable, but not writable directory with various things customers need
/usr/bin/ is a directory below /usr, holding something like the php executable
There is no "URL" for /usr/bin. You can't get to it from the Web. It's on your server.
Edit: forgot closing ?>