Get rid of siteaccess in default siteaccess

Author Message

James Packham

Thursday 06 May 2004 2:07:44 am

Say I have two siteaccesses:

user (default)
admin

Currently when I browse the <b>user</b> site I can access any page without the siteaccess in the url for example:

www.mydomain.com/aboutme gives the same result as www.mydomain.com/user/aboutme

However when I browse around the site all links include the siteaccess in the url - is there a way to get rid of this, without changing the siteaccess to host?

Thanks in advance,

James

Jan Borsodi

Tuesday 11 May 2004 12:04:59 am

There is no way without modifying the kernel code.

If you open the <i>access.php</i> file in an editor and look for the lines

    if ( $access['type'] == EZ_ACCESS_TYPE_URI )
    {
        include_once( 'lib/ezutils/classes/ezsys.php' );
        eZSys::addAccessPath( $name );
    }

If you change it to

    if ( $access['type'] == EZ_ACCESS_TYPE_URI )
    {
        $defaultAccess = $ini->variable( 'SiteSettings', 'DefaultAccess' );
        if ( $access['name'] != $defaultAccess )
        {
            include_once( 'lib/ezutils/classes/ezsys.php' );
            eZSys::addAccessPath( $name );
        }
    }

it might work.

--
Amos

Documentation: http://ez.no/ez_publish/documentation
FAQ: http://ez.no/ez_publish/documentation/faq

James Packham

Tuesday 11 May 2004 2:13:58 am

Thanks Jan, but it didn't work :( Here's my output:

Parse error: parse error, expecting `T_VARIABLE' in /var/www/html/ezdir/access.php on line 47
Fatal error: Call to undefined function: accesstype() in /var/www/html/ezdir/index.php on line 301

I tried playing around, by moving the ezsys.php into out of the new if, but didn't have any luck. I'll probably have a deeper look into this later on and see if there are any further hacks necessary. I think it's worth figuring out though, as a lot of us are on constrictive hosting packages, where it can be difficult to modfiy the DNS appropiately.

Regards,

James

Jan Borsodi

Wednesday 12 May 2004 6:12:01 am

Are you sure you replaced just the lines I mentioned?
The error message says that there is something wrong with the PHP code in access.php,
perhaps there is a missing curly bracket (or one too many).

--
Amos

Documentation: http://ez.no/ez_publish/documentation
FAQ: http://ez.no/ez_publish/documentation/faq

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 18 2025 21:18:42
Script start
Timing: Jan 18 2025 21:18:42
Module start 'layout'
Timing: Jan 18 2025 21:18:42
Module start 'content'
Timing: Jan 18 2025 21:18:43
Module end 'content'
Timing: Jan 18 2025 21:18:43
Script end

Main resources:

Total runtime0.9288 sec
Peak memory usage4,096.0000 KB
Database Queries60

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0067 588.1641152.6563
Module start 'layout' 0.00670.0039 740.820339.5078
Module start 'content' 0.01060.9170 780.3281557.6953
Module end 'content' 0.92760.0012 1,338.023412.1094
Script end 0.9288  1,350.1328 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00350.3792160.0002
Check MTime0.00150.1665160.0001
Mysql Total
Database connection0.00080.089910.0008
Mysqli_queries0.868893.5399600.0145
Looping result0.00060.0664580.0000
Template Total0.893396.220.4466
Template load0.00200.220320.0010
Template processing0.891295.946620.4456
Template load and register function0.00010.010710.0001
states
state_id_array0.00100.103010.0010
state_identifier_array0.00140.148120.0007
Override
Cache load0.00170.1837330.0001
Sytem overhead
Fetch class attribute can translate value0.00060.069820.0003
Fetch class attribute name0.00110.123760.0002
XML
Image XML parsing0.00100.107520.0005
class_abstraction
Instantiating content class attribute0.00000.002080.0000
General
dbfile0.00090.0938230.0000
String conversion0.00000.001140.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
4content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
4content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
8content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
3content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 23
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs