Apologies if this needs posting in a different forum, happy to move if so…
I work for a company that hosts 100’s of WordPress sites across multiple Linux servers – each instance can, and fairly frequently does, have a different combo of themes and plugins. This can make the upgrades (core, themes, plugins) and maintenance a nightmare. I’m pondering two solutions:
Many Thanks,
P
]]>I have a problem with the WP CLI.
I have detailed my issue here : https://github.com/wp-cli/wp-cli/issues/5456
I can’t use WP CLI, just wp –info or wp –debug, the others commands are not working and not producing any outputs. If you have any idea on how I could resolve that I listen you.
Thanks you
]]>i.e., I am looking for a bash script that will edit wp-config.php and make changes to it to turn on debugging.
]]>I’d like to run a bash script to do this but I can’t seem to get it to work. My code is:
#!/bin/bash
for i in "$@"
do
echo ""
echo "Starting: $i"
ssh -oStrictHostKeyChecking=accept-new "$i@$i.ssh.wpengine.net" 'wp import ~/sites/$i/import.xml --authors=skip; wp cache flush; exit;'
echo "Done with $i"
echo ""
done
I should be able to run this through terminal by using ./script.sh environment1 environment2 ...
but it does not work. It will display “starting import process” and exit with no confirmation.
Is there another way to do this I’m not aware of?
]]>The included link shows a number of shell sessons, where I chose the “bash” language. It looks really good, but I was wondering if it might look better with the “shell-sesson” language.
If there was an easy way that I could privately install the shell-sesson language to try it out first, I would happy to do so.
I am really liking how this plugin is working for me. I think that the addition of the shell-sesson might be the icing on the cake.
Best Regards,
George
We’ve purchased the pro plugin and it is awesome!
We have a special use case where we import Products via API calls and the Search results are not updated this way.
Could we please have a way to issue a manual re-index, preferebly using a curl/wget call? As a workaround, we have aws_reindex_table
set to hourly
with wp_schedule_event
, but we’d like to call it after the API has done its’ workings (once a day)
Cheers,
Gabor
Can you add the “bash” shell scripting language to the list of Languages to pick from? Also, it would be nice if there was a setting to change the default language (PHP) and the default Theme.
Currently, I am just using “PLAIN TEXT” as my language for my bash examples. It works ok, but their is no highlighting.
Thanks!
George
I’m trying to use a Pods settings page to do a number of things which includes populating a user’s role using WP CLI.
I almost have it working, but the problem is that the the [user role] relationship field returns the role’s ID, rather than the display name… The WP CLI commands [wp user set-role] and [wp user add-role] require the string (ie administrator), you cannot query against the role ID… Kind of bizarre.
I’ve looked at the functions that WP makes available, and it is the same situation:
https://codex.www.ads-software.com/Function_Reference/get_role
The get_role function requires the name of the role, and querying against the ID returns no result.
FYI, I’m using the [pods_api_post_save_pod_item] action and this PHP command in my functions.php file to retrieve the data:
$role_elevated = escapeshellarg($pieces[ ‘fields’ ][ ‘access_role_elevated’ ][ ‘value’ ]);
I then pass this and other variables into a bash shell script that executes WP CLI commands among other commands.
A work around I’m thinking of is simply defining my own custom defined list of roles. I was hoping I could take advantage of the automation offered by the relationship field though.
Appreciate any feedback that you can provide. Thanks!
Jake
]]>Thoughts?
]]>