Hello

I'm doing a website in a local server with ubuntu server 12.04 and Drupal 7.
I've doing export page and works ok but if i change a frontpage with a Grid and with taxonomy menu , index of frontpage size it's 0 kb. The logs say:
Notice: Undefined property: stdClass::$data in _html_export_get_page_data() (line 300 of ........./sites/all/modules/html_export/html_export.module).

Thanks

Comments

btopro’s picture

the paths for taxonomy menu items need to be added to the export routine or else when it goes to grab that path (front page) from the path that's actually referenced it'll return nothing.

witoszek’s picture

Ok but a simpy question:

Where i need to put path? becouse i select in Path selectors * All , and in other paths to export and/or/ frontpage and an/ or url/frontpage and index.html = 0

Thanks

btopro’s picture

Look at the API, you need to actually teach the HTML Export what paths are able to be crawled. Doing * / won't do anything cause the exporter doesn't know where to look for those paths.

witoszek’s picture

Hello

Ok , so Do i need to do a forms to teach the html export? .It's right?
I see that there it's no forms of configuration( or maybe i can not found it) , the only way it's go to html export with the main menu.It'right or not?
And is it necessary to activate HTML Export OG Integration ? Becouse i was triying to install it but i've got a white page with Drupal 7.I will do a test again , i hope , tomorrow.

And thanks for a quickly answer.

Daniel Witoszek Arias

btopro’s picture

You need to make a module that teaches html export where the paths are. The format is in the API and you'll get the paths either by typing them out by hand or querying the database. You can see in html_export_og how it adds support for content just within the currently active group. This hasn't been fully ported from D6 so the calls probably aren't working.