15
2014
Increase the max upload filesize in Apache/PHP
Have you ever experienced with this message when you implement File upload function in to you PHP code ” Error:The uploaded file exceeds the maximum allowed size in your PHP configuration file “ Your php installation putting limits on upload file size. The default will restrict you to a max 2 MB upload file size.
20
2013
How to Install Linux, Apache, MySQL, PHP on Ubuntu
Step One—Install Apache Apache is a free open source software which runs over 50% of the world’s web servers. To install apache, open terminal and type in these commands: sudo apt-get update sudo apt-get install apache2 That’s it. To check if Apache is installed, direct your browser to your server’s IP address (eg. http://12.34.56.789). The page should display the words “It works!” like this. How to Find your Server’s IP address You can run the following […]
20
2013
Install phpMyAdmin on Ubuntu Linux
The easiest way to install phpmyadmin is through apt-get: sudo apt-get install phpmyadmin During the installation, phpMyAdmin will walk you through a basic configuration. Once the process starts up, follow these steps: Select Apache2 for the server Choose YES when asked about whether to Configure the database for phpmyadmin with dbconfig-common Enter your MySQL password when prompted Enter the password that you want to use to log into phpmyadmin After the installation […]
20
2013
How to Check Apache Module and Enable Apache Modules?
We can use apache2ctl -M to the module that has been enabled on apache. Or if you have apache + PHP you can check it from phpinfo() function <?php echo phpinfo(); ?> What if you want to enable the module you can use a2enmod “The module name” for example “enable mod_rewrite” :: #a2enmod rewrite Then restart the apache service #/etc/init.d/apache2 restart or #service apache2 restart
22
2012
Installing PHP5 and Apache on Ubuntu
Installing PHP5 and Apache on Ubuntu If you are doing any kind of PHP development, you’ll almost always be using Apache along with it. Here’s the quick and easy way to get PHP up and running on your Ubuntu box. First, you’ll want to add the extra repositories to Ubuntu’s sources.list file. From a command shell, you will run the following commands: sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install libapache2-mod-php5 sudo […]
Recent Comments
- PHP + SSH Authentication using a public key on
- PHP + SSH Authentication using a public key on
- Australian Vodafone is getting ready to release Andriod ICS for Samsung GALAXY Note soon on
- Australian Vodafone is getting ready to release Andriod ICS for Samsung GALAXY Note soon on
- Australian Vodafone is getting ready to release Andriod ICS for Samsung GALAXY Note soon on
Tags
Categories
- Apache (1)
- Apple (4)
- Apple OSX (3)
- Applications (11)
- AWS (4)
- Brother (1)
- Bugzilla (1)
- Cisco (3)
- Cloud & Virtual Server (5)
- Commands (1)
- Computer (13)
- Data Backup and Recovery (2)
- Dell (1)
- ESXi (1)
- FTP Server (5)
- General Topic (5)
- Hacking (3)
- iPhone (1)
- Library (1)
- Linux and Unix – Scripts (1)
- Microsoft windows (2)
- Mobile (3)
- MySQL server (2)
- Networking (6)
- Operating System (8)
- PHP (10)
- Piohosting (1)
- Postfix (1)
- Printer (1)
- Projects (1)
- Router (1)
- S3 (1)
- Samsung (2)
- Security (4)
- Server applications (11)
- Switching (1)
- Tips (4)
- Uncategorized (4)
- Unix / Linux (14)
- Virus (2)
- VMware (1)
- vulnerability (1)
- Web Server (8)
- Wireless (1)
- Wordpress (3)