Re: Интегрция django и 1c

2013-09-30 Thread Иван Земцов
Sorry, I asked the question in the wrong group.


On 30 September 2013 17:41, Rafael E. Ferrero wrote:

> No Che!, no lo usé nunca... ni siquiera tenía idea de su existencia,
> igualmente veo muchas urls con la extensión PHP que no me hacen ninguna
> gracia :P
>
> Saludos !!
>
>
> 2013/9/30 Иван Земцов 
>
>> Всем привет!
>> Кто нибудь обладает более подробной информацией по протоколу обмена чем
>> тут ?
>> http://v8.1c.ru/edi/edi_stnd/131/
>>
>> Может у кого-то есть какая-нибудь реализация данного протокола?
>>
>> --
>> С уважением, Иван
>>
>> --
>> 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 post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CACt1%2BqctgCtF0qbmxOtmFi2rRQ06zXn2AMyyPh_%3D5cswBUNA6w%40mail.gmail.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>
>
> --
> Rafael E. Ferrero
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJJc_8V-9xdN38dsBOmy_1CngU4UM2aBCf36vUvkcWc2LVLFoA%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
С уважением, Иван

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACt1%2BqfNMm4ukxY%3DOYrHOZKo%3DjgvcMPTTv2ZFwW%2Bd-xFg04oAQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Интегрция django и 1c

2013-09-30 Thread Иван Земцов
Всем привет!
Кто нибудь обладает более подробной информацией по протоколу обмена чем тут
?
http://v8.1c.ru/edi/edi_stnd/131/

Может у кого-то есть какая-нибудь реализация данного протокола?

-- 
С уважением, Иван

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACt1%2BqctgCtF0qbmxOtmFi2rRQ06zXn2AMyyPh_%3D5cswBUNA6w%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Can't Find libclntsh.so.11.1 With Oracle Backend

2012-09-10 Thread Иван Земцов
set the ORACLE_HOME  variable of the user who run site
SuexecUserGroup inof inof
env |grep ORA
ORACLE_BASE=/usr/lib/oracle
ORACLE_HOME=/usr/lib/oracle/11.2/client64/

On 11 September 2012 03:05, Jon Blake  wrote:

> Thanks, Jani and Ian. I've used the ldconfig approach to fix this problem.
> Now getting a "ImportError at /" page, for which I'll post another question.
>
>
> On Tuesday, September 11, 2012 6:15:57 AM UTC+10, Jani Tiainen wrote:
>
>> I've been using ldconfig to handle libs. It's easy as runnig following
>> few commands as a root. (Though I always use oracle instantclient, it's
>> just simpler in many cases):
>>
>> $ echo  /oracle/product/11.1.0/db_1/**li**b  >
>> /etc/ld.so.conf.d/oracle.conf
>> $ ldconfig
>>
>> On Mon, Sep 10, 2012 at 7:11 PM, Ian  wrote:
>>
>>> On Sunday, September 9, 2012 10:41:00 PM UTC-6, Jon Blake wrote:

 It looks like I have to tell my app what my path to libclntsh.so.11.1
 is. I have added:

 os.environ['LD_LIBRARY_PATH'] = '/oracle/product/11.1.0/db_1/**l**ib'
>

 to my app's wsgi.py file, but this does resolve my problem.


>>> LD_LIBRARY_PATH has to be set before the process starts to be honored.
>>> So it's not sufficient to set it in the wsgi file with os.environ; you need
>>> to use an Apache SetEnv directive, or use a script to export it in the
>>> Apache process's environment variables when Apache is started.  Or as a
>>> third option, use ldconfig to make the Oracle library path globally visible.
>>>
>>> Cheers,
>>> Ian
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To view this discussion on the web visit https://groups.google.com/d/**
>>> msg/django-users/-/**z8aKjhUtm3QJ
>>> .
>>>
>>> To post to this group, send email to django...@googlegroups.com.
>>> To unsubscribe from this group, send email to django-users...@**
>>> googlegroups.com.
>>>
>>> For more options, visit this group at http://groups.google.com/**
>>> group/django-users?hl=en
>>> .
>>>
>>
>>
>>
>> --
>> Jani Tiainen
>>
>> - Well planned is half done, and a half done has been sufficient before...
>>
>>   --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/imnCF82L9_EJ.
>
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
С уважением, Иван

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django+apache

2012-07-18 Thread Иван Земцов
Using gunicorn in virtual environment.

On 18 July 2012 04:03, Kurtis Mullins  wrote:

> Hello Carlos,
>
> I apologize but I am unable to understand your problem. It looks like you
> are trying to use Apache to forward requests on to Django using
> "mod_python".
>
> According to Django's web site, "mod_python" is deprecated and therefore
> shouldn't be used. (Source:
> https://docs.djangoproject.com/en/1.4/howto/deployment/modpython/)
>
> Instead, I recommend following this guide and use WSGI:
> https://docs.djangoproject.com/en/1.4/howto/deployment/wsgi/modwsgi/
>
> Once you give that a try and run into a specific problem, feel free to
> post back with your specific problem and I'm sure someone will do their
> best to help you out.
>
> Good luck!
> - Kurtis Mullins
>
>
> On Tue, Jul 17, 2012 at 6:39 PM, Carlos Andre  wrote:
>
>> hi programers, i'm with troble in apache with django connect!
>> what i can make to connect!
>> i start with mod_python, but have very troble!
>> can Somebory help me?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
С уважением, Иван

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Template problem

2012-07-18 Thread Иван Земцов
add grappelli in installed_apps settings.py

On 18 July 2012 04:38, Eli_West  wrote:

> why I posted this question, i dont know plz help lol
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/m68NaOa1yXoJ.
>
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
С уважением, Иван

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.