Comments on: How to install Pimcore on Ubuntu https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/ Premium Linux Tutorials Since 2001 Fri, 03 Jun 2022 08:43:45 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: Arnaud https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-46095 Sat, 16 Sep 2017 17:26:53 +0000 https://www.rosehosting.com/blog/?p=18709#comment-46095 If you are experiencing this error ”startup.js?_dc=3744:764 Uncaught TypeError: pimcore.registerNS is not a function”
All you have to do is clear your pimcore cache by running the following:
php pimcore/cli/console.php cache:clear

]]>
By: admin https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-45514 Tue, 14 Mar 2017 09:05:22 +0000 https://www.rosehosting.com/blog/?p=18709#comment-45514 In reply to shofer.

Our tutorial is tested and working without a problem. Have you made sure that you’ve followed the instructions correctly?
You can try doing all of the described steps again and be more careful or check the log files for more information about the problem.

]]>
By: shofer https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-45512 Tue, 14 Mar 2017 06:51:21 +0000 https://www.rosehosting.com/blog/?p=18709#comment-45512 @admin
@gladtobehere

I had the same problem with
”startup.js?_dc=3744:764 Uncaught TypeError: pimcore.registerNS is not a function”

the error is in

location / {
try_files $uri $uri/ /index.php$args;
}

you can change it to

location / {
try_files $uri $uri/ /index.php$is_args$args;
}

or have a look to the official configuration for nginx/pimcore
https://www.pimcore.org/docs/latest/Installation_and_Upgrade/System_Setup_and_Hosting/Nginx_Configuration.html

GET params where not passed correctly to PHP

]]>
By: admin https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-44666 Fri, 15 Apr 2016 16:30:25 +0000 https://www.rosehosting.com/blog/?p=18709#comment-44666 In reply to gladtobehere.

Please check the Pimcore log file for more information about the problem.

Visit the official wiki at https://www.pimcore.org/wiki/display/PIMCORE/Logging about Pimcore’s logging.

Thanks.

]]>
By: gladtobehere https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-44663 Fri, 15 Apr 2016 12:47:13 +0000 https://www.rosehosting.com/blog/?p=18709#comment-44663 In reply to admin.

Hi, thanks for your reply, I managed to install pimcore but right after logging in I get a white screen. Is that a permission issue? the console window shows a javascript error : ”startup.js?_dc=3744:764 Uncaught TypeError: pimcore.registerNS is not a function”

]]>
By: admin https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-44656 Wed, 13 Apr 2016 05:41:30 +0000 https://www.rosehosting.com/blog/?p=18709#comment-44656 In reply to gladtobehere.

1. Nginx doesn’t support .htaccess files. Use your rules inside Nginx configuration.
2. Use the same reference as defined in /etc/php5/fpm/pool.d/your_user.conf

]]>
By: gladtobehere https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-44652 Tue, 12 Apr 2016 14:56:34 +0000 https://www.rosehosting.com/blog/?p=18709#comment-44652 In reply to admin.

Hi, thanks for your reply. I have one more question if I may, what about the /nginx/conf.d directory, should there be a .htaccess file as well? and does the reference to the php5-fpm socket file have to be “php5-fpm.sock” or “php-fpm.sock” ?

Thanks!

]]>
By: admin https://www.rosehosting.com/blog/install-pimcore-on-ubuntu/#comment-44648 Fri, 08 Apr 2016 08:23:39 +0000 https://www.rosehosting.com/blog/?p=18709#comment-44648 In reply to gladtobehere.

server_name is the domain you’ll be using for your site.

Example
server_name example.com www.example.com;

]]>