| Author |
Message |
M0ose SPAMMING IST VERBOTEN!

Joined: 10 Nov 2004 Posts: 1529 Location: I am 48.
|
Posted: Mon Feb 04, 2008 12:32 pm Post subject: Phpbb 3 error |
|
|
This is what I get when I try to put an image in my signature.
| Quote: | | It was not possible to determine the dimensions of the image. |
Any help? _________________ [img]http://wna.com.ru/sig/msig60.gif[/img]
AreaMJ.com
Wings, Nachos & Anthrax |
|
| Back to top |
|
| |
martin Cafe Montevideo

Joined: 17 Mar 2005 Posts: 1030 Location: Uruguay
|
|
| Back to top |
|
| |
M0ose SPAMMING IST VERBOTEN!

Joined: 10 Nov 2004 Posts: 1529 Location: I am 48.
|
Posted: Mon Feb 04, 2008 10:16 pm Post subject: |
|
|
| martin wrote: | | Is it a static file or a dynamic one (generated when the site loads by a php script)? |
The image is just a .gif image. It is the same as my signature. The url is http://wna.com.ru/sig/msig56.gif
All other images I have tried in my sig have done the same. _________________ [img]http://wna.com.ru/sig/msig60.gif[/img]
AreaMJ.com
Wings, Nachos & Anthrax |
|
| Back to top |
|
| |
Jacky President

Joined: 01 Jan 2005 Posts: 3746 Location: Earth Password: dd4b21e Sex: Male
|
Posted: Wed Feb 06, 2008 3:17 am Post subject: |
|
|
You may have defined signature rules. _________________ Jacky |
|
| Back to top |
|
| |
M0ose SPAMMING IST VERBOTEN!

Joined: 10 Nov 2004 Posts: 1529 Location: I am 48.
|
Posted: Wed Feb 06, 2008 11:24 am Post subject: |
|
|
C'mon Jacky, I'm not stupid. The width is set to max of 500, and height is set to 150. There is nothing else that I can set that I know of that would cause this. _________________ [img]http://wna.com.ru/sig/msig60.gif[/img]
AreaMJ.com
Wings, Nachos & Anthrax |
|
| Back to top |
|
| |
Jacky President

Joined: 01 Jan 2005 Posts: 3746 Location: Earth Password: dd4b21e Sex: Male
|
Posted: Wed Feb 06, 2008 11:21 pm Post subject: |
|
|
| M0ose wrote: | | C'mon Jacky, I'm not stupid. The width is set to max of 500, and height is set to 150. There is nothing else that I can set that I know of that would cause this. |
| Error wrote: | | It was not possible to determine the dimensions of the image. |
You have defined those rules, but the system cannot determine the dimensions of the image. Therefore that error popped up. _________________ Jacky |
|
| Back to top |
|
| |
M0ose SPAMMING IST VERBOTEN!

Joined: 10 Nov 2004 Posts: 1529 Location: I am 48.
|
Posted: Thu Feb 07, 2008 9:45 am Post subject: |
|
|
| Jacky wrote: | | M0ose wrote: | | C'mon Jacky, I'm not stupid. The width is set to max of 500, and height is set to 150. There is nothing else that I can set that I know of that would cause this. |
| Error wrote: | | It was not possible to determine the dimensions of the image. |
You have defined those rules, but the system cannot determine the dimensions of the image. Therefore that error popped up. |
I understand that the system can't figure out the image size. I don't understand why. It shouldn't have a problem as it worked before but then just stopped all of a sudden. _________________ [img]http://wna.com.ru/sig/msig60.gif[/img]
AreaMJ.com
Wings, Nachos & Anthrax |
|
| Back to top |
|
| |
LP-Trel Zen

Joined: 02 Dec 2002 Posts: 5730 Location: Nirvana by Boredom
|
Posted: Thu Feb 07, 2008 4:04 pm Post subject: |
|
|
| M0ose wrote: | | Jacky wrote: | | M0ose wrote: | | C'mon Jacky, I'm not stupid. The width is set to max of 500, and height is set to 150. There is nothing else that I can set that I know of that would cause this. |
| Error wrote: | | It was not possible to determine the dimensions of the image. |
You have defined those rules, but the system cannot determine the dimensions of the image. Therefore that error popped up. |
I understand that the system can't figure out the image size. I don't understand why. It shouldn't have a problem as it worked before but then just stopped all of a sudden. |
It can't figure out the image sizes since before or after major system upgrades involving everything that powers PHP? _________________ * Knowledge Base * Wiki * Forum FAQs * |
|
| Back to top |
|
| |
M0ose SPAMMING IST VERBOTEN!

Joined: 10 Nov 2004 Posts: 1529 Location: I am 48.
|
Posted: Thu Feb 07, 2008 5:26 pm Post subject: |
|
|
Well, it started recently, and worked before the upgrade. It only started to no work since I tried it after the upgrade. _________________ [img]http://wna.com.ru/sig/msig60.gif[/img]
AreaMJ.com
Wings, Nachos & Anthrax |
|
| Back to top |
|
| |
krt ...

Joined: 11 Jan 2005 Posts: 4619 Location: Down Under
|
Posted: Thu Feb 07, 2008 7:19 pm Post subject: |
|
|
Are you referencing the image as a URL? If so, the problem might be that PHP is not allowing remote file opening (to get the image details through getimagesize() or whatever). Have you checked that value of the allow_url_fopen directive?
e.g.
echo ini_get('allow_url_fopen'); |
|
| Back to top |
|
| |
LP-Trel Zen

Joined: 02 Dec 2002 Posts: 5730 Location: Nirvana by Boredom
|
Posted: Fri Feb 08, 2008 1:42 am Post subject: |
|
|
| M0ose wrote: | | Well, it started recently, and worked before the upgrade. It only started to no work since I tried it after the upgrade. |
Check which PHP modules or functions are needed for this feature. It is possible that one of them was removed/disabled during the upgrade. _________________ * Knowledge Base * Wiki * Forum FAQs * |
|
| Back to top |
|
| |
Kovacs Pepe El Contratado

Joined: 12 Jun 2005 Posts: 1402 Location: Leeds, UK / Guardamar Del Segura, España / Cayey, Puerto Rico
|
Posted: Fri Feb 08, 2008 5:33 am Post subject: |
|
|
| krt wrote: | Are you referencing the image as a URL? If so, the problem might be that PHP is not allowing remote file opening (to get the image details through getimagesize() or whatever). Have you checked that value of the allow_url_fopen directive?
e.g.
echo ini_get('allow_url_fopen'); |
allow_url_fopen is on for LLP servers. Having said that, there is a workaround for this problem caused by allow_url_fopen being turned off, which perhaps you may still want to try since nobody knows the cause of this problem. It utilizes cURL which LLP has installed so there is no problem there.
The workaround can be found here: http://www.phpbb.com/community.....c#p3066661 _________________ I Love Rebecca More Than Anything In The World <3
Yo Amo A Rebecca Más Que Nada En El Mundo <3 |
|
| Back to top |
|
| |
M0ose SPAMMING IST VERBOTEN!

Joined: 10 Nov 2004 Posts: 1529 Location: I am 48.
|
Posted: Fri Feb 08, 2008 8:29 am Post subject: |
|
|
| Kovacs wrote: | | krt wrote: | Are you referencing the image as a URL? If so, the problem might be that PHP is not allowing remote file opening (to get the image details through getimagesize() or whatever). Have you checked that value of the allow_url_fopen directive?
e.g.
echo ini_get('allow_url_fopen'); |
allow_url_fopen is on for LLP servers. Having said that, there is a workaround for this problem caused by allow_url_fopen being turned off, which perhaps you may still want to try since nobody knows the cause of this problem. It utilizes cURL which LLP has installed so there is no problem there.
The workaround can be found here: http://www.phpbb.com/community.....c#p3066661 |
I tried that before, but it didn't help at all.
Also, Trel, I'm not quite sure what functions and modules are required. I know that allow_url_ one is needed. I'll have to try and look into that for you. _________________ [img]http://wna.com.ru/sig/msig60.gif[/img]
AreaMJ.com
Wings, Nachos & Anthrax |
|
| Back to top |
|
| |
LP-Trel Zen

Joined: 02 Dec 2002 Posts: 5730 Location: Nirvana by Boredom
|
Posted: Fri Feb 08, 2008 7:52 pm Post subject: |
|
|
| M0ose wrote: | | Kovacs wrote: | | krt wrote: | Are you referencing the image as a URL? If so, the problem might be that PHP is not allowing remote file opening (to get the image details through getimagesize() or whatever). Have you checked that value of the allow_url_fopen directive?
e.g.
echo ini_get('allow_url_fopen'); |
allow_url_fopen is on for LLP servers. Having said that, there is a workaround for this problem caused by allow_url_fopen being turned off, which perhaps you may still want to try since nobody knows the cause of this problem. It utilizes cURL which LLP has installed so there is no problem there.
The workaround can be found here: http://www.phpbb.com/community.....c#p3066661 |
I tried that before, but it didn't help at all.
Also, Trel, I'm not quite sure what functions and modules are required. I know that allow_url_ one is needed. I'll have to try and look into that for you. |
I'll try to fix it if it is a server issue. Post an update when you find something. _________________ * Knowledge Base * Wiki * Forum FAQs * |
|
| Back to top |
|
| |
M0ose SPAMMING IST VERBOTEN!

Joined: 10 Nov 2004 Posts: 1529 Location: I am 48.
|
Posted: Mon Feb 11, 2008 1:49 pm Post subject: |
|
|
Well, I couldn't find a fix other then setting the limits to 0. Sure the option isn't needed, but I'd rather figure out how to fix it then to just leave it broken.
So yeah, best fix I found was setting the values to 0. _________________ [img]http://wna.com.ru/sig/msig60.gif[/img]
AreaMJ.com
Wings, Nachos & Anthrax |
|
| Back to top |
|
| |
|
|
|