Thread: [phpWebLog-devel] Error when submitting new settings
Brought to you by:
openface
From: Stephen L. <lo...@da...> - 2000-07-03 05:37:58
|
When I save settings or try to create a new layout I get ... Fatal error: Call to unsupported or undefined function imagecreatefromgif() in inc.d/common.inc.php on line 802 - Stephen Lawrence Jr. lo...@da... |
From: Alex C. <ac...@fo...> - 2000-07-03 05:40:25
|
in common.inc.php turn off GD $G_GD = 0; You didn't compile PHP with GD support. -----Original Message----- From: php...@li... [mailto:php...@li...]On Behalf Of Stephen Lawrence Sent: Sunday, July 02, 2000 10:33 PM To: phpweblog Subject: [phpWebLog-devel] Error when submitting new settings When I save settings or try to create a new layout I get ... Fatal error: Call to unsupported or undefined function imagecreatefromgif() in inc.d/common.inc.php on line 802 - Stephen Lawrence Jr. lo...@da... _______________________________________________ phpWebLog-devel mailing list php...@li... http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel |
From: philip o. <ph...@th...> - 2000-07-03 05:41:27
|
in common.inc.php you want : $G_GD = 0; as you may not have gc available. On Sun, 2 Jul 2000, Stephen Lawrence wrote: > When I save settings or try to create a new layout I get ... > > Fatal error: Call to unsupported or undefined function imagecreatefromgif() > in inc.d/common.inc.php on line 802 > > - > Stephen Lawrence Jr. > lo...@da... > > > > _______________________________________________ > phpWebLog-devel mailing list > php...@li... > http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel > |
From: philip o. <ph...@th...> - 2000-07-03 05:44:07
|
doh! gd ^ oh, seems my random fortune .sig has been have issues, what a strange .sig to get stuck on " Day of inquiry. You will be subpoenaed. " back to phpweblogg'in On Mon, 3 Jul 2000, philip olson wrote: > > in common.inc.php you want : > > $G_GD = 0; > > as you may not have gc available. > > On Sun, 2 Jul 2000, Stephen Lawrence wrote: > > > When I save settings or try to create a new layout I get ... > > > > Fatal error: Call to unsupported or undefined function imagecreatefromgif() > > in inc.d/common.inc.php on line 802 > > > > - > > Stephen Lawrence Jr. > > lo...@da... > > > > > > > > _______________________________________________ > > phpWebLog-devel mailing list > > php...@li... > > http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel > > > > > _______________________________________________ > phpWebLog-devel mailing list > php...@li... > http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel > |
From: philip o. <ph...@th...> - 2000-07-03 05:59:16
|
here is an initial error i got : Warning: Failed opening '/home/jason/html/phpweblog/etc/phpweblog.php' for inclusion in /home/philip/aint/inc.d/blocks.inc on line 75 73 } elseif ($A["Type"]==1) { 74 # include 75 include($A["Content"]); 76 } so like any guru programmer, i commented it out. seems fine but i assume i can't use include blocks now. hmm. any ideas? could i include with an exec or system call vs what is used now (eval?) learning, philip |
From: Alex C. <ac...@fo...> - 2000-07-03 06:07:01
|
What type of block is this happening on? What does the block look like if its an include? Did you enter the full path of the include file? No quotes, parens, semi colons.. etc... -----Original Message----- From: php...@li... [mailto:php...@li...]On Behalf Of philip olson Sent: Sunday, July 02, 2000 10:55 PM To: phpweblog Subject: Re: [phpWebLog-devel] Error when submitting new settings here is an initial error i got : Warning: Failed opening '/home/jason/html/phpweblog/etc/phpweblog.php' for inclusion in /home/philip/aint/inc.d/blocks.inc on line 75 73 } elseif ($A["Type"]==1) { 74 # include 75 include($A["Content"]); 76 } so like any guru programmer, i commented it out. seems fine but i assume i can't use include blocks now. hmm. any ideas? could i include with an exec or system call vs what is used now (eval?) learning, philip _______________________________________________ phpWebLog-devel mailing list php...@li... http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel |
From: philip o. <ph...@th...> - 2000-07-03 06:13:13
|
there is a bug ... err, i mean feature. yes, a feature. one of the new security features is that includes are to have to slashes : //your/full/path/include.inc philip <G> On Sun, 2 Jul 2000, Alex Chun wrote: > What type of block is this happening on? > > What does the block look like if its an include? > Did you enter the full path of the include file? No quotes, > parens, semi colons.. etc... > > > -----Original Message----- > From: php...@li... > [mailto:php...@li...]On Behalf Of philip > olson > Sent: Sunday, July 02, 2000 10:55 PM > To: phpweblog > Subject: Re: [phpWebLog-devel] Error when submitting new settings > > > here is an initial error i got : > > Warning: Failed opening '/home/jason/html/phpweblog/etc/phpweblog.php' for > inclusion in /home/philip/aint/inc.d/blocks.inc on line 75 > > 73 } elseif ($A["Type"]==1) { > 74 # include > 75 include($A["Content"]); > 76 } > > so like any guru programmer, i commented it out. seems fine but i assume > i can't use include blocks now. > > hmm. any ideas? could i include with an exec or system call vs what is > used now (eval?) > > learning, > philip > > > _______________________________________________ > phpWebLog-devel mailing list > php...@li... > http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel > > > _______________________________________________ > phpWebLog-devel mailing list > php...@li... > http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel > |
From: philip o. <ph...@th...> - 2000-07-03 06:06:37
|
i know what some of you were thinking ;) one of the blocks in data.sql has a reference to this directory which does not exist on my jasonless system. phew...i had ill feelings towards myself for a second there. philip |
From: Alex C. <ac...@fo...> - 2000-07-03 06:08:28
|
See.. the phpmyadmin link helped .. :) Should be a standard feature. -----Original Message----- From: php...@li... [mailto:php...@li...]On Behalf Of philip olson Sent: Sunday, July 02, 2000 11:02 PM To: phpweblog Subject: [phpWebLog-devel] solved i know what some of you were thinking ;) one of the blocks in data.sql has a reference to this directory which does not exist on my jasonless system. phew...i had ill feelings towards myself for a second there. philip _______________________________________________ phpWebLog-devel mailing list php...@li... http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel |
From: Jason H. <ope...@ey...> - 2000-07-03 05:43:08
|
Change in common.inc.php: $G_GD = 1 to $G_GD = 0 Your server lacks support for the gd library. this is required for image creation. The above boolean will disable use of the function. Stephen Lawrence wrote: > > When I save settings or try to create a new layout I get ... > > Fatal error: Call to unsupported or undefined function imagecreatefromgif() > in inc.d/common.inc.php on line 802 > > - > Stephen Lawrence Jr. > lo...@da... > > _______________________________________________ > phpWebLog-devel mailing list > php...@li... > http://lists.sourceforge.net/mailman/listinfo/phpweblog-devel |