Publisher does not support the Fluid field type. Please do not contact asking when support will be available.

If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.

Ticket: Blank Site after installing the Add-on.

Status Resolved
Add-on / Version Publisher
Severity Blocker
EE Version 24

GIGA

Apr 22, 2013

Installing the Add-on has completely crashed my Website. Frontend & Backend just showing blank site now. That should i do now?

#1

Brian Litzinger

What version of EE and PHP are you using? Did you turn on debugging? In your config.php file:

$config[‘debug’] = 2;

In your index.php files, set $debug = 1;

That should show any errors.

#2

Dimitri Neufeld

A PHP Error was encountered

Severity: Warning

Message: require_once(/home/neufeld/public_html/afi/system/expressionengine/third_party/publisher/models/Publisher_relationship_rel.php): failed to open stream: No such file or directory

Filename: models/publisher_relationship.php

Line Number: 14 Fatal error: require_once(): Failed opening required ‘/home/neufeld/public_html/afi/system/expressionengine/third_party/publisher/models/Publisher_relationship_rel.php’ (include_path=’.:/usr/share/php:/usr/share/pear’) in /home/neufeld/public_html/afi/system/expressionengine/third_party/publisher/models/publisher_relationship.php on line 14

#3

Brian Litzinger

What version of PHP are you using?

#4

Brian Litzinger

And you’re positive this file exists and is readable? /third_party/publisher/models/Publisher_relationship_rel.php

#5

Brian Litzinger

The FTP info you provided doesn’t seem to be working.

#6

Dimitri Neufeld

PHP Version 5.3.10-1ubuntu3.4

#7

Dimitri Neufeld

i can not find that file:

/third_party/publisher/models/Publisher_relationship_rel.php

#8

Dimitri Neufeld

[edited] Removed the FTP info you posted, this is publicly visible. If you want to send new credentials edit the ticket and update the information in the provided fields, not the comments field.

#9

BoldMinded (Brian)

Did the new file I emailed work?

#10

Dimitri Neufeld

i didn’t receive it please resend it to neufeld@me.com

#11

BoldMinded (Brian)

That address didn’t work, it got kicked back. Update the models/publisher_relationship.php file with this:

<?php

// Determine which model to use based on the EE app version.

if (version_compare(APP_VER, '2.6', '>='))
{
    // New relationship field, aka Zero Wing
    require_once PATH_THIRD .'publisher/models/Publisher_relationship_relationship.php';
    eval('class Publisher_relationship extends Publisher_relationship_relationship {}');
}
else
{
    // Old relationship field
    require_once PATH_THIRD .'publisher/models/Publisher_relationship_rel.php';
    eval('class Publisher_relationship extends Publisher_relationship_rel {}');
}
#12

BoldMinded (Brian)

Crap, I meant this:

<?php

// Determine which model to use based on the EE app version.

if (version_compare(APP_VER, '2.6', '>='))
{
    // New relationship field, aka Zero Wing
    require_once PATH_THIRD .'publisher/models/publisher_relationship_relationship.php';
    eval('class Publisher_relationship extends Publisher_relationship_relationship {}');
}
else
{
    // Old relationship field
    require_once PATH_THIRD .'publisher/models/publisher_relationship_rel.php';
    eval('class Publisher_relationship extends Publisher_relationship_rel {}');
}
#13

Dimitri Neufeld

replaced and still doesn’t work.

#14

Dimitri Neufeld

i tried to install it on ExpressionEngine 2.5.3 i got the same error.

#15

Dimitri Neufeld

just downloaded the new released version and its fixed the problem. thanks

Login to reply