Other Install juicycode, nulled

Status
Not open for further replies.

Picho1995

New Member
4
2020
0
45
I installed everything runs, but when I add a link or video I get an error, put the link, but still does not let you do anything
 
3 comments
downgrade to php 7.0, also have ioncube installed.
also have the nginx rewrite rules
Code:
location @addslash {
    return 301 $uri/;
}

location ~ ^([^.\?]*[^/])$ {
    try_files $uri @addslash;
}

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

location /admin {
    try_files $uri $uri/ /admin/index.php?$query_string;
}

php 7.2 didn't work for me.
 
Status
Not open for further replies.
Back
Top