Forum OpenACS Q&A: PROBLEM URGENT!!!!!!!!!!!!

Collapse
Posted by camilo fernandez on
hi i have acs an aolserver runnig in my server and one day a post a new forum and the system crash with a GET problem when i restart it, all the procedures in tcl failed and when i see a page it shows the @var@ tag on the field and i dont know what to do please help me i have tried everything i have openacs 3.X with oracle please help me!!!!!!!
Collapse
Posted by Jade Rubick on
Hi Camilo,

If you'd like some help, my recommendation is to post a lot more details on the problems you ran into, and what you've tried, what error messages you get, and more on your configuration.

Collapse
Posted by Brad Duell on
Also, I think running a sql file something similar to the following will get you back in (this, of course, is Oracle):

declare
  v_group_id acs_objects.object_id%TYPE;
  v_object_id acs_objects.object_id%TYPE;
begin
  select min(group_id) into v_group_id from groups where group_name='The Public';
  select min(object_id) into v_object_id from acs_objects where object_type='apm_service';
  acs_permission.grant_permission(object_id => v_object_id, grantee_id => v_group_id, privilege => 'read');
end;
/
show errors;