In video at 5:20ish considerations for multisite plugin is discussed.
I hope this can push things to a full featured plugin.
Great work on the recent restyle backend. One thought…. chatbot – log – review is a lot of clicks before you get to the action. Maybe the log could display in Chat Dashboard as a constant reminder to check what people ask and how it answers…. Will training get lost in case of theme update? Will it get lost in case of model update from same provider and will it get lost in case of new provider, new model?
Ex: Switch Gemini 1.5 to 2.0
Ex: Switch Gemini 1.5 to OpenAI 3.5
]]>I am trying to share galleries between two or more sites in a multisite network. With the Network Media Library plugin, I have a global uploads library for all sites. However, I am forced to create identical galleries with uploads from the global library for each site. Is there a way to create a global gallery store or share specific galleries between sites?
]]>Firstly, I’m wondering if this developer is still here?? There hasn’t been much happening for a while.
My issue:
I have LOVED this plugin for a few years and will continue to donate occasionally, and I’m not using it on a multisite installation for the first time.
I’ve discovered the Sync Source and Sync Pull facility which sounds amazing in theory, but I’ve sadly discovered that it isn’t functioning consistently.
I’ve embedded a video URL in a help document and on other sites, this video link isn’t displayed. On others, it is
If I go to settings on those sites and do a manual Save, the syncing doesn’t update. I’ve also added additional help documents, and they also don’t sync on manual save.
I’d love any insight the developer might be able to share please. Is there some fault finding info I can assist with?
Thanks
]]>could you please let us know whether your plugin support multisite?
]]>I believe your plugin supports multisite functionality. I was using it to identify unwanted media files on one of my subsites, and everything worked fine until I tried to delete all flagged files. When I attempt to delete them, the plugin shows a loading animation, but the files aren’t actually removed.
I’ve verified that file permissions aren’t an issue—manually deleting a file from the media library worked without any problems. Could you please let me know if there’s any configuration I might be missing? (I haven’t changed any default settings.) Alternatively, could this be related to multisite support compatibility?
]]>Fatal error: Uncaught TypeError: get_class(): Argument #1 ($object) must be of type object, int given in /var/www/wp-content/plugins/events-manager/classes/em-events.php:257
This is in the delete method that is expected to receive an array of event_ids or EM_Events objects, however when the line 257 conditional check receives an array of ids and calls get_class (which expects its only parameter to be an object) it causes a fatal error.
I changed this line from:
if( !empty($array) && @get_class(current($array)) != 'EM_Event' ){
to:
if( !empty($array) && is_numeric(current($array))){
This fixes the problem, however I’m hoping this or another solution can be integrated into future updates so that this can be fixed permanently.
]]>I’ve made a few tests and could not get it to work with WordPress multisite. The attributes box simply doesn’t show. It works fine with another site with the same plugins that doesn’t use multisite.
It’s not a unfiltered_html permissions issue, because in this site administrators do have that permission enabled.
Is this limitation something you have identified? Does it has a solution?
All the best and thank you very much.
]]>Hello all,
I'm trying to migrate to multisite, but am getting a server error. There is no log file under the wp-content directory even though I added the following to the wp-config.php:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
For starters, I added the following line to wp-config.php:
define('WP_ALLOW_MULTISITE', true);
Then, I went through the UI to Tools->Network Setup and did exactly what was listed.
I added the following lines to wp-config.php:
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
define( 'DOMAIN_CURRENT_SITE', 'mysite.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
Then, I changed the contents of .htaccess to:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
</IfModule>
I'm not entirely sure if the code should be within the if tags, but I've played with removing them. That did not make a difference.
I tried to load the site. I received the following:
Error: Server Error
The server encountered a temporary error and could not complete your request.
Please try again in 30 seconds.
Needless to say, waiting 30 seconds did not fix the issue.
I, then, combed through the database. I ran the following SQL stmts, but wound up making no changes, because I believe the result sets were correct:
select option_value from wp_options where option_name='siteurl';
https://mysite.com
select option_value from wp_options where option_name='home';
https://mysite.com
select domain from wp_site;
mysite.com
select meta_value from wp_sitemeta where meta_key='siteurl';
https://mysite.com/
select domain from wp_blogs;
mysite.com
I, then, double-checked to make sure that WP_HOME and WP_SITEURL are not defined in the wp-config.php. They were not defined.
I've even tried restarting the Apache server, even though I'm sure it's not needed. I ran the following:
sudo systemctl restart apache2.service
What have I missed? And why can I not find the log file?
]]>