Web Entwicklung: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== apache == /etc/php5/apache2/php.ini <source lang=""> error_reporting = E_ALL & ~E_DEPRECATED display_errors = On </source>“) |
F (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
== apache == | == apache == | ||
+ | Installation | ||
+ | <source lang="bash"> | ||
+ | apt-get install mysql-server mysql-client apache2 php5 php5-mysql libapache2-mod-php5 phpmyadmin | ||
+ | /usr/bin/mysqladmin -u root password 'enter-your-good-new-password-here' | ||
+ | /etc/init.d/apache2 restart | ||
+ | </source> | ||
+ | |||
/etc/php5/apache2/php.ini | /etc/php5/apache2/php.ini | ||
<source lang=""> | <source lang=""> | ||
Zeile 5: | Zeile 12: | ||
display_errors = On | display_errors = On | ||
</source> | </source> | ||
+ | |||
+ | * [http://wiki.debian.org/LaMp LaMp] |
Version vom 4. Juli 2013, 13:40 Uhr
apache
Installation
apt-get install mysql-server mysql-client apache2 php5 php5-mysql libapache2-mod-php5 phpmyadmin
/usr/bin/mysqladmin -u root password 'enter-your-good-new-password-here'
/etc/init.d/apache2 restart
/etc/php5/apache2/php.ini
error_reporting = E_ALL & ~E_DEPRECATED
display_errors = On