N
N
Nikita Melikhov2015-01-06 00:19:37
CMS
Nikita Melikhov, 2015-01-06 00:19:37

Can you determine on which CMS the site 1ckab.ru is made?

At the root are the following directories

app  configs  core  docs  error  libs  propel  public  stats  tests  var

I transfer all this goodness to nginx, as you can see, only the main page works.
Something with rewrite needs to be smarter.
at the root in .htaccess
RewriteEngine On
RewriteRule ^(.*)$ /public/$1 [L]

in public .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L,QSA]

in the nginx config I wrote something like this
location / {
rewrite ^(.*)$ /public/$1 break;
}
location /public/ {
if (!-e $request_filename){
rewrite ^/public/(.*)$ /public/index.php break;
}
}

does not work.
Tell by eye at least what CMS it looks like, at least I will know what to google
UPD:
Thank you all, it seems to have earned the same config as in Drupal
location / {
try_files $uri @rewrite;
}
location @rewrite {
rewrite ^ /public/index.php;
}
Only in safari it began to clumsily open, but I think I'll figure it out)
UPD:
It didn't work. For those who are interested, I will describe. I went the other way, since it works under Apache, I picked up Apache on port 8087 next to it, pushed the site there, and in the nginx config for the site I registered proxy_pass http://127.0.0.1:8087;
Now earned. It is a pity that the site did not work under nginx, there will be time - I will contact the studio of a friend and we will look. The problem there is only in rewrite, it is necessary to register correctly.
Thank you all very much.

Answer the question

In order to leave comments, you need to log in

7 answer(s)
S
Sergey Nalomenko, 2015-01-06
@Sl1mShady

At first glance, it looks like a manuscript, to be honest.

A
Alexander Taratin, 2015-01-06
@Taraflex

Samopis
2ip.ru/cms/?url=http%3A%2F%2F1ckab.ru

D
Deodatuss, 2015-01-06
@Deodatuss

builtwith.com/1ckab.ru all that is there

C
c4boomb, 2015-01-06
@c4boomb

99% that the manuscript, perhaps some kind of framework (maybe MVC).

S
Sergey, 2015-01-06
Protko @Fesor

It hurts like self-writing based on Symfony1 + Propel

O
oia, 2015-01-06
@oia

www.ispconfig.org/page/home.html and is there something that works except for the main one?

A
Alexey Tutubalin, 2015-01-06
@Kennius

This is a 98% framework or self-written 2%, which of the frameworks I don’t know because I don’t use them, but the directory structure is very similar to the framework

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question