Page 1 of 4 123 ... LastLast
Results 1 to 10 of 32

Thread: Mailbox

  1. #1
    Join Date
    Mar 2006
    Posts
    600
    Thanks
    5
    Thanked 4 Times in 4 Posts

    Default Mailbox

    Can I get a Php mailbox just like gmail or yahoo or something?
    Last edited by benslayton; 07-07-2006 at 03:18 PM.

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Mar 2006
    Posts
    600
    Thanks
    5
    Thanked 4 Times in 4 Posts

    Default

    Thanks but I only see .tar.gz I have Windows.....

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    It's written in PHP.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #5
    Join Date
    Mar 2006
    Posts
    600
    Thanks
    5
    Thanked 4 Times in 4 Posts

    Default

    So I downloaded it and then upload it to my server?

  6. #6
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Best idea is to upload it then extract it, yes. However, some webservers won't give you a means to do this, so you'll have to extract it first and then upload it.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  7. #7
    Join Date
    Mar 2006
    Posts
    600
    Thanks
    5
    Thanked 4 Times in 4 Posts

    Default

    Ok I found a different one. It tells me to create a file and CHMOD it to 007, 777, or 667. how do I CHMOD a file and which # do I Use?

  8. #8
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    chmod stands for change mode, and it specifies which permissions are set on a file. There are three digits, which stand for user (the user who created the file), group (users in the same group as the file [owning user and group are set with chown]) and world (everybody on the same machine; also people accessing the file via a webserver, but the write permission has no effect).
    Each of those digits is composed of the following bitset:
    1 - execute
    2 - write
    4 - read

    0 means no permissions; nobody from the specified group is allowed to touch the file. 7 is 1 + 2 + 4: all permissions, anybody can do what they like with the file. 6 is 2 + 4; the file is readable and writable to those people, but not executable... you get the idea. So 007 means: user and group can't do jack, but everyone else can do what they like (which is ruddy daft).

    FTP provides a CHMOD command, I believe. Failing that, log in to your server using SSH and execute the command directly.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  9. #9
    Join Date
    Mar 2006
    Posts
    600
    Thanks
    5
    Thanked 4 Times in 4 Posts

    Default

    Ok done some reasearch on what SSH means, I understand what CHMOD is now but I dont understand how to do it can I use dreamweaver. I also found this www.ece.osu.edu/ssh.

  10. #10
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    http://www.chiark.greenend.org.uk/~s.../download.html
    That's a Windows SSH client. Note that your host must have an SSH server installed, and your account must have permission to use it.

    Dreamweaver? No.
    Code:
    prompt$ ftp yoursite.com
    Connected to yoursite.com (127.0.0.1).
    220 FTP server ready
    Name (yoursite.com:youruser): yourusername
    331 Password required for yourusername.
    Password: (enter password here)
    230 User yourusername logged in.
    Remote system type is UNIX.
    Using binary mode to transfer files.
    ftp> cd public_html
    250 CWD command successful.
    ftp> chmod 755 file
    200 SITE CHMOD command successful.
    ftp> quit
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •