It appears you have not yet registered with our community. To register please click here...

DNforum.com - Domain Sales, Domain Forum, Domain Appraisals
 
Register Now!
Register Now for FREE!
Our records show you have not yet registered to our forums. To sign up for your FREE account INSTANTLY fill out the form below!

Username: Password: Confirm Password: E-Mail: Confirm E-Mail:  
Birthday:       I agree to forum rules 

Go Back   DNForum - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars > Gold Forums > Help Wanted!
Reply
 
LinkBack Thread Tools Display Modes
Old 07-21-2005, 11:51 PM   #1 (permalink)
Platinum Lifetime Member
 
Last Online: 03-10-2007 08:40 AM
iTrader: (0)
Join Date: Mar 2005
Posts: 73
DNF$: 207


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
patsensei is offline   Reply With Quote
Sponsored Links
Old 07-22-2005, 12:05 AM   #2 (permalink)
Platinum Lifetime Member
 
Last Online: 04-18-2008 06:49 PM
iTrader: (11)
Join Date: Jun 2005
Posts: 524
DNF$: 2,486


Re: Teach me how to install a script

i pmed u
my msn is admin@apkafuture.com
__________________
Bookmark!
unknowngiver is offline   Reply With Quote
Old 07-22-2005, 12:09 AM   #3 (permalink)
Platinum Lifetime Member
 
Last Online: 10-14-2008 06:30 PM
iTrader: (61)
Join Date: Jan 2005
Posts: 1,010
DNF$: 0
Location: USA
Country:


Re: Teach me how to install a script

I sent you a PM aswell
Kishin is offline   Reply With Quote
Old 07-22-2005, 12:45 AM   #4 (permalink)
Gold Lifetime Member
 
TvDomain's Avatar
 
Last Online: 11-07-2008 12:42 AM
iTrader: (2)
Join Date: Jul 2005
Posts: 49
DNF$: 110
Location: USA


Re: Teach me how to install a script

pm sent
TvDomain is offline   Reply With Quote
Old 07-22-2005, 04:13 AM   #5 (permalink)
Account Terminated
 
Last Online: 08-19-2005 10:43 AM
iTrader: (1)
Join Date: Jul 2005
Posts: 134
DNF$: 198


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:
blindchild is offline   Reply With Quote
Old 07-22-2005, 10:39 AM   #6 (permalink)
Platinum Lifetime Member
 
Last Online: 03-10-2007 08:40 AM
iTrader: (0)
Join Date: Mar 2005
Posts: 73
DNF$: 207


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
patsensei is offline   Reply With Quote
Old 07-22-2005, 10:41 AM   #7 (permalink)
Domain Whiz
 
biggedon's Avatar
 
Last Online: Today 12:25 PM
iTrader: (106)
Join Date: Sep 2002
Posts: 8,408
DNF$: 35,554
Location: 96.net


Re: Teach me how to install a script

check out www.w3schools.com
__________________
worldiptv.com * greenfriendly.com * svc.net * belisted.com
mobi.us.com * sop.net * qfm.net * vioz.com *
Need A SedoPro Account PM Me
biggedon is offline   Reply With Quote
Old 07-22-2005, 11:11 AM   #8 (permalink)
DNF Member
 
ChrisMacleod's Avatar
 
Name: Chris Macleod
Last Online: 10-15-2008 04:42 AM
iTrader: (21)
Join Date: Mar 2005
Posts: 217
DNF$: 531
Location: Scotland, UK
Country:


Re: Teach me how to install a script

great site biggedon that will help alot of people on the forum incl me!
ChrisMacleod is offline   Reply With Quote
Old 07-22-2005, 11:40 AM   #9 (permalink)
Account Terminated
 
Last Online: 08-19-2005 10:43 AM
iTrader: (1)
Join Date: Jul 2005
Posts: 134
DNF$: 198


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.
blindchild is offline   Reply With Quote
Old 07-25-2005, 08:27 AM   #10 (permalink)
Gold Lifetime Member
 
LuckYou's Avatar
 
Last Online: 10-11-2006 08:45 PM
iTrader: (0)
Join Date: Jul 2005
Posts: 72
DNF$: 130


Re: Teach me how to install a script

installation is easy...
LuckYou is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 01:30 PM.
Copyright @2001-2008 DNForum.com

Learn Domains
Promote Domains
Research Domains
Buy Domains
Resell Domains
Park Domains
Sell Domains
Build Domains
Host Domains
Trademark Domains
Domain Domains
manage Domains
Appraise Domains