Re: Image Uploaded by Ckeditor using Django to AWS S3 gone after certain amount of time

2020-09-09 Thread Omkar Parab
Sep 9, 2020 at 3:16 PM hans alexander wrote: > >> I see on this link >>> >> >> >> https://stackoverflow.com/questions/63096379/django-ckeditor-upload-image-link-expires-after-some-hours >> >> Has no solution yet. He got the same problem as me. >> &g

Re: Image Uploaded by Ckeditor using Django to AWS S3 gone after certain amount of time

2020-09-09 Thread hans alexander
I tried to put AWS_QUERYSTRING_AUTH = False AWS_S3_BUCKET_AUTH = False on settings.py, it didn't work. Thanks. On Wed, Sep 9, 2020 at 3:16 PM hans alexander wrote: > I see on this link >> > > > https://stackoverflow.com/questions/63096379/django-ckeditor-upload-i

Re: Image Uploaded by Ckeditor using Django to AWS S3 gone after certain amount of time

2020-09-09 Thread hans alexander
> > I see on this link > https://stackoverflow.com/questions/63096379/django-ckeditor-upload-image-link-expires-after-some-hours Has no solution yet. He got the same problem as me. I'm currently still trying to find solution, tinkering aws s3 settings to set the expired time. A

Re: Image Uploaded by Ckeditor using Django to AWS S3 gone after certain amount of time

2020-09-08 Thread Anil pawar
That means whatever link is generated is not functioning. Try to check the image file permission on the server OR open that link in a new browser tab and check what response you are getting from the server. and make sure the image URL is correct. On Wed, Sep 9, 2020 at 10:15 AM hans alexander wro

Re: Image Uploaded by Ckeditor using Django to AWS S3 gone after certain amount of time

2020-09-08 Thread hans alexander
I checked the file on my bucket, it's there. But somehow the link is not working. On Wed, Sep 9, 2020 at 1:13 PM hans alexander wrote: > I don't know what happened. > Need solution for this. > > [image: image.png] > [image: image.png] > > Any solutions would be appreciated. Thanks > -- You rec

Image Uploaded by Ckeditor using Django to AWS S3 gone after certain amount of time

2020-09-08 Thread hans alexander
I don't know what happened. Need solution for this. [image: image.png] [image: image.png] Any solutions would be appreciated. Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from

Materializecss issue with CKeditor dialog

2020-07-05 Thread Sherif Adigun
Replies -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.googl

Materializecss issue with CKeditor dialog

2020-07-01 Thread Sherif Adigun
If using materializecss for the application and image upload widget in the ckeditor, materializecss affects the dialog inputs making it impossible to use radio buttons and checkboxes. Do you have a suggestions on how to solve this? I'm thinking of not loading the materialize css for the d

Re: ckeditor toolbar is not showing in html new post page.. why home.html (for adding a new post) is not showing the rendered django form for add new post?

2019-12-13 Thread Integr@te System
ould check >> doc in warning part >> https://docs.djangoproject.com/en/3.0/ref/csrf/ >> >> And look at the additional way to resolve your problem. >> >> On Thu, Dec 12, 2019, 16:45 হজমুলা খান wrote: >> >>> i am integrating some apps to make a bigger p

Re: ckeditor toolbar is not showing in html new post page.. why home.html (for adding a new post) is not showing the rendered django form for add new post?

2019-12-12 Thread হজমুলা খান
ck > doc in warning part > https://docs.djangoproject.com/en/3.0/ref/csrf/ > > And look at the additional way to resolve your problem. > > On Thu, Dec 12, 2019, 16:45 হজমুলা খান > > wrote: > >> i am integrating some apps to make a bigger project but the problem is >

Re: ckeditor toolbar is not showing in html new post page.. why home.html (for adding a new post) is not showing the rendered django form for add new post?

2019-12-12 Thread Integr@te System
ger project but the problem is > when i try insert ckeditor in html login page it is not showing. for this > reason i tried to make separate app is to see whats going on here. i am > showing you the code in detail. > editing/settings.py: > > > .. > INSTALLED_APPS = [

ckeditor toolbar is not showing in html new post page.. why home.html (for adding a new post) is not showing the rendered django form for add new post?

2019-12-12 Thread হজমুলা খান
i am integrating some apps to make a bigger project but the problem is when i try insert ckeditor in html login page it is not showing. for this reason i tried to make separate app is to see whats going on here. i am showing you the code in detail. editing/settings.py

Re: CKEditor

2016-04-11 Thread Luis Zárate
Supongo está usando django-ckeditor, si es así lo que tiene que hacer es usar el field que ellos proporcionan. https://github.com/django-ckeditor/django-ckeditor#field además recuerde usar {{form.media}} en la plantilla, para que se cargue el js. -- You received this message because you are

CKEditor

2016-04-11 Thread Ricardo Felipe Ríos Higueras
Buenas. Estoy usando ckeditor en django. Todo bien, lo instalé bien y por parte del admin funciona excelente. Lo que quiero es llevar esa herramienta a un form. Crear un formulario que contenga ckeditor. Espero me entiendan y puedan ayudarme, ya que, he intentado de muchas formas y nada me

Re: Django + Ckeditor

2016-01-05 Thread Dheerendra Rathor
% endautoescape %} > > ref: > https://docs.djangoproject.com/en/1.8/ref/templates/builtins/#autoescape > > > On Sun, Jan 3, 2016 at 5:12 AM, David Pineda wrote: > >> Hello folks! Happy new year! >> >> I have a question about ckeditor on django. I configured ok a

Re: Django + Ckeditor

2016-01-03 Thread whycrying
new year! > > I have a question about ckeditor on django. I configured ok and use > ckeditor field on my project model. But when i show the content on a > template view, the images only show the [img] tag and the path to file. I > think it can be a filter but on the official site there

Django + Ckeditor

2016-01-02 Thread David Pineda
Hello folks! Happy new year! I have a question about ckeditor on django. I configured ok and use ckeditor field on my project model. But when i show the content on a template view, the images only show the [img] tag and the path to file. I think it can be a filter but on the official site there

CKEDITOR not working on certain models

2015-04-21 Thread Thomas Weholt
I've used CKEDITOR to turn my models.TextArea() fields into nice editors for a long time, but suddenly some of my pages throws the following exception: Uncaught Error: The specified element mode is not supported on element: "meta". I've googled it and tried several solutions,

Re: django-ckeditor noop?

2014-12-06 Thread Collin Anderson
Hi, That should work. Did you restart the server? Are you using CKEDITOR_RESTRICT_BY_USER? Is "ckeditor" in the source of the page at all? Are there errors on the javascript console? What does your admin.py look like? Collin On Friday, December 5, 2014 1:09:59 PM UTC-5, Jonath

django-ckeditor noop?

2014-12-05 Thread Christos Jonathan Seth Hayward
At http://stackoverflow.com/questions/27321396/how-can-i-get-my-django-ckeditor-installation-to-recognize I asked what I could do to get a RichTextField() to be displayed with a CKeditor widget. Any advice for what I should change? Thanks, -- [image: Christos Jonathan Seth Hayward] <h

django-ckeditor image upload giving wrong url of the image

2013-10-17 Thread Robin Lery
When I try text editing and other text related stuffs and save it, the editor does its job nicely. But when I try to upload an image it just take a different url. I am on windows. Is it because of this, cause I saw a post on this post<http://stackoverflow.com/questions/18894044/django-ckedi

django admin: integrate django-modeltranslation + django-ckeditor into 3rd party module

2013-09-26 Thread Roberto López López
yui/1.10.1/jquery-ui.min.js', 'modeltranslation/js/tabbed_translation_fields.js', ) css = { 'screen': ('modeltranslation/css/tabbed_translation_fields.css',), } admin.site.register(News, NewsAdmin) This works ok, i

Re: Help, ckeditor not rendering in form

2013-03-30 Thread frocco
I figured it out. In my index.html file, I had to add {{ form.media }} On Saturday, March 30, 2013 12:21:52 PM UTC-4, frocco wrote: > > Hello, > > My form is not based on a model, form.value is not showing the editor. > > Thanks for the help. > > class RebateForm(forms.Form): > item = forms.Ch

Help, ckeditor not rendering in form

2013-03-30 Thread frocco
Hello, My form is not based on a model, form.value is not showing the editor. Thanks for the help. class RebateForm(forms.Form): item = forms.CharField(max_length=50, required=True) category = forms.ModelChoiceField(queryset=Category.objects.all()) value = forms.CharField(widget=CKEd

issues with dejango-ckeditor

2012-03-21 Thread Sagiedd
Hello, I am trying to use the django-ckeditor in my models / forms. However, the RichTextField or CKEditorWidget seem to work like regular text field. This happens both on the admin site and in my own forms. I followed the installation guide as explained here : https://github.com/shaunsephton

Re: django-ckeditor causes an unhandled exception

2010-10-19 Thread jean polo
replying to myself... this was fixed 5 days ago on github. updating to latest django-ckeditor solved it. _y On Oct 19, 12:49 pm, jean polo wrote: > hallo ! > > I installed django-ckeditor-0.0.7, run it smoothly locally but now I'm > trying to commit the changes on my server, I

django-ckeditor causes an unhandled exception

2010-10-19 Thread jean polo
hallo ! I installed django-ckeditor-0.0.7, run it smoothly locally but now I'm trying to commit the changes on my server, I get an Unhandled Exception: [SNIP] File "/usr/local/alwaysdata/python/django/1.2.1/django/core/ urlresolvers.py", line 247, in _get_url_pat

Re: ckeditor and ckfinder

2010-03-31 Thread Bobby Roberts
g to get ckfinder to integrate with ckeditor.  I can go > > directly to the ckfinder sample standalone and it uploads to the right > > directory and everything so I know that ckfinder is configured > > properly... anyone know how to get the upload tab on the image popup > > w

Re: ckeditor and ckfinder

2010-03-31 Thread Sam Lai
On 1 April 2010 13:05, Bobby Roberts wrote: > I'm trying to get ckfinder to integrate with ckeditor.  I can go > directly to the ckfinder sample standalone and it uploads to the right > directory and everything so I know that ckfinder is configured > properly... anyone know how

ckeditor and ckfinder

2010-03-31 Thread Bobby Roberts
I'm trying to get ckfinder to integrate with ckeditor. I can go directly to the ckfinder sample standalone and it uploads to the right directory and everything so I know that ckfinder is configured properly... anyone know how to get the upload tab on the image popup with ckeditor so that ckf

My CKEditor Integration Pattern

2009-10-28 Thread Johan
I've outlined how I am currently integrating CKEditor into my admin site (http://tinyurl.com/ylfjumo) . This way obviously work very nicely for me. Is there any reason to go the more advanced route of creating a custom widget? --~--~-~--~~~---~--~~ You rec

My CKEditor Integration Pattern

2009-10-28 Thread Johan
I've outlined how I am currently integrating CKEditor into my admin site (http://johansdevblog.blogspot.com/2009/10/adding-ckeditor-to- django-admin.html ) . This way obviously work very nicely for me. Isthere any reason to go the more advanced route of creating a custom w

My CKEditor Integration Pattern

2009-10-28 Thread Johan
I've outlined how I am currently integrating CKEditor into my admin site (http://johansdevblog.blogspot.com/2009/10/adding-ckeditor-to- django-admin.html) . This way obviously work very nicely for me. Is there any reason to go the more advanced route of creating a custom w