Help SigGen Not working for me

A signature and avatar generator addon

Moderator: zanix

Help SigGen Not working for me

Postby KaguraS » Thu Feb 21, 2008 12:50 pm

What can i do? is a clean install
Attachments
User avatar
KaguraS
WR.net Apprentice
WR.net Apprentice
 
Posts: 40
Joined: Wed Feb 20, 2008 8:44 am

Help SigGen Not working for me

Postby zanix » Thu Feb 21, 2008 1:34 pm

Lets start with the first error
The directory shown needs write permissions

safe_mode is on, this is just a warning, most times it doesn't affect anything

ini_set is disabled, this kinda sucks because SigGen can't report errors

Could not check for latest version just means that the update check cannot check for a newer version (0.2.6 is the last version for roster 1.7.3, so this is ok)

Line 543 in siggen.php (the main generator file) is this
Code: Select all
        $txtsize = @imageTTFBBox$size,0,$font,$text )
            or 
debugMode((__LINE__),$php_errormsg);        // Gets the points of the image coordinates 


This probably means that your server doesn't support the use of imageTTFBBox function, which probably means that GD doesn't support freetype on your server

This code will check the status of your GD support on your server
put in somewhere and run it (EX name it gd.php and put it in the root of your server and go to http://berserker.coolpage.biz/gd.php )
Code: Select all
<?php
function describeGDdyn()
{
    echo 
"\n<ul><li>GD support: ";
    if(
function_exists("gd_info"))
    {
        echo 
"<span style=\"color:#00ff00;\">yes</span>";
        
$info gd_info();
        
$keys array_keys($info);
        for(
$i=0$i<count($keys); $i++)
        {
            if(
is_bool($info[$keys[$i]]))
                echo 
"</li>\n<li>" $keys[$i] .": " yesNo($info[$keys[$i]]);
            else
                echo 
"</li>\n<li>" $keys[$i] .": " $info[$keys[$i]];
        }
    }
    else
        echo 
"<span style=\"color:#ff0000;\">no</span>";

    echo 
"</li></ul>";
}

function 
yesNo($bool)
{
    if(
$bool) return "<span style=\"color:#00ff00;\"> yes</span>";
    else return 
"<span style=\"color:#ff0000;\"> no</span>";
}

echo 
describeGDdyn();

?>

Run this and post the output of this file here
Last edited by zanix on Thu Feb 21, 2008 11:28 pm, edited 1 time in total.
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Help SigGen Not working for me

Postby KaguraS » Thu Feb 21, 2008 8:46 pm

Thanks for reply :)

  • GD support: yes
  • GD Version: bundled (2.0.34 compatible)
  • FreeType Support: yes
  • FreeType Linkage: with freetype
  • T1Lib Support: no
  • GIF Read Support: yes
  • GIF Create Support: yes
  • JPG Support: yes
  • PNG Support: yes
  • WBMP Support: yes
  • XPM Support: no
  • XBM Support: yes
  • JIS-mapped Japanese Font Support: no
User avatar
KaguraS
WR.net Apprentice
WR.net Apprentice
 
Posts: 40
Joined: Wed Feb 20, 2008 8:44 am

Help SigGen Not working for me

Postby zanix » Thu Feb 21, 2008 11:31 pm

Open addons/siggen/siggen.php in a text editor

Find this
Code: Select all
        $txtsize = @imageTTFBBox$size,0,$font,$text )
            or 
debugMode((__LINE__),$php_errormsg);        // Gets the points of the image coordinates 


Replace with this
Code: Select all
        $txtsize imageTTFBBox$size,0,$font,$text );        // Gets the points of the image coordinates 


Then view the image in its own window or tab
Right click on the image and select view source
Then post the first lines or so
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Help SigGen Not working for me

Postby KaguraS » Fri Feb 22, 2008 3:10 am

This?

Code: Select all
<img src="index.php?name=WoWRosterDF&amp;file=addon&amp;roster_addon_name=siggen&amp;mode=signature&amp;member=Kagura&amp;saveonly=0&amp;etag=0" alt="Kagura signature image"></td>
    </
tr>  </tbody></table>

<!-- 
START [close-simplebordercontainer -->
    </
td>

    <
td class="simplebordercenterright sbluebordercenterright"></td>
  </
tr>
  <
tr>
   <
td class="simpleborderbotleft sblueborderbotleft"></td>
   <
td class="simpleborderbot sblueborderbot"></td
User avatar
KaguraS
WR.net Apprentice
WR.net Apprentice
 
Posts: 40
Joined: Wed Feb 20, 2008 8:44 am

Help SigGen Not working for me

Postby zanix » Fri Feb 22, 2008 4:46 am

Browse to just
Code: Select all
http://berserker.coolpage.biz/index.php?name=WoWRosterDF&file=addon&roster_addon_name=siggen&mode=signature&member=Kagura&saveonly=0&etag=0

Right click on the image and select view source
Then post the first lines or so
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Help SigGen Not working for me

Postby KaguraS » Fri Feb 22, 2008 5:04 am

Right click in the image, but there's no option in the menu to view the source..


And using a tool, this is the source

Code: Select all
‰PNG

???
IHDR??É???6???^¢:???PLTEÿÿÿÿ???ÿ???ÿ???Ÿl‚??IDAThíV[rë Udï@Ã
2Ãü‘ý¯é¢'ØyÜδIj—“ÄEBH:Hà ì
User avatar
KaguraS
WR.net Apprentice
WR.net Apprentice
 
Posts: 40
Joined: Wed Feb 20, 2008 8:44 am

Help SigGen Not working for me

Postby zanix » Fri Feb 22, 2008 5:17 am

Nothing before this?
Code: Select all
‰PNG
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Help SigGen Not working for me

Postby KaguraS » Fri Feb 22, 2008 5:35 am

nothing :|
Attachments
index.php.png
index.php.png (881 Bytes) Viewed 1429 times
Last edited by KaguraS on Fri Feb 22, 2008 5:40 am, edited 1 time in total.
User avatar
KaguraS
WR.net Apprentice
WR.net Apprentice
 
Posts: 40
Joined: Wed Feb 20, 2008 8:44 am

Help SigGen Not working for me

Postby zanix » Fri Feb 22, 2008 5:55 am

See if that file exists
/home/vhosts/berserker.coolpage.biz/modules/WoWRosterDF/fonts/GREY.TTF

If that doesn't work, I'm going to need access to your site
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Help SigGen Not working for me

Postby KaguraS » Fri Feb 22, 2008 6:33 am

ok access my site, I don't worry about that... what accounts you need?
User avatar
KaguraS
WR.net Apprentice
WR.net Apprentice
 
Posts: 40
Joined: Wed Feb 20, 2008 8:44 am

Help SigGen Not working for me

Postby zanix » Fri Feb 22, 2008 7:20 am

I would need an admin account
You can pm me any details
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Help SigGen Not working for me

Postby zanix » Fri Feb 22, 2008 8:39 am

It seems your server's max post size is set really low
And I cannot check it with system info in DF's admin because phpinfo() is disabled on your server

Sorry, but that effectively removes most of my ability to troubleshoot your problem
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Help SigGen Not working for me

Postby KaguraS » Sat Feb 23, 2008 12:25 am

Well, now I changed the host... and now the problem is, that I cant even install the SigGen

Error

Code: Select all
Password not defined or empty     
   
No...you can't have an empty password
What's the point of having an empty password?

I'm sorry, but you need some kind of a password set in Roster Config to get in


and is a clean install... now whats wrong?
User avatar
KaguraS
WR.net Apprentice
WR.net Apprentice
 
Posts: 40
Joined: Wed Feb 20, 2008 8:44 am

Help SigGen Not working for me

Postby zanix » Sat Feb 23, 2008 12:34 am

The version of SigGen that comes with RosterDF is old
Download 0.2.6 and overwrite
Read the Forum Rules, the WiKi, and Search before posting!
WoWRoster v2.1 - SigGen v0.3.3.523 - WoWRosterDF
User avatar
zanix
Admin
Admin
WoWRoster.net Dev Team
WoWRoster.net Dev Team
UA/UU Developer
UA/UU Developer
 
Posts: 5546
Joined: Mon Jul 03, 2006 8:29 am
Location: Idaho Falls, Idaho
Realm: Doomhammer (PvE) - US

Next

Return to SigGen

Who is online

Users browsing this forum: No registered users and 1 guest

cron