• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

AzuCloud - Long Tail SEO Cloud

Status
Not open for further replies.
hi ich aleverything is in place but still no results

Code:
<!-- main template -->
                        {xen:raw $contents}
                        <xen:include template="dark_azucloud" />
                        <xen:if is="!{$visitor.user_id} && !{$hideLoginBar}">
 
You have to wait for Azucloud to fetch some data, keywords will appear when visitors come through search engines.
 
In Applications -> Azucloud -> Search Terms you can see the results, try to put your forum name in Google and click it, data should appear.
 
Dark think this could run on a none xenforo page? or is that a nono :D
Thanks

Yes just fake the contents of $controllerResponse when running the front_controller_pre_view event to be one of the controllers/actions it would normally render on, then take the contents of $containerParams and use it to render the dark_azucloud template.

PHP:
$derp = new XenForo_ControllerResponse_View();
$derp->controllerName = 'XenForo_ControllerPublic_Index';
$derp->controllerAction = 'index';

XenForo_CodeEvent::fire('front_controller_pre_view',
    array($this, &$derp, &$viewRenderer, &$containerParams)
);

Untested, may be some other steps involved...

Edit: Actually maybe call the event listener directly, since other mods could screw things up:

PHP:
Dark_AzuCloud_EventListener_FrontControllerPreView::listen($this, &$derp, &$viewRenderer, &$containerParams);
 
What is the XenForo_Controller for xenporta?

Thanks
seems to be

Code:
EWRporta_ControllerPublic_Portal:portal

tho I can't get that or media to work
Code:
EWRporta_ControllerPublic_Portal:portal
EWRmedio_ControllerPublic_Media:media,mediaView,categoryView,playlistView
 
EWRcarta_ControllerPublic_Wiki:index

EWRmedio_ControllerPublic_Media:index
EWRmedio_ControllerPublic_Media_Category:index
EWRmedio_ControllerPublic_Media_Keyword:index
EWRmedio_ControllerPublic_Media_Service:index
EWRmedio_ControllerPublic_Media_User:index
EWRmedio_ControllerPublic_Media_Playlist:index

EWRporta_ControllerPublic_Portal:index
 
Does this work for XenMedio ?

I'm using this, but it doesn't work on XenMedio:

Code:
EWRmedio_ControllerPublic_Media:index
EWRmedio_ControllerPublic_Media_Category:index
EWRmedio_ControllerPublic_Media_Keyword:index
EWRmedio_ControllerPublic_Media_Service:index
EWRmedio_ControllerPublic_Media_User:index
EWRmedio_ControllerPublic_Media_Playlist:index
 
Controllers:
Code:
XenForo_ControllerPublic_Index:index
XenForo_ControllerPublic_Thread:index
XenForo_ControllerPublic_Forum:index
XenForo_ControllerPublic_Member:member
XenForo_ControllerPublic_Page:index
XenForo_ControllerPublic_Category:index
EWRporta_ControllerPublic_Portal:portal
XenForo_ControllerPublic_Index:forum
EWRcarta_ControllerPublic_Wiki:index
EWRmedio_ControllerPublic_Media:index
EWRmedio_ControllerPublic_Media_Category:index
EWRmedio_ControllerPublic_Media_Keyword:index
EWRmedio_ControllerPublic_Media_Service:index
EWRmedio_ControllerPublic_Media_User:index
EWRmedio_ControllerPublic_Media_Playlist:index
EWRporta_ControllerPublic_Portal:index
11.webp

Salud2
 
Status
Not open for further replies.
Back
Top Bottom