PHP Warning: shell_exec() has been disabled for security reasons
To start shell command execution in php code you need to edit php.ini and remove "shell_exec" from disable_functions line. below is the example of line
disable_functions = show_source,system,shell_exec,proc_open
to
disable_functions = show_source,system,proc_open
After remove...
First check the repolist with below command.
# yum repolist
Loaded plugins: product-id, refresh-packagekit, security, subscription-managerThis system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.repolist: 0
Run below command to check your CD or ISO file mounted on you machine.
# mount |...
To Resolve this error you have to connect mysql with below command then you can able to run LOCAL INFILE command in mysql console or drupal.
# mysql --local-infile=1 -h rds-amazon-url.com -uroot -p
Now you can able to run LOCAL INFILE command in RDS.
#mysql>LOAD DATA LOCAL INFILE '/tmp/foo.txt' INTO TABLE foo COLUMNS TERMINATED BY '\t';
...
# php -S localhost:8000 -t /path/to/folder/directory
Above command give output like below
PHP 5.6.4-4ubuntu6 Development Server started at Thu Apr 30 15:10:00 2015
Listening on http://localhost:8000
Document root is /var/www/html
Press Ctrl-C to quit.
Now you can open the localhost:8000 in your browser to check the webpage...
Install apache2 Webserver with script for beginner
Find the script to install apache2 Webserver and php5 with php modules like cgi php5-mcrypt php5-mysql php-pear php5-gd php5-curl php5-cgi php5-cli php5-common php5-json php5-memcache php5-memcached
Click to Download Scri...
Install Apache by following command #sudo apt-get update #sudo apt-get install apache2-mpm-eventTo use PHP5-FPM with Apache, we need to install libapache2-mod-fastcgi module. The libapache2-mod-fastcgi module is not available in the Ubuntu package. Therefore, we need to update the apt sources. Follow these steps. ...