Can't Deploy Dataset Error

MPG provides a library of templates that you can import and start editing to suit your needs. However, sometimes you might encounter an error like this:

๐Ÿ“Note: If you are using shared hosting, it may not be possible to modify the php.ini file as suggested in this article. In such cases, an alternative approach via cPanel might be necessary. If you encounter difficulties or uncertainties regarding the method, it is advisable to seek guidance from your hosting provider.

This issue is related to the server configuration, and it can be solved easily by enabling the allow_url_fopen,  which allows you to write scripts that treat remote files as if they are local. To do so, follow these steps:

1

Create a custom php.ini file on your website.

2

Open the php.ini file using a text editor.

3

Search for the allow_url_fopen line and toggle it on.

allow_url_fopen = on
4

To disable it, modify the allow_url_fopen line as follows:

allow_url_fopen = off

๐Ÿ“ Note: More information about enabling the allow_url_fopen can be found here.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us