Jump to content

Install Question


Stevan

Recommended Posts

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]
Link to comment
Share on other sites

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)
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.