i have a same problem. I have to upload some plugins (Page Builder , Woffice Poll) manually because of curl configuration.( i have the same issue with wp-admin plugin upload) But i dont know where am i upload it. am i upload the files wp-content/plugins or somewhere inside the unyson plugin.
sory for punctuation π
Plugin Author
Unyson
(@unyson)
You can install extensions manually, but you have to know their path (because some are nested) also some extensions require another extensions and anyway you will need to update them when we release updates, so you still need to install them from the admin page.
If you are familiar with git, you can install them all with [this bash script](https://gist.github.com/moldcraft/dceae5f6081f72cc1153)
Hi. I have a similar problem. I’m trying to download this requirement but it doesn’t work.
“Theme requirements not met: Page-builder extension is required
Install Extension
Downloading the “Builder” extension…
Failed to access Github repository “ThemeFuse/Unyson-Builder-Extension” releases.
Failed to access Github repository “ThemeFuse/Unyson-Builder-Extension” releases.
Return to Extensions page”
what could i do?
Plugin Author
Unyson
(@unyson)
try
fw_print(
file_get_contents(
'http://github-api-cache.unyson.io/repos/themefuse/unyson/releases'
)
);
where do I put this code?
Plugin Author
Unyson
(@unyson)
Put it in {theme}/functions.php
add_action('fw_init', function(){
fw_print(
file_get_contents(
'http://github-api-cache.unyson.io/repos/themefuse/unyson/releases'
)
);
});
nothing….doesn’t work. I’ve no idea.
Plugin Author
Unyson
(@unyson)
Please paste here the output of the above code.
Hi guys,
I’m having the same issue.
I can install locally, add the plugins to git, deploy to the live server. On the live server I can not download and install the page builder.
Feels like permissions.
on live.
– Apache is running as apache in the www group
– local user is ec2-user which is also in the www group
– html root and all files/folders underneath are owned by my local user (ec2-user), and the group is www
– wp_content and its sub folders/files, has its permissions set to 777 temporarily
The only thing I haven’t really checked is the wp_options table, I had a quick scan through but couldn’t see anything.
any tips?
thanks!!
Plugin Author
Unyson
(@unyson)
@paultheroyal can you update/install plugins on live?
Hi @unyson,
I finally managed to get plugins updating – still not a permission issue, but instead I had to add the following line to my wp-config.php
define(‘FS_METHOD’, ‘direct’);
thanks,