Results 1 to 8 of 8
-
24th Mar 2011, 06:59 PM #1OPMember
help required soon
hello i haven not access on my sql phpmyadmin how i can install wcddl table i mean how i can make install.php file and run in browser to install file on my sql i have sql server name username and password.But i have not cpanel to access the phpmyadmin.
csaskt Reviewed by csaskt on . help required soon hello i haven not access on my sql phpmyadmin how i can install wcddl table i mean how i can make install.php file and run in browser to install file on my sql i have sql server name username and password.But i have not cpanel to access the phpmyadmin. Rating: 5
-
25th Mar 2011, 04:47 AM #2Respected Member
If you do not have ssh or phpmyadmin I don't think you can create a database.
You will have to ask host to create one for you.
-
25th Mar 2011, 06:45 PM #3OPMember
i have database but i cannot access it i have username password sql server too but i cannot access to import i want to install.php file like phpbb forum to create a table.
-
25th Mar 2011, 06:56 PM #4Member
install.php file is not creating any database for you. it only populate the database with tables. you need to create a database first...
-
25th Mar 2011, 06:59 PM #5Banned
If you don't have phpmyadmin installed, install this script. It's like phpmyadmin but anyone can install it.
http://bearsql.org/
-
25th Mar 2011, 09:05 PM #6OPMember
my dear brother i also want to create only tables i have database password ,username and sql server name.i just want to create a tables on it for WCDDL.
-
26th Mar 2011, 01:44 AM #7MemberPHP Code:
<?php
include "funcs.php";
// Create table
$sql = mysql_query("
CREATE TABLE IF NOT EXISTS `wcddl_blacklist` (
`url` varchar(255) NOT NULL,
PRIMARY KEY (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `wcddl_config` (
`config_name` varchar(200) NOT NULL,
`config_val` text NOT NULL,
`config_group` varchar(30) NOT NULL default 'misc',
PRIMARY KEY (`config_name`),
KEY `config_group` (`config_group`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `wcddl_downloads` (
`id` int(11) NOT NULL auto_increment,
`sid` int(5) NOT NULL,
`title` varchar(200) NOT NULL,
`type` varchar(20) NOT NULL,
`url` text NOT NULL,
`dat` varchar(15) NOT NULL,
`views` int(5) NOT NULL,
`rating` int(5) NOT NULL,
PRIMARY KEY (`id`),
KEY `sid` (`sid`,`title`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `wcddl_queue` (
`id` int(11) NOT NULL auto_increment,
`sid` int(5) NOT NULL,
`title` varchar(200) NOT NULL,
`type` varchar(20) NOT NULL,
`url` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `wcddl_recents` (
`query` varchar(200) NOT NULL,
`searches` int(5) NOT NULL,
PRIMARY KEY (`query`),
KEY `searches` (`searches`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `wcddl_sites` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(200) NOT NULL,
`url` text NOT NULL,
`email` varchar(200) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `wcddl_whitelist` (
`url` varchar(255) NOT NULL,
PRIMARY KEY (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
");
?>
-
27th Mar 2011, 11:45 AM #8OPMember
thanks for reply jomasaco its not work but my webmaster import database.sql file in my databse.Now i am facing the site path problem i dont know my site path name
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
VPS required
By Itkraze in forum Hosting DiscussionReplies: 15Last Post: 20th Jan 2011, 06:12 AM -
VPS Required
By chems in forum Hosting DiscussionReplies: 11Last Post: 9th Jun 2010, 10:39 AM -
VPS Required
By max13 in forum Hosting DiscussionReplies: 13Last Post: 7th Jun 2010, 06:08 PM -
Help Required please
By MacLoving in forum Completed TransactionsReplies: 0Last Post: 25th Apr 2010, 02:43 PM -
PR1+ L.E required
By Rockstar in forum Traffic Market (Buy, Sell and Trade)Replies: 13Last Post: 17th Aug 2009, 09:56 AM
themaCreator - create posts from...
Version 3.22 released. Open older version (or...