Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
After finishing all this, I’m getting an error when trying to attach a project and downloading plugins.
Update failed "ZipArchive::extractTo(): Permission denied" on line 71 of /var/www/html/vendor/october/rain/src/Filesystem/Zip.php
Looks like a permission issue? Thanks
I also get the same error, and I didn’t want to chmod anything I don’t have to.
Currently I get around it by running artisan to update octoberCMS.
php artisan plugin:install PLUGIN_NAME php artisan october:update
I keep getting issues with permissions using their. https://octobercms.com/docs/help/installation#wizard-installation
Can someone put a chmod command that would help me here?
root@blackpearl:/var/www/pro/wick# php artisan october:up
PHP Warning: require(/var/www/pro/wick/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /var/www/pro/wick/bootstrap/autoload.php on line 17
PHP Fatal error: require(): Failed opening required '/var/www/pro/wick/bootstrap/../vendor/autoload.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/pro/wick/bootstrap/autoload.php on line 17
root@blackpearl:/var/www/pro/wick# config_templates.inc.php
config_templates.inc.php: command not found
root@blackpearl:/var/www/pro/wick# php -f /common/configs/config_templates.inc.php
Could not open input file: /common/configs/config_templates.inc.php
hi …I got some error line like this… can some body help me …thanks
It is also good to mention, that after installation, you may want to update october through admin interface or install plugins. In order to do that, you have to give permissions to other folders and files.
I basically added permissions to all files inside html with :
sudo chmod -R 775 .
sudo chown -R root:www-data .
This may not be best practice, so maybe somebody could correct me…
… I also had problem with composer error - lack of memory, so I made a swapfile according to this tutorial on Discourse
hope this helps
first step, you need to fix locale.
example for en_US.
from root.
# export LANGUAGE=en_US.UTF-8;export LANG=en_US.UTF-8; export LC_ALL=en_US.UTF-8; locale-gen en_US.UTF-8; dpkg-reconfigure locales
\# reboot
Can someone PLEASE help with URL rewriting for Nginx? Each time I paste the following text in the “server” section of the ‘default’ file (found in /sites-available), Nginx fails to start. If I remove the text then Nginx starts up just fine:
location / { try_files $uri $uri/ /index.php$is_args$args; }
rewrite ^themes/./(layouts|pages|partials)/..htm /index.php break; rewrite ^bootstrap/.* /index.php break; rewrite ^config/.* /index.php break; rewrite ^vendor/.* /index.php break; rewrite ^storage/cms/.* /index.php break; rewrite ^storage/logs/.* /index.php break; rewrite ^storage/framework/.* /index.php break; rewrite ^storage/temp/protected/.* /index.php break; rewrite ^storage/app/uploads/protected/.* /index.php break;
Any ideas of exactly where it goes? I have my site installed in the default Nginx directory (/usr/share/nginx/html).
I installed octobercms on a virtual host and is working well after installation, but when I open http://october.app/backend link it displays a 404 error: “The requested URL /backend was not found on this server”.
My mod_rewrite is enabled, I changed to “AllowOverride All” in my virtual host and I uncommented the "RewriteBase / " in my .htaccess
Am I missing something? Can someone please help me?
This comment has been deleted