+ Reply to Thread
Page 5 of 7 FirstFirst ... 3 4 5 6 7 LastLast
Results 41 to 50 of 68

Thread: advanced Adressbook

  1. #41
    DocNight is offline Registered User
    Join Date
    Nov 2007
    Posts
    8
    Downloads
    0
    Uploads
    0

    Default Re: advanced Adressbook

    Hi all,

    I got problems integrating the advanced addressbook into v0.1-rc2.

    I tried the changes for rc1, but they won't work. In the right column I only got the edit-Button without any entries.

    Thx,
    Doc.

  2. #42
    Mossi is offline Registered User
    Join Date
    Nov 2007
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default Re: advanced Adressbook

    same problem here... At the moment I returned to the standard address book, which works just fine. If I will find the reason for the bug, I will post it here

  3. #43
    www.velder.li is offline Registered User
    Join Date
    Jan 2008
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default Re: advanced Adressbook

    sieht gut aus muss ich mal anschauen

    danke ;-)

  4. #44
    galdo is offline Registered User
    Join Date
    Oct 2006
    Posts
    3
    Downloads
    0
    Uploads
    0

    Default Re: advanced Adressbook

    Hi all together,

    whats about including a picture (maybe including an upload feature) for the adress-book?

    Thanks a lot, if anyone implements that!

    Galdo

    PS: Nice work - I like that plugin very well!

  5. #45
    clicktheo is offline Registered User
    Join Date
    Feb 2008
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default Re: advanced Adressbook

    Yeah....is this current for 0.1-RC2? Some of the changes won't work/some of the lines you say to replace can't be found!

  6. #46
    Rudy is offline Registered User
    Join Date
    Sep 2007
    Posts
    17
    Downloads
    2
    Uploads
    0

    Default Re: advanced Adressbook

    Could someone capable of doing so please update this great mod/plugin to work with 0.1stable?

    //EDIT: Ok, everything seems to be working except the global contact feature: You can set a contact as global but you can't undo and save it.

    # -------------------------------------------------------------------------------------------------------------
    #
    # In file /program/steps/addressbook/save.inc
    # Replace line 40 with
    $a_save_cols = array('name', 'firstname', 'surname', 'email', 'global_contact', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

    # Replace Line 48 with

    Code:
     if($col == 'global_contact'){
    	if(isset($_POST[$fname])){
    	 $a_record[$col] = 1;
    	}else{
    	 $a_record[$col] = 0;
    	}
     }	else if (isset($_POST[$fname])){
      $a_record[$col] = get_input_value($fname, RCUBE_INPUT_POST);
     }
    #

    I don't know what line that is in 0.1stable. I replaced the following code (line ~48-50) but than you can't cahnge the "global contact" setting:
    Code:
      if (isset($_POST[$fname]))
      $a_record[$col] = get_input_value($fname, RCUBE_INPUT_POST);
    }
    //EDIT2: Never mind, I'm such an idiot. Just replace line 48 and it will work like a charm.
    It should look like this:
    Code:
    // read POST values into hash array
    foreach ($a_save_cols as $col)
    {
     $fname = '_'.$col;
     if($col == 'global_contact'){
    	if(isset($_POST[$fname])){
    	 $a_record[$col] = 1;
    	}else{
    	 $a_record[$col] = 0;
    	}
     }	else if (isset($_POST[$fname])){
      $a_record[$col] = get_input_value($fname, RCUBE_INPUT_POST);
     }
      $a_record[$col] = get_input_value($fname, RCUBE_INPUT_POST);
    }

  7. #47
    guilichou is offline Registered User
    Join Date
    Oct 2007
    Posts
    19
    Downloads
    0
    Uploads
    0

    Default Re: advanced Adressbook

    Hi Rudy,

    I gathered all the lastest infos of this post in order to implement this plugin to rc0.1stable but it doesn't work properly...
    Could you tell me what modification you have made in order to make the plugin work?

    In the attachement file, are the modifications that I did... but here are all the problems I have:
    - When I click directly on a new person to create, I have all the labels, that I can save (saved correctly in the DataBase).
    - When I click on a person on my list of contacts, the whole RoundCube freezes without displaying the correct infos. From there on, I cannot do anything... Cannot go back to my mailbox nor preferences nor quit. I simply have to close the Firefox tab and open a new one...

    If ever anyone could tell me what is wrong in the attached file or give in this post a new how-to of this advanced address book?
    Hope to have an answers...
    Thank you for any help...

  8. #48
    oldschool's Avatar
    oldschool is offline Registered User
    Join Date
    Jul 2007
    Posts
    173
    Downloads
    8
    Uploads
    0

    Default Re: advanced Adressbook

    Hi!

    The 0.1 is out and we have a release to work with.
    Could anyone make a working release of this great plugin, please?
    Rudy?



    Rgds.


  9. #49
    Rudy is offline Registered User
    Join Date
    Sep 2007
    Posts
    17
    Downloads
    2
    Uploads
    0

    Default Re: advanced Adressbook

    I'll post my code or better the instructions sometime today as I'm still busy doing other stuff right now.

  10. #50
    guilichou is offline Registered User
    Join Date
    Oct 2007
    Posts
    19
    Downloads
    0
    Uploads
    0

    Default Re: advanced Adressbook

    Thanks in advance for helping us...

+ Reply to Thread
Page 5 of 7 FirstFirst ... 3 4 5 6 7 LastLast

Thread Information

Users Browsing this Thread

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

     

Posting Permissions

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