Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:

- name: run tests
env:
TAWK_PROPERTY_ID: ${{ secrets.TAWK_PROPERTY_ID }}
TAWK_WIDGET_ID: ${{ secrets.TAWK_WIDGET_ID }}
TAWK_PROPERTY_ID: 61efb9abb9e4e21181bbc347
TAWK_WIDGET_ID: 1fq86qic0
TAWK_USERNAME: ${{ secrets.TAWK_USERNAME }}
TAWK_PASSWORD: ${{ secrets.TAWK_PASSWORD }}
run: composer run test
3 changes: 2 additions & 1 deletion tawkto/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: tawkto
Tags: tawk,tawk.to,tawkto,chat,free chat,livechat,chat widget,plugin,chat for web,chat online,chat software,free live chat,IM Chat,,live chat,live support,live web chat,online chat,online support,snapengage,wordpress chat,wordpress live chat
Requires at least: 2.7
Requires PHP: 5.6
Tested up to: 5.8
Tested up to: 5.9
Stable tag: 0.7.0

(OFFICIAL tawk.to plugin) Instantly chat with visitors on your website with the free tawk.to chat widget.
Expand Down Expand Up @@ -71,6 +71,7 @@ Note: You will need a free tawk.to account: [Create one for free here!](https://

= 0.7.0 =
* Enhanced URL pattern matching.
* Supported version bump 5.9.

= 0.6.0 =
* **Security Update** Add CSRF tokens and specific action access checks.
Expand Down
18 changes: 17 additions & 1 deletion tests/docker/build/files/build-wordpress.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,24 @@ if [ $FAILED -gt 0 ]; then
exit 1;
fi

# Run wp cli setup commands
# Finish WordPress installation
wp core install --path="/var/www/html" --url=http://${WEB_HOST} --title="Local Wordpress By Docker" --admin_user=${WORDPRESS_ADMIN_USER} --admin_password=${WORDPRESS_ADMIN_PASSWORD} --admin_email=${WORDPRESS_ADMIN_EMAIL} && \

# If you see “Error: Another update is currently in progress.”,
# you may need to run wp option delete core_updater.lock after
# verifying another update isn’t actually running.
#
# From https://developer.wordpress.org/cli/commands/core/update/
wp option delete core_updater.lock;

# Update to latest WordPress version
# This does a version check before proceeding to update.
wp core update;

# Print current WordPress version
wp core version;

# Run wp cli setup commands
wp rewrite structure /%postname%/ && \
wp term create category Category-A --description="Category A" && \
wp term create category Category-B --description="Category B" && \
Expand Down