Forums / Developer / how to use ezurl() equivalent in a php script (launched by CLI...)

how to use ezurl() equivalent in a php script (launched by CLI...)

Author Message

Jerome Despatis

Tuesday 28 June 2011 10:52:40 am

Hello,

I've a small script that needs to print the full url to a file (full url means including the http://domain.com).

I need, in fact, to perform the same operation (in php) as the template operator ezurl(), so I use eZURI::transformURI.

Here are the 2 lines of code:

$url = "/extension/djgfxstock/design/standard/images/foo.png";
eZURI::transformURI($url, false, 'full');

This piece of code perfectly works if I put it in a module/view, but the $url keeps unchanged if I use those 2 lines in a php scriptthat  I launch with php cli, or even with runcronjobs...

The solution would be (maybe) to force the load of a siteaccess, but even with that, I'm not sure it would work...

(indeed runcronjobs loads a siteaccess, and even with that, impossible to use absolute url)

The only solution I've found (which is crappy at a very high level) is to fill in, before my 2 lines, $_SERVER['HTTP_HOST'] and $_SERVER['SERVER_PORT']

Any idea is welcome!

Marko Žmak

Wednesday 29 June 2011 3:52:32 am

The eZURI::transformURI() method, when used with 'full' parameter gets the hostname from the server HTTP_* variables.

Since this variables are not available when runing cli scripts (this is a restriction of Apache/PHP and not eZP), you cannot get the hostname in such a case.

One soultion would be to get the hostname from an INI setting.

--
Nothing is impossible. Not if you can imagine it!

Hubert Farnsworth

Jerome Despatis

Friday 01 July 2011 12:59:33 am

Exactly, from INI settings

But, even by using ini settings, it's impossible to use eZURI::transformURI(), as it checks only server variables

As a result, I've added a feature request:

http://issues.ez.no/IssueView.php?Id=18423

Maybe it would be interesting to have ?

Because, the only way I've found for now to make ezurl() and eZURI::transformURI() work with 'full' parameter is to add a very ugly hack:

<code>

 if (eZSys::isShellExecution())
        {
            if (!eZSys::serverVariable('HTTP_HOST', true))
            {
                $siteIni = eZINI::instance();
                // Won't work if SiteURL contains other things than just hostname...
                eZSys::setServerVariable('HTTP_HOST', $siteIni->variable('SiteSettings', 'SiteURL'));
            }
            if (!eZSys::serverVariable('SERVER_PORT', true))
            {
                eZSys::setServerVariable('SERVER_PORT', 80);
            }
        }

</code>

eZ debug

Timing: Jan 29 2025 13:40:06
Script start
Timing: Jan 29 2025 13:40:06
Module start 'content'
Timing: Jan 29 2025 13:40:06
Module end 'content'
Timing: Jan 29 2025 13:40:07
Script end

Main resources:

Total runtime0.1291 sec
Peak memory usage2,048.0000 KB
Database Queries141

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0054 593.8203180.8047
Module start 'content' 0.00540.0054 774.625098.0859
Module end 'content' 0.01080.1182 872.7109527.1563
Script end 0.1290  1,399.8672 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00302.3054200.0001
Check MTime0.00120.9278200.0001
Mysql Total
Database connection0.00060.440710.0006
Mysqli_queries0.087767.89541410.0006
Looping result0.00110.82791390.0000
Template Total0.117991.310.1179
Template load0.00080.646610.0008
Template processing0.117090.620910.1170
Override
Cache load0.00050.376510.0005
Sytem overhead
Fetch class attribute can translate value0.00060.438310.0006
XML
Image XML parsing0.00020.172610.0002
General
dbfile0.00574.3937200.0003
String conversion0.00000.004630.0000
Note: percentages do not add up to 100% because some accumulators overlap

CSS/JS files loaded with "ezjscPacker" during request:

CacheTypePacklevelSourceFiles
CSS0extension/community/design/community/stylesheets/ext/jquery.autocomplete.css
extension/community_design/design/suncana/stylesheets/scrollbars.css
extension/community_design/design/suncana/stylesheets/tabs.css
extension/community_design/design/suncana/stylesheets/roadmap.css
extension/community_design/design/suncana/stylesheets/content.css
extension/community_design/design/suncana/stylesheets/star-rating.css
extension/community_design/design/suncana/stylesheets/syntax_and_custom_tags.css
extension/community_design/design/suncana/stylesheets/buttons.css
extension/community_design/design/suncana/stylesheets/tweetbox.css
extension/community_design/design/suncana/stylesheets/jquery.fancybox-1.3.4.css
extension/bcsmoothgallery/design/standard/stylesheets/magnific-popup.css
extension/sevenx/design/simple/stylesheets/star_rating.css
extension/sevenx/design/simple/stylesheets/libs/fontawesome/css/all.min.css
extension/sevenx/design/simple/stylesheets/main.v02.css
extension/sevenx/design/simple/stylesheets/main.v02.res.css
JS0extension/ezjscore/design/standard/lib/yui/3.17.2/build/yui/yui-min.js
extension/ezjscore/design/standard/javascript/jquery-3.7.0.min.js
extension/community_design/design/suncana/javascript/jquery.ui.core.min.js
extension/community_design/design/suncana/javascript/jquery.ui.widget.min.js
extension/community_design/design/suncana/javascript/jquery.easing.1.3.js
extension/community_design/design/suncana/javascript/jquery.ui.tabs.js
extension/community_design/design/suncana/javascript/jquery.hoverIntent.min.js
extension/community_design/design/suncana/javascript/jquery.popmenu.js
extension/community_design/design/suncana/javascript/jScrollPane.js
extension/community_design/design/suncana/javascript/jquery.mousewheel.js
extension/community_design/design/suncana/javascript/jquery.cycle.all.js
extension/sevenx/design/simple/javascript/jquery.scrollTo.js
extension/community_design/design/suncana/javascript/jquery.cookie.js
extension/community_design/design/suncana/javascript/ezstarrating_jquery.js
extension/community_design/design/suncana/javascript/jquery.initboxes.js
extension/community_design/design/suncana/javascript/app.js
extension/community_design/design/suncana/javascript/twitterwidget.js
extension/community_design/design/suncana/javascript/community.js
extension/community_design/design/suncana/javascript/roadmap.js
extension/community_design/design/suncana/javascript/ez.js
extension/community_design/design/suncana/javascript/ezshareevents.js
extension/sevenx/design/simple/javascript/main.js

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1pagelayout.tpl<No override>extension/sevenx/design/simple/templates/pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0002 secs