Stevan Posted April 10, 2006 Share Posted April 10, 2006 I am trying to install a php script and there is nothing about what to use for install like /install or install.php or setup. I have tried to ciontact the developer email sends back. Can someone help me on this THXS STEVE Install instruction are here [a href=\"http://www.010soft.com/linkex/readme.html\" target=\"_blank\"]http://www.010soft.com/linkex/readme.html[/a] Quote Link to comment Share on other sites More sharing options...
shortj75 Posted April 11, 2006 Share Posted April 11, 2006 first go to /adm/connect_db.php change your info where it says $host,$user,$password and $database and save it second locate /sql/createdb.sql and copy and paste the code below over the code on the createdb.sql page and save it then rename the page to createdb.php if you donot do this when you open the page in your browser al you will see is text appear on the screen and nothing will install[code]<?include '../adm/connect_db.php';$sql="create table exchange_links ( id int(11) NOT NULL auto_increment, code text, email varchar(255), back_link varchar(255), website_url varchar(255), name varchar(255), category INT, quand BIGINT, state CHAR(1), last_checked BIGINT, check_result CHAR(1), attempts INT, dont_check CHAR(1), edit_key CHAR(10), PRIMARY KEY (id), INDEX(category))";mysql_query($sql) or die(mysql_error());print "install complete";?>[/code]after that is done open you browser (example: Internet explorer or Mozilla or Opera) and run this [a href=\"http://HTTP://Yoursite.com/sql/createdb.sql\" target=\"_blank\"]HTTP://Yoursite.com/sql/createdb.php[/a] and you installation is complete or it will give you an error telling you you that it didnt install and what to fix( I had to download the script to figure this out hopfully this helps) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.