Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
2 registered (Jake, A-GATE), 29 Guests and 12 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 12/20/03
Posts: 4424
Top Posters (30 Days)
Ruben 51
Gizmo 24
DennyP 24
Dunny 15
SteveS 13
AllenAyres 12
SD 10
dbremer 10
drkknght00 9
doug 8
Latest Photos
OK Corral Shoot Out
Testing
Basildon Train Station
Basildon Town Centre looking from the rounderbout
Basildon Town Square
Page 4 of 7 < 1 2 3 4 5 6 7 >
Topic Options
#206102 - 02/06/08 05:40 PM Re: captcha image problems [Re: Scott Cargill]
Gizmo Offline

Registered: 06/05/06
Posts: 14995
Loc: Portland, OR; USA
Your ImageMagick install was not compiled with JPEG support on your serer; it's a server issue that you should have your server tech look at.
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic.
UBB Modifications, Styling, Coding Services, Disaster Recovery, and more!
Top
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#206156 - 02/07/08 09:19 PM Re: captcha image problems [Re: Gizmo]
Scott Cargill Offline
stranger
Registered: 12/28/03
Posts: 15
Loc: Bakersfield, Ca
Ok, I got a hold of the libjpeg delegate for imagemagick, and installed that. Still no go.
Top
#206158 - 02/07/08 11:48 PM Re: captcha image problems [Re: Scott Cargill]
Gizmo Offline

Registered: 06/05/06
Posts: 14995
Loc: Portland, OR; USA
Not sure what to tell you; the error says that is the problem (that jpeg support isn't compiled into IM)
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic.
UBB Modifications, Styling, Coding Services, Disaster Recovery, and more!
Top
#206159 - 02/08/08 02:03 AM Re: captcha image problems [Re: Gizmo]
Scott Cargill Offline
stranger
Registered: 12/28/03
Posts: 15
Loc: Bakersfield, Ca
Ok, welp. Just so it's here for anyone else that has this problem.
So Far this is where I'm at. Hopefully with a little help someone will spot the last little probelm and point the way to the magic light.


Problem: Jpeg support not compiled into ImageMagic

Gentoo System, Installed ImageMagic via the portage tree with default settings.

Solution (partial) so far

Download libjpeg-6b from http://www.imagemagick.org/download/delegates/

./configure
make
make install


Unmerge via portage ImageMagick.
Copy ImageMagick (latest editon) from the portage/bin directory to a temp directory, bunzip it, untar it.

./configure -with-jpg -with whatever else you want in there, (Read the install-unix-txt file in the Image Magic directory you just untar'd)

make
make install

http://www. Your website/forums/ ubbthreads.php?ubb=captcha&t=im&test=1 to test and I get an even larger error msg than when I started. All of it saying basically it doesn't know how to deal with .ttf files.

PHP error: convert: FreeType library is not available

Downloaded and installed the freetype-2.3.5 delegate tried the whole thing again... Still no freetype. Any Ideas???
Top
#206176 - 02/08/08 11:55 AM Re: captcha image problems [Re: Scott Cargill]
Rick Offline
Post-a-holic
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
After installing freetype, what's the error you are getting now?
Top
#206198 - 02/08/08 11:55 PM Re: captcha image problems [Re: Rick]
Scott Cargill Offline
stranger
Registered: 12/28/03
Posts: 15
Loc: Bakersfield, Ca
Solved:

Ok, Just so it's down somewhere for others that find themselves with this problem

Heres, what I ended up doing to solve the problem.

Problem, Jpg not supported by default install of imagemagick via gentoos' portage system.

Tryed, unmerging imagemagick and manually installing, with mixed results, see above.

Solution.

/etc/make.conf add jpeg to the use flags

emerge imagemagick with the new added use flag of jpeg and the default installation works like a champ.

Its' always something simple that eludes us.

Gentoo linux uses what they call a portage tree, like rpm's and such. Pretty clean system, emerge package and it installs the program with little fuss. adds whatever it needs to make things work the way they should. Well For the most part anyway laugh

In this case I added jpeg to the global USE flag list so that jpeg support would get compiled in with the program when I emerged it into the system.

Problem solved.

Thanks for the help guys....

Just as an aside, whatever happened to the UNIX, MYSQL and PHP forums we used to have on the old w3t board? they really helped people like me that can get in and work on things, but just don't have the 20+ years working with unix like we do with dos and windows.
Top
#227270 - 06/21/09 02:32 PM Re: captcha image problems [Re: Scott Cargill]
Daryl Fawcett Offline
addict
Registered: 06/05/06
Posts: 469
Loc: Canada
I don't know when or why it happened, but I am only getting a red X where the image should be.

When I did the test (ubbthreads.php?ubb=captcha&t=im&test=1) suggested by Rick, I received the following error message:

PHP error: sh: /home/maritim5/www/forums/images/captcha/backgrounds/background1.jpg: cannot execute binary file

I am still using the 7.4 final version.

Any thoughts on what is happening on my end?
Top
#227271 - 06/21/09 04:12 PM Re: captcha image problems [Re: Daryl Fawcett]
Ruben Offline

Registered: 12/20/03
Posts: 4424
Loc: Lutz,FL
Are you using GD2 or imagemagick.
Possibly the host upgraded and moved imagemagick to a different path.
Try GD2 and see if it works again.
_________________________
Blue Man Group
Top
#227278 - 06/22/09 10:58 AM Re: captcha image problems [Re: Ruben]
Rick Offline
Post-a-holic
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
It looks like maybe your path to convert isn't set, or was blanked out. In the control panel under Db, Paths & Urls -> Paths & Urls you'll see where it wants the path to convert, which should be something like:

/usr/local/bin/convert
Top
#227288 - 06/22/09 03:50 PM Re: captcha image problems [Re: Rick]
Daryl Fawcett Offline
addict
Registered: 06/05/06
Posts: 469
Loc: Canada
I am using GD2 only, therefore, does the following still apply?

/usr/local/bin/convert

I don't think it still applies, as I think the above is for IM and not GD2
Top
Page 4 of 7 < 1 2 3 4 5 6 7 >



Moderator:  AllenAyres, Harold, Ian, Ron M 
Shout Box

Today's Birthdays
No Birthdays
Recent Topics
Temporary Password email not being received
by
05/24/12 10:02 PM
Ability to "like" individual posts (not Facebook "likes)
by doug
05/23/12 09:03 AM
Island Permissions
by ThreadsUser
05/22/12 03:03 PM
streaming video
by prkrgrp
05/20/12 07:02 PM
New Posts Corrupted? Can someone help?
by PianoWorld
05/19/12 09:41 AM
Forum Stats
10492 Members
36 Forums
33842 Topics
181709 Posts

Max Online: 978 @ 06/24/07 11:19 PM
Random Image