Hi,

I'm running a bitnami LAMPstack in AWS and I followed the instructions to install the WordPress module from bitnami. I've done so because I want to install more modules in the same stack, so I believe it is the correct approach. During the installation procss I've selected the DEVELOPMENT option.

Now I want to be able to install and update plugins. As far as I know, vsftp is already installed with the LAMPstack AMI, so I don't have to install it.

The problem is that when I try to update or install plugins, WordPress keeps asking for FTP credentials. I have not been able to find in the official documentation which is the correct method to update and install plugins.

My wp-config.php file is configured like this:

define('FS_METHOD', 'ftpext');
define('FTP_BASE', '/opt/bitnami/apps/wordpress/htdocs/');
define('FTP_USER', 'user');
define('FTP_PASS', '******');
define('FTP_HOST', '127.0.0.1');
define('FTP_SSL', false);

What should I do? :

  1. Configure wp-config.php and set FTP-USER and FTP-PASS to be able to update files? I tried that and it did not work.
  2. Open the port 21 in the Security Group associated to the AMI?
  3. Other options?

asked 07 May '12, 06:16

bitnast's gravatar image

bitnast
6224
accept rate: 0%

edited 07 May '12, 06:47


The configuration is correct. Did you configured the bitnami user password in the machine? Try the following:

$ sudo su
# passwd bitnami

Once you changed it, you can configure it in the wp-config.php file. It is not necessary to open the 21 port in the firewall (I would not recommend it).

link

answered 07 May '12, 17:51

Beltran%20Rueda's gravatar image

Beltran Rueda ♦♦
11.0k81548
accept rate: 24%

It works after a fresh installation.

(08 May '12, 10:41) bitnast

Great! I'm glad to hear that.

(09 May '12, 06:14) Beltran Rueda ♦♦
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×357
×27
×23
×22

Asked: 07 May '12, 06:16

Seen: 680 times

Last updated: 09 May '12, 06:14

powered by BitNami OSQA