This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
Uncaught SyntaxError: Unexpected token <
Link to website: http://deadalushd.com/ (its not installed in a sub dir)
Logs: http://paste.deadalushd.com/paste/?paste=6
framework.js:10 Uncaught Error: The jQuery library is not loaded. The October CMS framework cannot be initialized.
framework.extras.js:23 Uncaught TypeError: Cannot read property 'oc' of undefined
System:
- Debian x64 OS Version 7 (Wheezy)
- nginx Webserver with PHP5-fpm, MySQL, and all related PHP Stuff (http://resources.deadalushd.com/about.php)
- Working MySQL & PHP (proof: http://control.deadalushd.com/mysql/index.php)
Anyone any ideas? I asked my colleague at work (he is a real it-specialist, more then I atm :D) and he thinks its something wrong with jquery but he don't know a solution for it.
Thanks,
Alexander
Last updated
Your webserver appears to be configured incorrectly, it is showing PHP content when clicking on any link.
Virtualhost-config for DeadalusHD.com (main) File: main-deadalushd
server {
listen 80; ## listen for ipv4; this line is default and implied
listen [::]:80 default_server ipv6only=on; ## listen for ipv6
root /online/www/public-page/;
index index.php index.html index.htm;
# Make site accessible from http://localhost/
server_name DeadalusHD.com www.DeadalusHD.com;
ssl_certificate /etc/nginx/ssl/nginx.crt;
ssl_certificate_key /etc/nginx/ssl/nginx.key;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.php /index.htm /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location = /favicon.ico {
alias /online/www/public-resource/assets/images/dfavicon.ico;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;
#}
#error_page 404 /online/www/public-resources/assets/server-status/status/404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /online/www/public-resources/assets/server-status/status/50x.html {
root /;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# With php5-cgi alone:
#fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
} }
Last updated
Yes Its working!
--> http://deadalushd.com/ I just copied my virtualhost config from www.resources.deadalushd.com and modified it.
server {
listen 80;
root /online/www/public-page/;
index index.php index.html index.htm;
# Make site accessible from http://localhost/
server_name DeadalusHD.com www.DeadalusHD.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html /index.php;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location = /favicon.ico {
alias /online/www/public-resource/assets/images/dfavicon.ico;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;
#}
#error_page 404 /online/www/public-resources/assets/server-status/status/404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /online/www/public-resources/assets/server-status/status/50x.html {
root /usr/share/nginx/www;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# With php5-cgi alone:
#fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
} }
Last updated
Try to access with index.php http://localhost/october/index.php
I don't know why happens this, but at this moment, I don't have enough coffee to resolve it
Ok, It's resolved it. (4 days later...) There isn't htaccess files. You can create it using this: https://github.com/octobercms/october/blob/master/.htaccess
Last updated
1-7 of 7