Results 1 to 9 of 9

Thread: Błędy w sugarCRM 5

  1. #1
    mikus1978 is offline Sugar Community Member
    Join Date
    Mar 2008
    Posts
    12

    Default Błędy w sugarCRM 5

    Jeżeli zauważyliście jakieś błędy to piszcie właśnie tu

    - występuje błąd podczas dodawania kontaktów do grupy można dodać tylko kontakty z pierwszej stront.
    Kiedy naciskam strzałkę w prawo aby zobaczyć kolejne kontakty pojawia się komunikat nie można wyświetlić strony

  2. #2
    mikus1978 is offline Sugar Community Member
    Join Date
    Mar 2008
    Posts
    12

    Default Re: Błędy w sugarCRM 5

    heh ominąłem błąd używając innej przeglądarki i cóż,, pojawił się nowy, można sobie wyfiltrować osoby które chcemy dołączyć do grupy lecz klikając na strzałkę filtr jest zdejmowany

  3. #3
    mikus1978 is offline Sugar Community Member
    Join Date
    Mar 2008
    Posts
    12

    Default Re: Błędy w sugarCRM 5

    Kolejny błąd w przeglądarcr IE i Opera (Windows XP Home Edition)

    Błąd występuje przy budowaniu modułów
    Attached Images Attached Images  
    Last edited by mikus1978; 2008-03-14 at 11:30 PM.

  4. #4
    krzysiek is offline Sugar Community Member
    Join Date
    Jan 2006
    Posts
    142

    Default Re: Błędy w sugarCRM 5

    Quote Originally Posted by mikus1978
    Kolejny błąd w przeglądarcr IE i Opera (Windows XP Home Edition)

    Błąd występuje przy budowaniu modułów
    Bo ModuleBuilder dziala w zasadzie tylko z tematem 'Sugar'.

    ps. Sorr, ale wiekszość zadawanych przez Ciebie pytan wystepuje na forach anglojezycznych - moze dlatego nie ma wielkiego odzewu na Twoje pytania?

    krzysiek

  5. #5
    adamsi is offline Junior Member
    Join Date
    Apr 2008
    Posts
    3

    Default Re: Błędy w sugarCRM 5

    Witajcie
    mam bardzo podobny problem do tego, który znalazłem w angielskiej wersji forum:

    After creating a new contact, I hit the "select" box next to Account. In that box I hit "Create" and fill in the fields that pop up below the button. When hit "save" to save the new account, it is not created, and I am returned to the "select account" box.

    tyle, że mój problem jest troszkę inny... gdy wybieram "create account" - nie pojawia się formularz dodania nowego konta, pojawiają się tylko przyciski "save" i "cancel"

    ustawiłem w log4php_properties logi na debug i... w logu nie ma żadnych błędów, jedyny podejrzany wpis, który znalazłem to:

    Code:
    DEBUG SugarCRM - Module:Accounts action does not exist: Popup
    DEBUG SugarCRM - Using Action View Map:popup
    Z góry dzięki za jakieś sugestie

    Sugar Community Edition Version 5.0.0b (Build 3150)
    MySQL 5

  6. #6
    wygodad is offline Sugar Community Member
    Join Date
    Jul 2006
    Posts
    40

    Default Re: Błędy w sugarCRM 5

    Quote Originally Posted by adamsi
    Witajcie
    mam bardzo podobny problem do tego, który znalazłem w angielskiej wersji forum:
    [...]
    tyle, że mój problem jest troszkę inny... gdy wybieram "create account" - nie pojawia się formularz dodania nowego konta, pojawiają się tylko przyciski "save" i "cancel"



    Sugar Community Edition Version 5.0.0b (Build 3150)
    MySQL 5
    WItam,

    problem ten pojawil sie juz we wczesniejszej wersji - zostal zgloszony jako Bug, ale w 5.0.0b nie zostal usuniety.
    WYnika on z braku "kawalka" kodu w pliku /modules/Accounts/AccountFormBase.php

    nalezy kod:
    PHP Code:
            $form = <<<EOQ
                <p><input type="hidden" name="record" value="">
                <input type="hidden" name="email1" value="">
                <input type="hidden" name="email2" value="">
                <input type="hidden" name="assigned_user_id" value='
    ${user_id}'>
                <input type="hidden" name="action" value="Save">
    EOQ; 
    zastapic kodem

    PHP Code:
    $form = <<<EOQ
                <p><input type="hidden" name="record" value="">
                <input type="hidden" name="email1" value="">
                <input type="hidden" name="email2" value="">
                <input type="hidden" name="assigned_user_id" value='
    ${user_id}'>
                <input type="hidden" name="action" value="Save">
                
                 $lbl_account_name&nbsp;<span class="required">$lbl_required_symbol</span><br>
                <input name='name' type="text" value=""><br>
                $lbl_phone<br>
                <input name='phone_office' type="text" value=""><br>
                $lbl_website<br>
                <input name='website' type="text" value="http://"></p> 
    EOQ; 
    --
    Pozdrawiam,
    Dawid WYgoda
    www.wygodad.pl

  7. #7
    adamsi is offline Junior Member
    Join Date
    Apr 2008
    Posts
    3

    Default Re: Błędy w sugarCRM 5

    Quote Originally Posted by wygodad
    WItam,

    problem ten pojawil sie juz we wczesniejszej wersji - zostal zgloszony jako Bug, ale w 5.0.0b nie zostal usuniety.
    WYnika on z braku "kawalka" kodu w pliku /modules/Accounts/AccountFormBase.php
    Po podstawieniu kodu, w oknie pojawia się:
    Code:
    Parse error: syntax error, unexpected T_SL in /crm/modules/Accounts/AccountFormBase.php on line 247
    Kod podmieniłem bez błędnie... nie mam już pomysłów, w logach nic nowego się nie pojawiło

    Pozdrawiam
    Adam

  8. #8
    wygodad is offline Sugar Community Member
    Join Date
    Jul 2006
    Posts
    40

    Default Re: Błędy w sugarCRM 5

    Panie Adamie prosze o listing pliku, mniej wiecej od linii 200 do 280

  9. #9
    adamsi is offline Junior Member
    Join Date
    Apr 2008
    Posts
    3

    Smile Re: Błędy w sugarCRM 5

    Znalazłem powód błędu

    It is very important to note that the line with the closing identifier must contain no other characters, except possibly a semicolon (. That means especially that the identifier may not be indented, and there may not be any spaces or tabs before or after the semicolon. It's also important to realize that the first character before the closing identifier must be a newline as defined by the local operating system. This is \n on UNIX systems, including Mac OS X. The closing delimiter (possibly followed by a semicolon) must also be followed by a newline.

    If this rule is broken and the closing identifier is not "clean", it will not be considered a closing identifier, and PHP will continue looking for one. If a proper closing identifier is not found before the end of the current file, a parse error will result at the last line.
    Teraz wszystko działa! Dziękuję bardzo za pomoc.

    Pozdrawiam
    Adam
    Last edited by adamsi; 2008-04-12 at 08:04 AM. Reason: Już wszystko jasne!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Email IMAP SSL issue ( with error log )
    By clearlink in forum Help
    Replies: 16
    Last Post: 2009-11-16, 01:50 AM
  2. Replies: 19
    Last Post: 2008-04-11, 05:41 PM
  3. Merge Contacts show sql error
    By hheckner in forum General Discussion
    Replies: 5
    Last Post: 2006-10-04, 01:57 PM
  4. Replies: 16
    Last Post: 2006-07-29, 07:28 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •