5
[SOLVED]Can't enable mysql and mysqli extension in PHPview story

http://serverfault.com – I used to had my website hosted at a hosting company. But i decided to start my own webserver and in order to get phpBB, MediaWiki, etc. working i need PHP and MySQL. So after a bit of screwing around i could get those working but the MySQL and MySQLi extensions do not seem to work. When i use phpMyAdmin, phpBB, whatever it would say it is not installed correctly. (HowTos)

5
Akonadi Slows down KDE startup.view story

http://chakra-project.org – Chakra with systemd is very rock and solid. I'm running it from a flash usb install with ext4 journaled. Really an excellent job was done here, and system is fast wow... but...But Akonadi is a real problem to kde startup, it's my conclusion after a dramatic remove of all Akonadi libs in '/usr/libs/'. (HowTos)

5
linux ftp server with virtual usersview story

http://serverfault.com – i know there are already similar questions for this matter but the answers doesn't really make much sense to anyone who is not really technically comfortable in Linux. (HowTos)

5
Is there ever going to be something like XAMPP [closed]view story

http://askubuntu.com – XAMPP in Windows is a snap. Trying to LAMP working in Linux Mint is a real pain. Yes,I have tried most of the solutions such as creating a Virtual Machine, Vagrant, installing Apache, MySql,PHp, etc. even something called Moodle(if memory serves). I can get as far as opening a web browser and typing localhost which opens page that says It Works and it is all uphill beyond that point. (HowTos)

5
Restore mysql databases that is created using direct adminview story

http://serverfault.com – PS: I'm sorry my description is a bit long. I am just trying to give all the information. At first, I was not able to login to direct admin. I research on the web on what are the causes and found out that directadmin cannot make sessions when the disk is full. I check through ssh and found out that the root directory was indeed full. (HowTos)

5
Why won't my code work in Ubuntu Server 11.10? Is it because of gd library?view story

http://askubuntu.com – I get this error when running the following code: No such file found at "widgets/104-text.png" I know that the code works because it works on my other non-ubuntu server. I do not know if it is gd library or what. I tried both the bundled version and the non-bundled and both do not make this code work. (HowTos)

5
Problema de memoria en mysqlview story

http://forums.cpanel.net – Hola tengo el siguiente error: Your MySQL server is configured to use less than 64 megabytes of physical RAM, which may cause you to experience slow performance. Please consider raising this amount in your server's my.cnf file, or ask your system administrator or ISP to do so for you. (HowTos)

5
/etc/my.cnf optimizationview story

http://forums.cpanel.net – Hello, We have websites that are mainly php/mysql driven and website is getting good amount of traffic. Please suggest changes to improve the performance. Server Spec is: Intel Xeon CPU E3-1230 V2 @ 3.30GHz with 8GB of Ram Code: [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock max_allowed_packet=100M thread_stack=3M max_connections=600 max_user_connections=50 ft_min_word (HowTos)

5
Sql issue in shell scriptingview story

http://www.unix.com – HI friends , i am also facing an issue in mysql i ma trying to insert detail in a variable but not got success Code: #!/bin/sh mysql -u<username> -p<password> <dbname> << EOF DEV=`mysql --skip-column-names <dbname> -e "SELECT timestamp from process_record where id = 1"` EOF echo $DEV ERROR 1064 (42000) at line 1: You have an error in your SQL (HowTos)

5
Mysql++view story

http://www.unix.com – code: #include <mysql/mysql.h> #include <my_global.h> int main(int argc, char **argv) { MYSQL *conn; conn = mysql_init(NULL); mysql_real_connect(conn, "localhost", "zetcode", "passwd", "testdb", 0, NULL, 0); mysql_query(conn, "use vobd_db"); mysql_query(conn, "select * from obd_call_status limit 10") (HowTos)