chnm / anthologize

Anthologize is a free, open-source, WordPress-based platform for publishing. Grab posts from your WordPress blog, pull in feeds from external sites, or create new content directly in Anthologize. Then outline, order, and edit your work, crafting it into a coherent volume for export in several formats, including PDF, EPUB, and TEI.
http://anthologize.org
GNU General Public License v3.0
174 stars 29 forks source link

What PHP modules are required for execution of Anthologize? #49

Closed chrbayer84 closed 12 years ago

chrbayer84 commented 12 years ago

This is somewhat more a question than an issue, but I did not find anything other than TCPDF. Are there any more required modules? I'm getting a 500 when clicking the "Export" button, nothing in the logs.

patrickmj commented 12 years ago

The only other ones are pretty standard PHP modules: DOM, XSL, ZIP. Can't think of others off the top of my head. Memory and execution time can sometime cause issues, though. What format are you trying to export?

chrbayer84 commented 12 years ago

It is failing on PDF, HTML and RTF. I'll check if I have these modules. Execution time is set to the value you recommend in the Readme file (there is no waiting time before failing, you get an instant 500 after clicking export)

patrickmj commented 12 years ago

As a basic test, try the Anthologize TEI format, too. All the other formats ultimately depend on that one working first.

On 09/21/2011 09:22 AM, chrbayer84 wrote:

It is failing on PDF, HTML and RTF. I'll check if I have these modules. Execution time is set to the value you recommend in the Readme file (there is no waiting time before failing, you get an instant 500 after clicking export)

chrbayer84 commented 12 years ago

Ok, even TEI gives me a 500. But the strange thing is, I only see the 500 in Google Chrome, Firefox only spits out an empty page.

patrickmj commented 12 years ago

One thing that often helps (and will be changed in the next release), is that line 34 in includes/class-tei-dom.php sometimes causes problems:

@apply_filters('init');

Maybe try commenting that out.

chrbayer84 commented 12 years ago

Ok, tried the latter one, that helped! Thank you!