Problem1:
After adding a view, the next screen which i get is the edit view, when i click on the add symbol near the Argument it throws a popup error message ‘An error occured on /admin/build/views/ajax/add-item/’. When i press OK it remains the same.
Problem2:
Same problem. Using the same versions of Drupal, XAMPP and Views.
Clicking any of the fields to change settings gives me a popup error, and the little spinning icon just continues to spin. Clicking additional items gives similar results and lots of spinning icons.
For example Page Name on a new node view named List:
An error occurred at /admin/build/views/ajax/display/list/page_1/display_title/
Clearing the popup and clicking List to go back to the main Views page gives this error:
* warning: Parameter 3 to views_ui_ajax_form() expected to be a reference, value given in V:\xampp\htdocs\includes\menu.inc on line 348.
* warning: Parameter 3 to views_ui_ajax_form() expected to be a reference, value given in V:\xampp\htdocs\includes\menu.inc on line 348.
V: of course is where XAMPP is installed.
I get similair “Expected to be a reference errors with some other modules, but they don’t give popups and still work. With the exception of Taxonomy Manager. It will not work at all once a vocabulary is selected. It gives this error:
warning: Parameter 1 to theme_taxonomy_manager_tree() expected to be a reference, value given in V:\xampp\htdocs\includes\theme.inc on line 617.
Taxonomy Manager will show the Toolbar, but nothing else.
Problem3:
using XAMPP Lite 1.7.2 (Windows), Drupal 6.14, Garland theme.
No other modules installed except Views 6.x-2.6.
Solution:
I find a bunch of warnings and errors relating to “reference expected value passed” kind
of php related issues. It seems like it is because of the syntax change from PHP 4 to 5.3
Anyways I took a gamble and changed the &$ to $ in the sites/all/modules/views/includes/admin.inc
and there is one place where it has the &$ combination to $.
Seems to work now. Keep fingers crossed