1
vote
1answer
11 views

sleeping connection (mysql) mcrypt

I have isolated some code within some other guys code which is causing our servers to grind to a halt. This occurs every time an mcrypt function is called. $iv = ($iv === false) ? ...
0
votes
2answers
25 views

Remote MySQL Server connection w/PHP

I need to connect to an external MySQL database and fetch some data. I have a few concerns about it: Connecting to a remote server will increase the loading time of the page, I want that to be the ...
0
votes
0answers
12 views

connecting to php flash builder error

I'm getting an error in flash Builder when I'm trying to connect to PHP either on my localhost or webhost that says "unable to connect to database using specified connection information" and at the ...
0
votes
2answers
24 views

pdo connection position in php class

I'm using PDO now and I have a number of classes. Every time I use a class, I don't always use its database-related functions. Sometimes I keep using a class until at the end I might do some work ...
-3
votes
2answers
51 views

PHP Database Connection File

I am trying to create a database connection file so that multiple pages will have a constant connection to the database. I am trying to understand why one set of code works as far as linking to the ...
0
votes
1answer
35 views

Connection to database

I am having trouble configuring my connection. I have a getConnection method that looks like this: protected function getConnection(){ $mysqli = new mysqli('xxxxxxxxx', 'xxxxxx', 'xxxxxx', ...
0
votes
0answers
24 views

Magento : MySQL server crash when “Copying to tmp table” process runs

We have around 8k products in our Magento store. The following query starts every 5 minutes and does not seem end. I have checked process chart and found this query running many times. When MySQL ...
7
votes
8answers
410 views

Design Patterns: How to create database object/connection only when needed?

I've a simple application, say it has some classes and an "extra" one that handles database requests. Currently i'm creating the database object everytime the app is used, but in some cases there's no ...
-1
votes
4answers
61 views

PHP insert query not working

<html> <body> <?php $host = 'localhost'; $user = 'users'; $pw = ''; $db = '#######'; $connect = mysql_connect($host,$user,$pw) or die ("Could ...
4
votes
1answer
45 views

Effect of internet speed on PHP/MySQL execution

In Wordpress my client is creating large galleries (300+/- images) and using the Wordpress uploader to reorder the images. This can be by filename, or numbers can be applied and sorted ...
-2
votes
4answers
51 views

Please help me to convert PDO from old mysql to this code [closed]

I am new to MySQL and PHP. I have been working on a project that's like some kind of blog. But I heard old MySQL is vulnerable or easily hackable. So I was suggested to use PDO. But I am confused how ...
0
votes
1answer
30 views

PDO Connections - max connections

I have the following class: <?php class Database { protected static $_instance; protected $_connection; protected $_dbhost=DB_HOST; protected $_dbname=DB_DBNAME; protected ...
0
votes
2answers
52 views

Is is possible to submit data to a database without using PHP?

I'm working in a third-party platform that doesn't allow PHP but I still need to submit information from a form into a database. So I need a way to submit data to the database without PHP. Is this ...
1
vote
1answer
50 views

PHP retrieving content of database

I have a database with a few tables in it. The table i'm working on has 6 columns in it, school_id, title, location, content, class_date and user_id The school_id is unique (ranging from 1-20) and ...
0
votes
3answers
55 views

Why won't my php file insert data into my mysql database?

I have been having trouble getting my PHP file to insert data into my database. I have gone so far as making one simple script to put data into my database and it still isn't working. I'm hoping ...
0
votes
1answer
70 views

PHP Webmatrix SQL Server Database Connection

How can I connect to MS SQL Server in PHP using Webmatrix 2? I already have an active connection in my Databases and is already in my web.config file. In C# the sample Code is: var db = ...
1
vote
1answer
47 views

Xeround Reliability

I recently scaled up my application which uses a C#/.NET front-end and PHP scripts as web-crawlers as a back-end. Both sides of my application interact with a Xeround MySQL database (I am currently ...
-1
votes
1answer
51 views

Why am I getting errors in a forum code? [closed]

I'm on heliohost.org, I got a forum code from http://www.phpeasystep.com/phptu/12.html and when I add the code: ############### Code <?php $host="localhost"; // Host name $username="MY ...
0
votes
0answers
71 views

Connect to database in android

I used the login code to login through simple android application , I've created mydatabase also created the whole java classes needed and the xml files, the result always gives me "Invalid username ...
1
vote
2answers
125 views

PHP - Connect to two databases simultaneously on same server using ADBDB

Is it possible to open connections to two schemas on the same server using PHP 5.3/ADODB5/SQL Server 2008? Here's what I'm trying: // Connect to users database $connUsers = ...
0
votes
2answers
98 views

Avoiding use of a global database handler variable in PHP, to someone who is new to object-oriented PHP?

FIRSTLY: This question is not a duplicate. Here's why. My previous question on the topic was closed as a duplicate of this (of all things). That was not in the least bit helpful whatsoever - I didn't ...
1
vote
0answers
45 views

Avoiding use of a global database handler variable in PHP, to someone who is new to OOP? [duplicate]

EDIT: This question is not a duplicate. Here's why. None of those answers were in the least bit helpful because I completely new to OOP - I need an answer tailored to my level of understanding. Just ...
2
votes
0answers
60 views

How to resolve the issue in database connectivity in PHP? [closed]

I tried running wampserver from USB drive. I used Uniform Server for it. Now it's up and running from USB, but giving problem in database connectivity giving error "Error in Connection". I couldn't ...
0
votes
1answer
87 views

Database class, a data access object can't use a method of the database class

I created database class and a database access object so I can somehow Implement a value object pattern. Here is some part of the database class and it's function: class Database { protected ...
0
votes
2answers
76 views

PHP: Close mysql connection when using external connection file

So most basic php/mysql examples show something like this (taken from W3 Schools as a laymans example): <?php $con=mysqli_connect("example.com","peter","abc123","my_db"); // Check connection if ...
0
votes
1answer
79 views

Unable to connect to my database server using the provided settings

I got this error after i created my DB "Unable to connect to my database server using the provided settings" Here is code.... * Database Loader public function database($params = '', $return = ...
0
votes
2answers
99 views

How to connect to MS SQL using PHP?

I have a PHP script that uses the following code: $con = mssql_connect('192.168.152.2\webservice','sa','p@$$w0rd') or die('Could not connect to database server'); mssql_select_db('mydatabase') ...
3
votes
2answers
139 views

Multiple mysql_connect statements canceling each other out

I am trying to code an ajax chat application using php and my sql. I have a file called connect.php that looks like this: mysql_connect("host", "username", "password"); mysql_select_db("database ...
0
votes
3answers
73 views

Does PHP close SQL connections opened with PDO at the end of the script if I don't explicitly close it?

I know I can close a PDO SQL connection setting the handler to NULL. But if I don't do that, does PHP close the connection at the end of the script? Fore example, can I use $db = new ...
0
votes
5answers
80 views

Will mysql_fetch_row ever face connection errors?

mysql_fetch_row returns an array when there are results, or false when there are no more rows. But what's the expected behavior when a connection-related error occured while running the command? Or ...
1
vote
1answer
157 views

Oracle Connection Error in PHP. Fatal error: Call to undefined function oci_connect()

I am working on this project where i need to connect to the Oracle database. I am using the latest version of WAMP 2.2 and also activated all the extensions related the Oracle in PHP extensions. I ...
7
votes
2answers
267 views

symfony2 - using multiple connections in a repository or class

I have multiple connections and I have a repository class. I would like the repository class to have access to the multiple connections. Its for a report that requires fetching data from multiple ...
-2
votes
2answers
46 views

Should I limit the size of database? [closed]

I know that the size of a database depends on the server it is running on and I know that facebook uses MySQL. But lets say after 1,000 users, you wanted to have the next 1,000 users stored on another ...
0
votes
3answers
65 views

Saving secure files in PHP include folder

On the Apache Server it is possible to define a directory for PHP includes. The path to the include folder is out of root, and does not conflict with the server script. The reason why I think it is ...
3
votes
2answers
89 views

Fast database as an alternative to PHP array

I have an array containing my reference variables, and in my scripts I need to catch one variable or two. In the current system, I have to include the entire array (and its elements) to use one ...
-2
votes
2answers
55 views

New MySQL Database Connection Syntax Error [closed]

I'm trying to avoid using mysql_* as much ac possible after I kept getting told off on here! However, now I've changed my database connection script, I can't get it working. Is it a syntax thing? I ...
0
votes
1answer
475 views

Fatal error: Undefined class constant [duplicate]

So I'm trying to use this mysqli connection class (code below) but I am receiving the error message: Fatal error: Undefined class constant 'DBUSER' [...] I can't figure out why because I have set all ...
2
votes
1answer
121 views

When should I use mysqli_kill() and mysqli_close()?

I have my own database which I'm running using Xampp. I'm using the Apache and MySql services on it, though I given public access just yet. I would like to know the proper way to end a bunch of sql ...
2
votes
1answer
87 views

Can't connect to MySQL - missing stuff after power failure?

I'm trying to connect to an application. There was a power failure that corrupted the hard drive, and after taking a backup from it externally, I've managed to get the application back up. Looking at ...
1
vote
0answers
170 views

How should I call mysql database functions from inside a class in PHP?

This is something I've struggled with for some time now, and I know I'm not alone. I'm looking for a "best practice" way to be able to use a database connection in my PHP classes. I've just started to ...
0
votes
3answers
122 views

CodeIgniter with PHP Activerecord Spark Multiple Databases

So far I really enjoy how CodeIgniter plays together with PHP ActiveRecord ORM tool, How would I go about specifying which connection to use in my models? My config/database.php file has 2 ...
-1
votes
3answers
96 views

Not able to link mysql database with php [closed]

I am using mysql version Server version: 5.0.77 and php version PHP 5.1.6 (cli) (built: Nov 29 2010 16:47:37) My code is below: <?php $username="root"; $password=""; $hostname="localhost"; ...
2
votes
2answers
158 views

mysql_connect not working with php?

<?php $user="user"; $password="user"; #$database="database"; $con=mysql_connect("localhost",$user,$password); if(!con) { echo "could not connect" ; } else { echo "connected"; } ...
-1
votes
1answer
102 views

Cakephp 1.3 appfog database configuration

i just moving my blog to appfog. I am currently using cakephp 1.3.x. I know I need to upgrade, I am already working on it. But in the meantime, I would like to get my blog working. I am not able to ...
0
votes
2answers
154 views

Connecting to remote mySql database manually

I want to know how to connect to a MySql database in a remote server from windows 7 .I want to give an external connection from Administrative panel.How to give connection to the database ? I have a ...
0
votes
2answers
121 views

How to manage different programming languages in a web application [closed]

I am working on a web application and I would like to have your suggestions to better organize my work. Preface: 1) I am familiar with Java, php, JavaScript, MySQL, html, css. Before learn other ...
0
votes
1answer
121 views

LAMP max_connections, sleep processes, locked processes, wait timeout, out of memory

I'll try to be brief and still be complete. Thx in advance for those spending precious time pointing me to a possible solution. PHP/Mysql application on Ubuntu environment. Original Issue: Keep ...
2
votes
2answers
328 views

PDO connection : UTF-8 declaration with SET NAMES / CHARACTER SET?

According to php.net, StackOverflow and other sources of trust, I can find 4 different ways to set UTF-8 on PDO connection, but can't find wich one is the better to choose. A PDO connection code (and ...
1
vote
2answers
311 views

Remote MySQL Connection in PHP

I'm beginning to migrate a software project from being a desktop application to a web application. Currently I am using a local PHP/MySQL connection that is associated with the desktop it is installed ...
0
votes
0answers
36 views

I don't get error selecting a non created db in my .php, after uninstalling zend server, Mac.

Blockquote So i have now tried a few different local servers. I did not like zend server that much so i deleted it (drag the icon from Applications to the trashcan, but before that right clicked ...

1 2 3 4 5 6