| Previous topic :: Next topic |
| Author |
Message |
worldnetsource
Joined: 11 Jan 2006
Posts: 27
Location: Southern California
|
| Posted: Thu May 31, 2007 5:15 pm Post subject: Major bug v5.03 that will not allow rollout |
|
|
I have just installed 5.03 on my production server (Suse 10.1 php5.1 using IE7)
There is a problem with creating custom views in contacts and leads. If you set the new view to be the default view you will not see your contacts or leads any more. I just set up another install and created a new view in leads but did not set it to the default view. I had to sign out and then back in to get back to the stock default view. When it select the new view I created it come back with an erro of (undefined) where the list should be.
Also, now the contacts do not show the related potentials. I created a potential and then selected a contact to associate with it. That works fine and connects back the the contact record. But when you are in the contact and looking for related potentials nothing show in the list.
I am still trying to get this new version online but no I have to try and fix the custom view problem before I can go foward. This really sucks because almost everywhere I touch I find new bugs that were not in the on svn code. |
|
| Back to top |
|
worldnetsource
Joined: 11 Jan 2006
Posts: 27
Location: Southern California
|
| Posted: Thu May 31, 2007 5:41 pm Post subject: Re: Major bug v5.03 that will not allow rollout |
|
|
Good new the I tried to recreate the custom view bug and contact to potential bug on the vtiger demo and it works fine. All of my older versions of 5.02 and svn of 5.03 work correctly on my server.
So, it must be a setting in my Apache or php that is required now. I will investigate further. |
|
| Back to top |
|
worldnetsource
Joined: 11 Jan 2006
Posts: 27
Location: Southern California
|
| Posted: Thu May 31, 2007 7:28 pm Post subject: Re: Major bug v5.03 that will not allow rollout |
|
|
I edited the database to set the default view back to all and can see my contacts and leads now. I also checked all of the php settings and Suse requirements. I still cannot find the problem. The custom views and potentials to contact relationship list is related somehow. If I change any of the custom views that are provided or create a new view all I get is a blank screen with (undefined) indicated as the error.
Please help, I really need to get this going to save face with my Company. |
|
| Back to top |
|
joebordes
Joined: 18 Aug 2006
Posts: 1136
Location: Alicante/Valencia, Spain
|
| Posted: Thu May 31, 2007 8:38 pm Post subject: Re: Major bug v5.03 that will not allow rollout |
|
|
Hi,
There was a problem commented in another thread to this respect. It had to do with the variable HTTP_POST_VARS that had to be changed to $_POST or something like that. Try that and see tell us if it works.
Regards, Joe
TSolucio |
|
| Back to top |
|
worldnetsource
Joined: 11 Jan 2006
Posts: 27
Location: Southern California
|
| Posted: Thu May 31, 2007 10:04 pm Post subject: Re: Major bug v5.03 that will not allow rollout |
|
|
Great new and thanks for the help.
I changed the following and custom views are now working when I create new ones. I still have to figure out how to delete the old ones from the database but thats ok. By the way this still did not fix the contact to potential relation list view so I am still searching.
Code changed:
B: go to /modules/CustomView/Save.php and edit line 39 which says:
$allKeys = array_keys($HTTP_POST_VARS);
it should say
$allKeys = array_keys($_REQUEST);
now you can create custom views again
Thanks to blakebinkley for this tip. |
|
| Back to top |
|
| |