Sunday 03 August 2003 2:04:21 pm
Apologies if this is something covered somewhere in the documentation; I've been through the documentation at the site, as well as at manual.ez.no, the INSTALL file in /doc and a eZ publish Help Wiki, and have found nothing that seems to fit my situation. After I log into the admin site, if I try to edit folders, articles, users or groups, I get the error above. I do not get the error when editing users and the like if I use the drop-down in the left-hand nav column. What gives? The form (trying to edit at that point requires clicking a form button) action is: /index.php/admin/content/action The link for the anonymous user (just as an example of a bad link) is: /index.php/admin/content/view/full/11 Note that there are two identical links, one nested inside the other, surrounding the 'anonymous user' text. I installed eZ publish 3.1 on Mac OS X.2.6. I have virtual hosts set up. The following is in my httpd.config file (note that the '.dev' is my local development domain; I'm running my own BIND server):
<VirtualHost admin.ezpublish.dev>
DocumentRoot /Users/setmajer/Sites/ezpublish
ServerName admin.ezpublish.dev
<Directory /Users/setmajer/Sites/ezpublish>
Options FollowSymLinks Indexes ExecCGI
AllowOverride All
</Directory>
RewriteEngine On
RewriteRule !\.(gif|css|jpg|png|js)$ /index.php </VirtualHost>
<VirtualHost www.ezpublish.dev>
DocumentRoot /Users/setmajer/Sites/ezpublish
ServerName www.ezpublish.dev
<Directory /Users/setmajer/Sites/ezpublish>
Options FollowSymLinks Indexes ExecCGI
AllowOverride All
</Directory>
RewriteEngine On
RewriteRule !\.(gif|css|jpg|png|js)$ /index.php </VirtualHost> mod_rewrite is loaded. I have also added the following to my .htaccess file: php_value memory_limit 20MB In /settings/override/site.ini.append I have:
[SiteSettings]
SiteName=eZ publish test site
SiteURL=www.ezpublish.dev/index.php/test DefaultAccess=user
[SiteAccessSettings]
CheckValidity=false
MatchOrder=host
HostMatchType=map
HostMatchMapItems[]=ezpublish.dev;user
HostMatchMapItems[]=www.ezpublish.dev;user
HostMatchMapItems[]=admin.ezpublish.dev;admin
DebugAccess=enabled DebugExtraAccess=enabled In /settings/siteaccess/admin/site.ini.append I have:
[SiteSettings]
DefaultPage=/content/view/full/2 LoginPage=custom
[SiteAccessSettings] RequireUserLogin=true
[DesignSettings] SiteDesign=admin Any help would be much appreciated.
|