torracolloms
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
The reason seems to be that the plugin installation from the command line doesn’t creates the tables on the database (wp_flag_album, wp_flag_comments, wp_flag_gallery, wp_flag_pictures) and this must be done manually on the Dashboard deactivating and activating the plugin.
Could you please standardize the way the plugin is installed?
- This reply was modified 4 years, 10 months ago by torracolloms.
Nope! There is no other plugin or theme installed
The following will help you to reproduce it.
—cd ~ sudo rm -rf /var/www/wp sudo mkdir -p /var/www/wp sudo chmod 0777 /var/www/wp cd /var/www/wp mysql -u### -p### -e "DROP DATABASE IF EXISTS my_dbname; CREATE DATABASE my_dbname CHARACTER SET utf8; GRANT ALL PRIVILEGES ON my_dbname.* TO 'my_dbuser'@'localhost' IDENTIFIED BY 'secret'; GRANT ALL PRIVILEGES ON my_dbname.* TO 'my_dbuser'@'%' IDENTIFIED BY 'secret'; FLUSH PRIVILEGES; SHOW DATABASES; QUIT" wp core download --version=5.4.1 wp db drop --yes wp db create wp config create \ --dbname=my_dbname \ --dbuser=my_dbuser \ --dbpass=secret \ --dbhost=localhost wp core install \ --url=https://wp \ --title=my_title \ --admin_user=admin \ --admin_password=admin \ [email protected] \ --skip-email sudo find /var/www/wp -exec chown www-data:www-data {} \; sudo find /var/www/wp -exec chmod 777 {} \; # this is of course overkill wp plugin install flash-album-gallery --activate
—
https://wp/wp-admin/admin.php?page=flag-manage-gallery
New Gallery=abc
Add Gallery
—
No Gallery appears in the Gallery Overview- This reply was modified 4 years, 10 months ago by torracolloms.
Viewing 2 replies - 1 through 2 (of 2 total)