Tagged Questions

mysql_connect — Open a connection to a MySQL Server

learn more… | top users | synonyms

15
votes
2answers
95 views

MySQL credentials/hosts variables best practices

I want to know what is the best practice or what is recommended to do when a variables are created for MySQL credentials/host. define('HOST', 'localhost'); // etc.. mysql_connect(HOST, // ...
4
votes
4answers
91 views

Prevent Error on mysql_connect() - Access denied

I have this code snippet: $conn = mysql_connect($host, $usr, $pwd); How can I prevent PHP from printing an error message when MySQL access is denied? I need exactly this syntax but nothing works ...
4
votes
4answers
6k views

Windows 7 PHP MySQL Connection Issues

When I run $conn = mysql_connect($host, $user, $pass); I am able to get a connection to the database but when i do a var_dump($conn) I get back bool(true) which is limiting me from having multiple ...
4
votes
3answers
3k views

mysql_connect VS mysql_pconnect

I have this doubt, I've searched the web and the answers seem to be diversified. Is it better to use mysql_pconnect over mysql_connect when connecting to a database via PHP? I read that pconnect ...
3
votes
2answers
111 views

why would mysql_connect randomly not work?

I have mysql_connect running with no problem on my site... I have a script that i'm running from a CRON job, and here it decides to not work, and output these two errors: PHP Warning: PHP Startup: ...
3
votes
1answer
217 views

How long does a mysql_connect stay open?

I have a CLI script which when you first start it: function __construct(){$this->connectToDatabase();} protected function connectToDatabase(){ try{ $this->databaseName = ...
2
votes
1answer
154 views

Twisted web service - sql connection drops

I am working on a web service with Twisted that is responsible for calling up several packages I had previously used on the command line. The routines these packages handle were being prototyped on ...
2
votes
1answer
118 views

PHP: mysql_connect not returning FALSE

I have a form where the user enters their database information and can click a link that uses AJAX to send the credentials to this page. The problem I have is that as long as they enter the correct ...
2
votes
1answer
79 views

Drupal 4.7 Unable to connect to database server

This is strange, in Drupal 4.7 (a new install) I can get it to come up with a page that says "Unable to connect to database server" when I have not put in the DB connect information. This comes up in ...
2
votes
5answers
247 views

How declare a php variable to hold the return value of “mysql_connect()”?

I need to save the value of mysql_connect() in a global variable that's accessible in every php file in my project for example, $db_ServerVal = mysql_connect(). I need to be able to call ...
2
votes
4answers
343 views

mysql_connect timing out

I am trying to set up a PHP framework on my Mac 10.6 computer, and it keeps erroring during setup due to database connectivity issues. So I put together a small php script to see if I could connect to ...
2
votes
3answers
146 views

Why does mysql_connect break my .php?

I have the following code running on Apache 2.2 with PHP 5.3.3: <html> <body> <?php error_reporting(E_ALL); echo "Connecting..."; $conn = ...
2
votes
3answers
69 views

PHP MySQL problem

Whenever I try to run a php script on my website hosted by hostgator, I get this error: Warning: mysql_connect() [function.mysql-connect]: Unknown MySQL server host 'pieboy13_(user name)' (1) in ...
2
votes
3answers
2k views

php pconnect vs connect

if i have a script which insert a data then exit the script will be opened by 100 user at same time or within 2 mins actually im doing email tracking so pconnect is bettwe or connect is better to ...
1
vote
2answers
51 views

I'm doing a PHP login page taking posted vars and putting in mysql_connect params. Is it a bad practice?

first of all, thanks for your time. Like the subject says... i'm doing a login page, but every search send me to the same code: use posted user & pass connect to mysql search for the user & ...
1
vote
2answers
64 views

Whats wrong with my PHP include for database connection?

Im trying to move my database connection script to an external (and therefore more secure) file. However, it isnt working. Here my PHP page (with include link) <?php include ...
1
vote
1answer
78 views

How to safeguard my mysql_connect password (My database server's password)?

*This question is for NON-local host's. *I am using a web-host service. NOT my personal server. To use mysql_connect, to connect to a database's server, one needs to create a php file and save it in ...
1
vote
2answers
148 views

php mysql_connect resource is allways the same

I'm having a problem my php script witch you can see here: http://codepad.org/F0qhElRC Is not opening a new resource for each connection from a child. Already I tryed using 127.0.0.1 or my local ...
1
vote
1answer
179 views

How to know library is debug library or release?

I am using mysql cpp library . I checkout the recent copy from there bzr trunk and used cmake to generate library . First time I used release mode and second time I used debug mode to build. The ...
1
vote
4answers
3k views

PHP 5.3.3 mysql_connect doesn't work with localhost

This does not work with my PHP 5.3.3 installation on WAMP / Windows 7: mysql_connect('localhost', 'root', ''); After Maximum execution time, this error is presented: Warning: mysql_connect() ...
1
vote
2answers
238 views

mysql_connect taking long time to execute

i have following script in php to login to mysql $db_host="localhost"; $db_user="root"; $db_pass="123"; $dbc=mysql_connect($db_host,$db_user,$db_pass) OR DIE (mysql_error()); ...
1
vote
2answers
123 views

mysql_connect() is not getting to the correct server

I have a system with a globally open mysql connection to the local server. In one of my files I am opening an additional connection to a remote machine. Wieldly instead of trying to connect to that ...
1
vote
4answers
291 views

keeping db connection active across pages

I'm a learner. Is there a way to stay connected in to the mysql database as the user is taken to the next page. For example, the db connection is made, the user is logged in, and then goes to the ...
1
vote
4answers
1k views

Connecting to remote MySQL server using PHP

I am attempting to connect to a remote MySQL server from my local machine virtualhost using the following code: $conn = mysql_connect("$dbhost", "$dbuser", "$dbpass") or die(mysql_error()); ...
1
vote
1answer
966 views

Can't connect to mysql using Bitnami lamp stack through php

Ok, this will be a long question. I'm trying to get something up and running on my university account. We have a public_html folder that we can use as web space to host anything we want there. I've ...
1
vote
7answers
452 views

Browser crashes when about around 4 million records entered in MYSQL

I downloaded a database that was exported to the TXT format and has about 700MB with 7 million records (1 per line). I made a script to import the data to a mysql database, but when about 4 million ...
1
vote
3answers
658 views

MySQL database config in a seperate class

Is it possible to keep all my database related configuration (hostnames, usernames, passwords, and databases) as well as the function to connect to and select the correct database in a seperate class? ...
0
votes
1answer
56 views

MySQL DataConnections not closing/pooling

I am working on completely redeveloped website and sales system and have come up against this Max_connections issue surprisingly quickly. I posted this question: Closing/Pooling MySQL ODBC ...
0
votes
1answer
16 views

Could not Insert the data using VC++ in MYSQl database

am using MSvisual C++ 2008 and running the below code to insert the values to db.MYSQL server 5.1 is teh database. Could please let me know why its not inserting and let me know where was the ...
0
votes
1answer
74 views

I have installed WAMP Server on 192.168.1.104 System, How to connect MySql From other System Ex.: 192.168.1.5

Thanks in advance. I have Installed WAMP Server on System 4(192.168.1.104). I can Connect MySql DB from System 4 Local host. //Code: if (!mysql_connect('localhost','root', '')){ die('Could not ...
0
votes
1answer
46 views

Unable to establish MySQL database connection in local PHP testing environment

When I run the following page on my local development environment I'm getting a timeout error on the TCP connection. I've inherited this site recently from another developer. I've pulled all the files ...
0
votes
1answer
66 views

Workaround for MySQL 'mysql_connect()' error

I am getting the following error in MySQL Warning: mysql_connect(): Connecting to 3.22, 3.23 & 4.0 is not supported. How do I get around this? My conn code is currently (excerpt) : DEFINE ...
0
votes
3answers
45 views

getting an error message with a mysql_connect() statement

some comments preceding a mysql_connect statement are telling me to modify the values/variable name to my installation. I'm using xamp and looking in php.ini right now. don't really know where the ...
0
votes
1answer
806 views

Localhost (using xampp) connecting to a remote DB?

I've been trying to connect to a remote DB hosted elsewhere, not my my PC as localhost, but whenever I do (using the exact same password, host, etc as the live server), I get these errors: Warning: ...
0
votes
2answers
164 views

PHP mysql_connect vs Ubuntu mysql terminal use

I'm using PHP in order to connect to MySQL with the following way: $link = mysql_connect('...host...', '...username...', '...password...'); if (!$link) { die('Could not connect: ' . ...
0
votes
1answer
236 views

Changing the mysql.sock

I am new to codeigniter and i am installing this shopping cart that is written in codeigniter 2.0 and i have the database created and when i try to run i get this error An error #2 occurred in ...
0
votes
0answers
72 views

Mysql_pconnect alternatives

I need to fire insert mysql commands on my remote server, using mysql_connect works fine but takes 1 seconds to connect, using pconnect the existing connection is used and it takes around 0.5 second ...
0
votes
5answers
129 views

How do i use variables in an array within a function?

Config.php : $settings = array(); $settings['mysqlhost'] = 'localhost'; // Mysql hostname $settings['mysqluser'] = '**'; // Mysql username $settings['mysqlpass'] = '**'; // Mysql password ...
0
votes
2answers
245 views

LAMP settings – PHP and multiple DB connections with mysql_connect()

I was assigned to maintain prehistoric PHP application, which uses some 'phpDB' class written by Joe Thong, last updated in 1999. This application connects to two different databases on the same ...
0
votes
1answer
37 views

MySQL mysql_connect - errors sometimes?

I have released a version of the program I have been working on to a friend. He says he gets the following errors (two screen shots): The first screen shot is whenever my JSON page doesn't return ...
0
votes
1answer
498 views

Connect to mySQL over LAN

Hey all, i am having problems with connecting to a PC on my local LAN thats running the mySQL database. The code in VB6 i have is: .ConnectionString = "DRIVER={MySQL ODBC 5.1 ...
0
votes
5answers
151 views

What is the typical speed that PHP connects to MySQL?

Say I have very standard mysql connection code: $dbhost = '192.168.1.99'; $dbuser = 'dbuser'; $dbpass = 'dbuserpass'; $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die('Error connecting to ...
0
votes
3answers
372 views

Keep database connection open through ajax calls

I'm creating a debugging module that will allow the user to make single-line ajax calls while they are actively watching how the page changes. The problem is if the user is trying to make database ...
0
votes
3answers
353 views

Can't connect to MySQL Database in phpBB

I am trying to connect to a MySQL database using the mysql_connect() command however I keep getting the error message: Warning: mysql_connect() [function.mysql-connect]: [2002] A connection attempt ...
0
votes
0answers
146 views

Drupal strange problem with third mysql_connect - PHP

Whenever I add a third mysql_connect in the "Body" field the left sidebar disappears. Even if the connection is not used, just set, the sidebar disappears. I've looked at the HTML code from the ...
0
votes
1answer
551 views

mysql_pconnect(): send of 5 bytes failed with errno=32 Broken pipe

I've been using the same DB abstraction library for years. But today it started writing these Notice (8) messages in my log. The application is working correctly but every time a script connects to ...
0
votes
2answers
555 views

mysql connection closes after a certain time? (PHP)

I have a script that takes several minutes to execute. The mysql connection is established at the beginning (mysql_connect), then a loop with some queries follows (mysql_query). That loop lasts very ...
-1
votes
3answers
347 views

mysql_connect not working [closed]

mysql_connect is not working but mysql_iconnect is working. Please help. Thanks
-8
votes
2answers
192 views

PHP and MYSQL Forgoten Password [closed]

Im am now trying to make the forgotten password part, but when the users enters there username and password and then puts in there new password, it gives one of the errors which i have set, "Your ...