Welcome to Welcome to DNF.com™ - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars

If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the largest domain name community on the internet and continues to grow every day. There are over 105,000 domainers on DNForum doing everything from buying domains, selling domains, learning about domains and discussing domains. Take a minute and Register.

Register Today on DNForum IT'S FREE!

Results 1 to 10 of 10
  1. #1
    Platinum Lifetime Member

    Join Date
    Mar 2005
    Posts
    73
    DNF$
    297
    Bank
    0
    Total DNF$
    297
    Donate  

    Teach me how to install a script

    Hi I would like someone to help me install a script mysql database php. I have never done this before. I have MSN and maybe we can chat an install this together. I would really love to learn how to do this but no one around to teach :emba:
    So if you have patience and would like to teach me please name your rate and let me know by PM. Thanks!
    http://www.my-own.biz Own your own business
    http://www.teachjapanforum.com
    Teach English in Japan

  2. #2
    Platinum Lifetime Member

    Join Date
    Jun 2005
    Posts
    539
    DNF$
    10,654
    Bank
    0
    Total DNF$
    10,654
    Donate  

    Re: Teach me how to install a script

    i pmed u
    my msn is admin@apkafuture.com

  3. #3
    Platinum Lifetime Member

    Join Date
    Jan 2005
    Posts
    1,013
    DNF$
    167
    Bank
    0
    Total DNF$
    167
    Donate  

    Re: Teach me how to install a script

    I sent you a PM aswell

  4. #4
    Gold Lifetime Member
    TvDomain's Avatar
    Join Date
    Jul 2005
    Location
    USA
    Posts
    49
    DNF$
    327
    Bank
    0
    Total DNF$
    327
    Donate  

    Re: Teach me how to install a script

    pm sent

  5. #5
    Account Terminated
    Join Date
    Jul 2005
    Posts
    134
    DNF$
    708
    Bank
    0
    Total DNF$
    708
    Donate  

    Re: Teach me how to install a script

    Heres what i found out, will be much easier if you follow these steps (just thanks for the help will do, dont need anything else)

    1. edit the configuration variables inside the php script (look for setup.php or config.php or something like this in the readme.txt).
    2. You will need to set absolute paths most likely to directories if the script will be doing any file writing. The absolute path is the full path from the server to the directory you are writing to. Something like this (shown in red/green):

    /home/usr/htdocs/datadir

    The RELATIVE path is the path from public or html portion of the directory (shown in green above):

    /datadir

    3. If the script utilyzes a mySQL database then you will need to create the tables associated with the mySQL database. If the script doesn't come with a helper table creation script then you can use telnet. There is instructions on how to use telnet to create a mySQL table in one of my prior diary entries: click here for 7-07-00 diary

    4. You will likely need to set UNIX permissions for any file/directory that the script must access. In doing so you should be given the permission settings in the readme file. If there is no readme then you might try the following:

    chmod 666 filename.txt (any file that needs to be read/written by the php script)
    chmod 777 DIRECTORY (any directory that needs to be read/written by the php script)

    5. If the script requires function froms php 4.0 and your version of php is less than 4+ then you will need to have your host compile php 4.0 on the server or rewrite the portions of the code calling those functions. You can check what version of PHP you are using by creating a simple test.php file with the following code:

    <? phpinfo(); ?>

    This will tell you a lot more than just what version of PHP you are running. Try it
    6. upload all scripts in ASCII mode. Binary can really mess up script source files, so look into your FTP editor settings and ensure you are using ASCII mode for any scripts you try to upload.
    7. Does the script require the GD library or other modules which are not included with the core php source? If the script does then these libraries must be compiled by your host (or you) prior to executing the script. Check the script readme documentation for more help on this.

    I think this hits the high points in doing a php install. Fortunately the parser should help you by explaining the errors when you try to run the script.

    Keep in mind that "parser error at line xxx" can be misleading. The error might actually be one or two lines off this parser error.
    Also if it is an open loop in the code, the parser error can show up at the very last line of code (this should never happen with code you download to install elsewhere, but leaving an open loop can happen in your own code development).
    it is easy to omit a semi-colon ( or closing quote (") in a variable assignment. Watch for these mistakes.
    Most script install errors are the fault of the wrong paths being assigned in the configuation. Learn what your paths are to the following directories by either contacting your host or reviewing other scripts installed on your server:

    1. absolute path to your cgi-bin
    2. absolute path to your www or public html directory
    3. absolute path to your NON public directory. Some scripts require loading password files and other secure files ABOVE the public directory for enhanced security from the web.

    Some scripts require you to use .htaccess to protect the admin areas. You can use telnet to create .htpasswd style files but if you don't have telnet access then I've created a little program that you can use for free to create an encrypted password file. You can find it at:

  6. #6
    Platinum Lifetime Member

    Join Date
    Mar 2005
    Posts
    73
    DNF$
    297
    Bank
    0
    Total DNF$
    297
    Donate  

    Re: Teach me how to install a script

    Thanks. Wow. a little overwhelmed with all the help. I love this forum!
    All PM's replied to.
    http://www.my-own.biz Own your own business
    http://www.teachjapanforum.com
    Teach English in Japan

  7. #7
    GreenFriendly.com
    biggedon's Avatar
    Join Date
    Sep 2002
    Location
    96.net
    Posts
    13,262
    Blog Entries
    1
    Country

    United States
    DNF$
    59,420
    Bank
    0
    Total DNF$
    59,420
    Donate  

    Re: Teach me how to install a script

    check out www.w3schools.com
    Need A SedoPro Account PM Me * nev.org * pmm.org * svc.net * ispoof.com * umm.org * sop.net * qfm.net * upyo.com * vioz.com * uce.org * wta.net * eoso.com * Coming Soon: Appraise.xxx

  8. #8
    DNF Member
    ChrisMacleod's Avatar
    Join Date
    Mar 2005
    Location
    Scotland, UK
    Posts
    217
    DNF$
    699
    Bank
    0
    Total DNF$
    699
    Donate  

    Re: Teach me how to install a script

    great site biggedon that will help alot of people on the forum incl me!

  9. #9
    Account Terminated
    Join Date
    Jul 2005
    Posts
    134
    DNF$
    708
    Bank
    0
    Total DNF$
    708
    Donate  

    Re: Teach me how to install a script

    No problem , if you need anything other guide, feel free to post here and i will paste the way.

  10. #10
    Gold Lifetime Member
    LuckYou's Avatar
    Join Date
    Jul 2005
    Posts
    72
    DNF$
    315
    Bank
    0
    Total DNF$
    315
    Donate  

    Re: Teach me how to install a script

    installation is easy...

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
  •  

Domain name forum recommended by Domaining.com