phpwscontacts-developers Mailing List for phpwsContacts - phpWebSite Contacts Mod
Brought to you by:
rizzo,
wendall911
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(4) |
Sep
(1) |
Oct
(4) |
Nov
(9) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
(5) |
May
(3) |
Jun
(1) |
Jul
(2) |
Aug
(3) |
Sep
(4) |
Oct
(1) |
Nov
|
Dec
(1) |
2005 |
Jan
(2) |
Feb
(4) |
Mar
(2) |
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
From: SourceForge.net <no...@so...> - 2006-11-06 23:25:33
|
Support Requests item #1591706, was opened at 2006-11-07 00:25 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1591706&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Jindar (ejindar) Assigned to: Nobody/Anonymous (nobody) Summary: phpwscontacts-0.9.4 - Search Contact Problem Initial Comment: PHPWS 0.10.2 phpwscontacts-0.9.4 When searching contacts: the listing field is empty but its shown view link for each record! How should be fixed? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1591706&group_id=83662 |
From: Babul G. <bab...@ho...> - 2006-10-11 15:34:25
|
Hi =20 In my installation of phpWsContacts, on phpwebsite 0.10.2 .. the EDIT link = shows up andanyone can EDIT the record of each entries!! =20 can u pls help me fix it? =20 Babs _________________________________________________________________ Windows Live Spaces is here! It=92s easy to create your own personal Web si= te. http://spaces.live.com/?mkt=3Den-in= |
From: SourceForge.net <no...@so...> - 2006-08-29 03:02:17
|
Support Requests item #1548295, was opened at 2006-08-28 22:02 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1548295&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Submitted By: Tom (atjensen11) Assigned to: Nobody/Anonymous (nobody) Summary: Customization Problem Initial Comment: Hello, I will preface this message with the fact that I am very new to phpwebsite and almost as new to php in general. However, I have a strong programming background in Visual Basic and VBA. This is for the record so that you don't think of me as a total idiot. My first big attempt at a module customization was with the Contacts module. I wanted to remove several fields that I wouldn't be needing and add a few custom ones, other than the actual Custom 1-4 fields. I did a pretty good job of making the changes throughout all of the different files, but I obviously missed one. A very important one. I get an error on the actual SQL insert command. The fields in this command don't line up with the fields in my database. Where is the actual syntax for the "Save" button on the edit template? Thanks. Tom ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1548295&group_id=83662 |
From: SourceForge.net <no...@so...> - 2006-06-23 21:03:31
|
Bugs item #1511568, was opened at 2006-06-23 17:03 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1511568&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: chucknut7 (chucknut7) Assigned to: Nobody/Anonymous (nobody) Summary: CSV EXPORT Initial Comment: Hello, Not sure if this was addressed in a previous bug... did not read anyway or may have missed it. I am on 0.9.4 and I tried to export a CSV for OUTLOOK import. I opened it up in Excel and noticed that the two contacts in the database ended up on the same line instead of different rows. I took a closer look at the CSV in text editor and the starting with the "birthday" field and ending with the "anniversary" field, the "","","" pattern was brok and only single quotes were showing. ------ Solution... I opened the Class/Contact.php file and found the lines 1726, 1732, and 1738 (or there abouts)... and added an extra quote mark in the "ELSE" line. Was this already done or did I help contribute to a bug fix? If not, then Pete and now Repeat. Hopefully this will help someone and if a true bug can be added to the newer version. -------- if (!empty($this->_str_birthday)) { $birthday = new Date($this->_str_birthday); $content .= '"' . $birthday->format('%Y/%m/%d') . '",'; } else { $content .= '"",'; } if (!empty($this->_str_deathday)) { $deathday = new Date($this->_str_deathday); $content .= '"' . $deathday->format('%Y/%m/%d') . '",'; } else { $content .= '"",'; } if (!empty($this->_str_anniversary)) { $anniversary = new Date($this->_str_anniversary); $content .= '"' . $anniversary->format('%Y/%m/%d') . '",'; } else { $content .= '"",'; ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1511568&group_id=83662 |
From: SourceForge.net <no...@so...> - 2006-04-06 19:09:37
|
Bugs item #1465914, was opened at 2006-04-06 15:09 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1465914&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: chucknut7 (chucknut7) Assigned to: Nobody/Anonymous (nobody) Summary: vCard import from Outlook 2003 broken Initial Comment: Running phpWS 0.10.2 with 0.9.4... Tried to import a .vcf file originally created from Outlook 2003. On submission I got the following erro on a blank page: SQL: insert mod_phpwscontacts_contacts (image, firstname, middlename, lastname, maidenname, prefix, suffix, gender, email, phone_home, phone_pager, phone_mobile, phone_work, phone_fax, phone_other, company_name, company_title, company_street, company_city, company_state, company_zip, company_country, company_website, personal_street, personal_city, personal_state, personal_zip, personal_country, personal_website, str_birthday, str_deathday, str_anniversary, altemail1, altemail2, comments, visibility, mine, custom1, custom2, custom3, custom4, owner, editor, ip, label, created, updated, hidden, approved, id) values (NULL, 'Barrett', '', 'xxxx', NULL, '', '', NULL, 'ba...@xx...', '(xxx) xxx-xxxx', NULL, '(xxx) xxx-xxxx', '(xxx) xxx-xxxx', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1938 Mapwater Drive', 'xxxx', 'XX', '3xxxx', 'United States of America', NULL, NULL, NULL, NULL, NULL, NULL, ' ', '0', '0', NULL, NULL, NULL, NULL, 'chucknut', 'chucknut', 'xx.xx.96.62', 'Hxxxx, Barrett ', '1144349251', '1144349251', '0', '1', 2) unknown error The x's are for privacy sake. Is there a compatibility issue or are we in the dark with this "unknown error"? There should be a change in programming lingo where "unknown error" is replaced by "uh, I don't know..." ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1465914&group_id=83662 |
From: SourceForge.net <no...@so...> - 2006-03-11 21:34:18
|
Support Requests item #1448006, was opened at 2006-03-11 13:34 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1448006&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Install Problem Group: None Status: Open Priority: 5 Submitted By: MarySunshine (marysunshine) Assigned to: Nobody/Anonymous (nobody) Summary: Module Information file missing in phpwscontacts Initial Comment: I have uploaded all the files contained in the phpwscontacts-0.9.4.zip using FTP to the /mod/phpwscontacts-0.9.4 directory and then within the PHPWS use Boost to install. Unfortunately, I am presented with this error: "Module Information file missing in phpwscontacts" Can you tell me what file might be missing? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1448006&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-09-28 14:49:57
|
Feature Requests item #1306984, was opened at 2005-09-28 16:49 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1306984&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: v. 0.9.0 Status: Open Priority: 5 Submitted By: mvvelzen82 (mvvelzen82) Assigned to: Nobody/Anonymous (nobody) Summary: Different image directories in phpwscontacts Initial Comment: > When a member uploads his image, the mod puts it in the dir > 'images/contacts/'. Problem with this is that all the other > members can use, or worse, delete this image. What I'd like > is that the contacts mod creates a different folder in > 'images/contacts/' for each user and it would be great if > the name of that folder is the username or the name of that > user. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1306984&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-09-14 14:15:05
|
Feature Requests item #1291040, was opened at 2005-09-14 10:15 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1291040&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Submitted By: JAC (johnacraft) Assigned to: Nobody/Anonymous (nobody) Summary: email field and table mod_users potential confusion Initial Comment: I just installed phpwscontacts today, and see one potential point of confusion. Let's say a user creates an account, which has an email address associated with it (in table mod_users). There is no user admin of that email address today. The user then adds personal contact information in phpwscontacts, including an email address. If the website uses phpwsmailinglists, the user may also sign up for one or more email lists. Later, the user's email address changes, and he updates the email in phpwscontacts, thinking he is updating the address for all functions on the website. I'd like to suggest that the email address field be integrated with table mod_users, so that if a user changes his email, it's reflected in mod_users. Thanks. JAC ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1291040&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-09-09 00:41:36
|
Support Requests item #1285507, was opened at 2005-09-09 00:41 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1285507&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Submitted By: Danny (cajunfolk) Assigned to: Nobody/Anonymous (nobody) Summary: Setting user permisions not working Initial Comment: After setting users permision to edit/change, add, delete sections and update either in a group or single member it does not work. I am using phpWebSite 0.10.0 and lastest version of Contacts. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1285507&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-09-07 14:58:27
|
Bugs item #1284031, was opened at 2005-09-07 14:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1284031&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Travis Crabtree (tcrabtree21) Assigned to: Nobody/Anonymous (nobody) Summary: Search contacts error Initial Comment: Using version 0.9.4 on core 0.10.1 The error occurs when a user logs in and searches the contacts (Login->Control Panel->Site Content->Contacts->Search box. For example, the user enters the name 'Wilson' and the first page of the search is returned, but when a user clicks to see the next page only the word 'Object' is returned. I have reinstalled and increased the memory allocation in the php.ini file but the error continues. Contact me directly if you would like to receive a test login so you can see the error for yourself (web...@tu...) We use the this for our online alumni database. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1284031&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-08-08 17:58:33
|
Feature Requests item #1254383, was opened at 2005-08-08 12:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1254383&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: v. 0.9.0 Status: Open Priority: 5 Submitted By: Anita (mvnpro) Assigned to: Nobody/Anonymous (nobody) Summary: approval Initial Comment: I need the contact manager to require approval. In other words when a user submits their information, I need it to require my approval before it appears. I really like the mod but I am using it as a mode of advertising for vendors, and I have people submitting without paying for it. This would be similar to what the phpwsbusinesses mod does (written by Verdonv) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1254383&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-05-26 18:39:34
|
Bugs item #1209361, was opened at 2005-05-26 14:39 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1209361&group_id=83662 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: David Patte (dpatte) Assigned to: Nobody/Anonymous (nobody) Summary: in 0.10.1 core causes error in core Initial Comment: has this mod been updated for 0.10.1? I installed it, and in boost everthing seemed to go well. After the install I had two contacts links - one in site content in control panel and one in my settings in control panel. But clicking on either of these links returns an error as follows Error Module: core Function: PHPWS_Manager::init() 05/26/2005 02:23 PM Manager configuration file is an improper format. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1209361&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-04-28 01:01:36
|
Bugs item #1191417, was opened at 2005-04-27 20:01 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1191417&group_id=83662 Category: None Group: v. 0.6.2 Status: Open Resolution: None Priority: 5 Submitted By: knubie (knubie) Assigned to: Nobody/Anonymous (nobody) Summary: Length parameter must be greater than 0...error on lin 948 Initial Comment: after I enter a new contact and save it, I get this error message: Warning: fread(): Length parameter must be greater than 0. in /home/jarbe2f/public_html/lib/pear/HTML/Template/IT.php on line 948 other than that, it works correctly. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1191417&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-03-09 14:12:54
|
Support Requests item #1159836, was opened at 2005-03-09 07:12 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1159836&group_id=83662 Category: None Group: None Status: Open Priority: 5 Submitted By: Brandon Stout (hplsbyufan) Assigned to: Nobody/Anonymous (nobody) Summary: Core 0.10.0 Yields "Module Information file missing..." Initial Comment: I would like to try your contacts Mod, but when I try to install it in Boost, I get "Module Information file missing in phpwscontacts". I submitted it as a bug, but it is still not assigned to anyone, is there a way I can resolve this? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1159836&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-03-02 22:08:01
|
Feature Requests item #1155416, was opened at 2005-03-02 23:07 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1155416&group_id=83662 Category: None Group: v. 0.9.0 Status: Open Priority: 5 Submitted By: benz (danespen) Assigned to: Nobody/Anonymous (nobody) Summary: Type/length for custom fields Initial Comment: For example - textarea or regular input, maybe even combo boxes. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1155416&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-02-25 12:31:55
|
Bugs item #1151727, was opened at 2005-02-25 05:31 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1151727&group_id=83662 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Brandon Stout (hplsbyufan) Assigned to: Nobody/Anonymous (nobody) Summary: Core 0.10.0 gives "Module Information file missing" error Initial Comment: There is also a thread in the support forum, but I'm thinking this is a bug. If it is not, delete this, but please respond in the forum with a resolution. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1151727&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-02-12 15:20:51
|
Support Requests item #1121359, was opened at 2005-02-12 15:20 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1121359&group_id=83662 Category: Install Problem Group: None Status: Open Priority: 5 Submitted By: Anna Sue (annasue) Assigned to: Nobody/Anonymous (nobody) Summary: Module won't install Initial Comment: Get the following error messages: Warning: direct(): Failed opening '' for inclusion (include_path='.:/home/impressi/public_html/phpwebsite/li b/pear/') in /home/impressi/public_html/phpwebsite/mod/boost/clas s/Boost.php on line 225 and Module Information file missing in phpwscontacts ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1121359&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-02-03 21:40:39
|
Bugs item #1115764, was opened at 2005-02-03 15:40 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1115764&group_id=83662 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Joe Swann (joeswann) Assigned to: Nobody/Anonymous (nobody) Summary: Search results page problem Initial Comment: We are using your module on our web site but I have found a small problem. When you search for someone the search results list does not give any details about the records found in the search. You just get links named 1, 2, 3, etc. If you want to see what I am talking about do this: 1. Visit http://www.robcoschools.org 2. Click the email directory link in the top of the right column. 3. Search the contacts for "swann" You'll get 4 records back but which Swann you want is a shot in the dark. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1115764&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-02-03 20:13:24
|
Support Requests item #1115697, was opened at 2005-02-03 12:13 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1115697&group_id=83662 Category: None Group: None Status: Open Priority: 5 Submitted By: sharon renshaw (sharondippity) Assigned to: Nobody/Anonymous (nobody) Summary: problems uninstalling contacts 8.1 with phpws .10 Initial Comment: It said no such db table when I went to uninstall, yet the icons are still in the cpanel . when I click on them it says: http://sharondippity.com/index.php?module=phpwscontacts&CONTACTS_MAN_OP=edit DB Error: no such table select * from _designsmod_phpwscontacts_settings [nativecode=1146 ** Table 'srenshaw_wbst1._designsmod_phpwscontacts_settings' doesn't exist] is there an easy way to clean up stuff so there' s no remnants? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570208&aid=1115697&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-01-21 17:14:22
|
Bugs item #1106844, was opened at 2005-01-21 09:14 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1106844&group_id=83662 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Wendall Cada (wendall911) Assigned to: Wendall Cada (wendall911) Summary: Search paging broken Initial Comment: We have a report of search paging being broken. I'll look into this and give a resolution here. Wendall ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1106844&group_id=83662 |
From: SourceForge.net <no...@so...> - 2005-01-21 17:00:32
|
Bugs item #1106833, was opened at 2005-01-21 09:00 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1106833&group_id=83662 Category: Database Group: None Status: Open Resolution: None Priority: 7 Submitted By: Wendall Cada (wendall911) Assigned to: Wendall Cada (wendall911) Summary: Evolution vcard import broken Initial Comment: Notice: Undefined offset: 2 in /usr/lib/php/Contact_Vcard_Parse.php on line 705 Notice: Undefined offset: 3 in /usr/lib/php/Contact_Vcard_Parse.php on line 706 Notice: Undefined offset: 4 in /usr/lib/php/Contact_Vcard_Parse.php on line 707 SQL: insert test_mod_phpwscontacts_contacts (image, firstname, middlename, lastname, maidenname, prefix, suffix, gender, email, phone_home, phone_pager, phone_mobile, phone_work, phone_fax, phone_other, company_name, company_title, company_street, company_city, company_state, company_zip, company_country, company_website, personal_street, personal_city, personal_state, personal_zip, personal_country, personal_website, str_birthday, str_deathday, str_anniversary, altemail1, altemail2, comments, visibility, mine, custom1, custom2, custom3, custom4, owner, editor, ip, label, created, updated, hidden, approved, id) values (NULL, 'XXXX', '', 'XXXXX', NULL, '', '', NULL, 'la...@fo...r', '(208) 263-xxxx', NULL, NULL, '(208) 265-9655', NULL, NULL, 'XXXX XXXX XXXXX', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', NULL, NULL, NULL, NULL, 'wendall911', 'wendall911', '127.0.0.1', 'XXXXX, XXXXX ', '1106326521', '1106326521', '0', '1', 1) unknown error ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1106833&group_id=83662 |
From: SourceForge.net <no...@so...> - 2004-12-04 16:56:22
|
Bugs item #1078943, was opened at 2004-12-04 10:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1078943&group_id=83662 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Greg Meiste (blindman1344) Assigned to: Nobody/Anonymous (nobody) Summary: Contact's email link in view broken Initial Comment: I just installed phpwsContacts 0.9.2 on phpwebsite 0.10.0 and added my first contact. The email address on view is output as: <a href="mailto:<a href="mailto:bli...@us...>bli...@us...</a>"><a href="mailto:bli...@us...">bli...@us...</a></a> I think the parseOutput function is being a little too helpful with the email address. As a fix, I changed the line in view.tpl to read: <tr valign="top"><td align="right">{EMAIL_TEXT}:</td><td>{EMAIL}</td></tr> Greg ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1078943&group_id=83662 |
From: SourceForge.net <no...@so...> - 2004-10-02 12:35:02
|
Bugs item #1038951, was opened at 2004-10-02 14:34 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1038951&group_id=83662 Category: Interface Group: None Status: Open Resolution: None Priority: 5 Submitted By: antonio laurienzo (tchitchi) Assigned to: Nobody/Anonymous (nobody) Summary: web site url Initial Comment: it generates an error in rendering link: web site url: www.mydomain.ext gives on clicking www.myphpwebsite/www.mydomain.ext ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1038951&group_id=83662 |
From: SourceForge.net <no...@so...> - 2004-09-22 14:51:31
|
Bugs item #1032702, was opened at 2004-09-22 10:51 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1032702&group_id=83662 Category: Interface Group: None Status: Open Resolution: None Priority: 5 Submitted By: drgrittani (drgrittani) Assigned to: Nobody/Anonymous (nobody) Summary: menu does not appear in 0.9.1 Initial Comment: Is this a known bug? I had to uninstall 0.9.1 and install 0.9.0 to get this to work. I posted this in the forum. By: drgrittani - drgrittani menu does not appear 2004-09-21 21:53 I have phpwscontacts 0.9.1 installed on phpwebsite 0.9.3-4. Everything installs fine, but I have no menus. I assume I'm supposed to have menus similar to the screenshot at http://www.phpwebsitemanual.dk/index.php? module=article&view=11&MMN_position=31:31 but I have nothing. Any help is much appreciated. Thanks. By: drgrittani - drgrittani RE: menu does not appear 2004-09-22 10:49 I solved it myself by uninstalling phpwscontacts 0.9.1 then installing 0.9.0. The menus are now there and everything works. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570207&aid=1032702&group_id=83662 |
From: SourceForge.net <no...@so...> - 2004-09-15 20:40:12
|
Feature Requests item #1028808, was opened at 2004-09-15 13:40 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1028808&group_id=83662 Category: None Group: None Status: Open Priority: 5 Submitted By: tcervo (tcervo) Assigned to: Nobody/Anonymous (nobody) Summary: A-Z Listing Initial Comment: It would be great to have an A-Z listing when browsing or listing, similar to the way the User Administration-->Manage Users screen works. Thanks! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=570210&aid=1028808&group_id=83662 |