Re: The cloud panel doesn't into directory in django

2018-03-04 Thread Safa Bayar
you're right. i am mistake. i try to your say but doesn't work. i changed althought it is not

Re: The cloud panel doesn't into directory in django

2018-03-04 Thread Safa Bayar
4 Mart 2018 Pazar 15:11:46 UTC+3 tarihinde Jason yazdı: > > I suspect it's due to the aserisks (*) in your URL with *root*. > > Remove that, and change (?P[\*\w]+)/ to (?P[\w]+)/ > > While an asterisk is a valid character in the URL, I've never seen it used > in practice. Your experiences he

Re: The cloud panel doesn't into directory in django

2018-03-04 Thread Jason
I suspect it's due to the aserisks (*) in your URL with *root*. Remove that, and change (?P[\*\w]+)/ to (?P[\w]+)/ While an asterisk is a valid character in the URL, I've never seen it used in practice. Your experiences here make me suspect you're not escaping *both* asterisks, and thus the

Re: The cloud panel doesn't into directory in django

2018-03-04 Thread Safa Bayar
It doesn't work and i clap eyes on other link in html file. link is delete file, edit page, do

Re: The cloud panel doesn't into directory in django

2018-03-03 Thread Dylan Reinhold
Your sample URL /navforward/DigitalOcean/*root*docker-bench-security/ Does not match anything in your urls This one looks to be the closest: url(r'^naviforward(?P[\w]+)/(?P[\*\w]+)/(?P[\w]+)/$','manager.views.navforward'), In the url there is no / after navforward, and it going to be looking fo

The cloud panel doesn't into directory in django

2018-03-03 Thread Safa Bayar
I write cloud panel write python/django. My problem is, urls.py doesn't access next forward directory. I use apache. when it is go to next forward, this page is showing: my urls.py inside: