| Author |
Message |
M0ose How Many Years Now?
Joined: 10 Nov 2004 Posts: 1565 Location: Western, New York
|
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? _________________ No websites, No Job, No funny quote to insert here? My Signature is rather boring.  |
|
| Back to top |
|
| |
martin Cafe Montevideo

Joined: 17 Mar 2005 Posts: 1030 Location: Uruguay
|
|
| Back to top |
|
| |
M0ose How Many Years Now?
Joined: 10 Nov 2004 Posts: 1565 Location: Western, New York
|
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. _________________ No websites, No Job, No funny quote to insert here? My Signature is rather boring.  |
|
| Back to top |
|
| |
Jacky 3.14159265358979323846264

Joined: 01 Jan 2005 Posts: 4175
|
Posted: Wed Feb 06, 2008 3:17 am Post subject: |
|
|
You may have defined signature rules. _________________
| ClickFanatic wrote: | Your nonsense make my forum visits rather brief, Jacky. It's like:
"Hey look, a reply notification!"
*click* *click*
*reading garbage*
"Oh it was Jacky again..."
*close* |
|
|
| Back to top |
|
| |
M0ose How Many Years Now?
Joined: 10 Nov 2004 Posts: 1565 Location: Western, New York
|
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. _________________ No websites, No Job, No funny quote to insert here? My Signature is rather boring.  |
|
| Back to top |
|
| |
Jacky 3.14159265358979323846264

Joined: 01 Jan 2005 Posts: 4175
|
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. _________________
| ClickFanatic wrote: | Your nonsense make my forum visits rather brief, Jacky. It's like:
"Hey look, a reply notification!"
*click* *click*
*reading garbage*
"Oh it was Jacky again..."
*close* |
|
|
| Back to top |
|
| |
M0ose How Many Years Now?
Joined: 10 Nov 2004 Posts: 1565 Location: Western, New York
|
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. _________________ No websites, No Job, No funny quote to insert here? My Signature is rather boring.  |
|
| Back to top |
|
| |
LP-Trel Zen

Joined: 02 Dec 2002 Posts: 5966 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? _________________ What would you like to see at L2P? We want your suggestions!
Need Help? Technical Support • Knowledgebase • Flash Demos • Signup Questions |
|
| Back to top |
|
| |
M0ose How Many Years Now?
Joined: 10 Nov 2004 Posts: 1565 Location: Western, New York
|
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. _________________ No websites, No Job, No funny quote to insert here? My Signature is rather boring.  |
|
| Back to top |
|
| |
krt ...

Joined: 11 Jan 2005 Posts: 4995 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: 5966 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. _________________ What would you like to see at L2P? We want your suggestions!
Need Help? Technical Support • Knowledgebase • Flash Demos • Signup Questions |
|
| Back to top |
|
| |
Kovacs Retired

Joined: 12 Jun 2005 Posts: 1405
|
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 |
|
| Back to top |
|
| |
M0ose How Many Years Now?
Joined: 10 Nov 2004 Posts: 1565 Location: Western, New York
|
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. _________________ No websites, No Job, No funny quote to insert here? My Signature is rather boring.  |
|
| Back to top |
|
| |
LP-Trel Zen

Joined: 02 Dec 2002 Posts: 5966 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. _________________ What would you like to see at L2P? We want your suggestions!
Need Help? Technical Support • Knowledgebase • Flash Demos • Signup Questions |
|
| Back to top |
|
| |
M0ose How Many Years Now?
Joined: 10 Nov 2004 Posts: 1565 Location: Western, New York
|
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. _________________ No websites, No Job, No funny quote to insert here? My Signature is rather boring.  |
|
| Back to top |
|
| |
|
|
|