Tagged Questions
2
votes
2answers
57 views
Accessing PHPMyAdmin via URL (without cPanel)
I am having issues accessing PHPMyAdmin from cPanel. It will not allow me to as I am logged in a root.
I cannot seem to be able to make another account for cPanel either, and research indicates this ...
2
votes
1answer
80 views
Trouble creating new MySQL user/database with PHPMyAdmin
I did a brand new install of PHPMyAdmin and I managed to get it set up a while ago with a single non-admin user and a database.
I now want to add a new user and new database. So, I went to the ...
1
vote
1answer
82 views
get mysql_real_escape is giving me errors when I try and add security to my website [closed]
I tried doing this:
@ $db = new myConnectDB();
$beerName = mysql_real_escape_string($beerName);
$beerID = mysql_real_escape_string($beerID);
$brewery = mysql_real_escape_string($brewery);
$style = ...
-1
votes
1answer
67 views
displaying a list of files [closed]
In my web application I have the user sign up for an account, then the account data is saved in a mysql database. The user can then go to "index.php" and log in with their credentials. My application ...
2
votes
2answers
173 views
2 Websites, 1 Database
I have 2 websites and would like to use the same database for both sites.
The MySQL database contains just a simple guestbook.
The websites are one seperate hosting accounts, but with the same host.
...
0
votes
1answer
704 views
Auto-Complete Search + SQL [closed]
I'm trying to build a auto-complete search for an internal Workflow-system builded in php and SQL. Do you know were can I find any pre-builded code or any help-material?
Many thanks in advance!
3
votes
2answers
346 views
How do I disable username prefixes on mySQL databases?
I know of the potential risks.
The only "useful" thing I've been able to find after Google-ing is this, on the cPanel website, which has no context whatsoever.
Does anyone know how to do this?
My ...
0
votes
1answer
276 views
What database engine should I use? [closed]
I don't know if this is the right place to ask this question but I want to become a web programmer for my occupation very soon. I actually went to a store known a PC WORLD in the UK where my laptop ...
3
votes
2answers
583 views
Remote database connections in mysql and php is it possible?
I need to know whether remote database connections are possible in every server? does every host provides the option for remote DB connection? and further this connection will be the second connection ...
1
vote
4answers
683 views
MySQL Online Database
Can anyone suggest a good online free MySQL database. I've tried four till now:
db4free FreeMySQL onPhP 000webhost
Either of them gave me an timeout error on my connect file or actively restricted ...
4
votes
1answer
344 views
Performance : Auto Complete Search for a large amount of data?
I have a table(mysql) containing around 20,000 records and I am trying to build a auto complete search box for my website. Someone told me that auto-complete search for such a large number of records ...
5
votes
4answers
315 views
What database use for huge servers?
Suppose I had a HUGE website (which I don't, but let's suppose), the common MySQL on a single server wouldn't work, because the MySQL server wouldn't be able to handle thousands of requests per second ...
3
votes
4answers
218 views
Why do some hosting companies restrict the allowed characters in DB names?
GoDaddy allows nothing but letters and numbers in database names. Other hosting companies have similar restrictions. Could there be any technical motivation behind this?
1
vote
1answer
536 views
MySQL, SQLServer, Oracle, Postgree, CouchDB, MongoDB, Cassandra or SQLite? [closed]
Who database engine is better, in performance and usability?
3
votes
3answers
499 views
Storing User-uploaded Images
What is the usual practice for handling user uploaded photos and storing them on the database and server?
For a user profile image:
After receiving the image file from user, rename file to ...