Bcompiler errors

This is a discussion on Bcompiler errors within the PHP General forums, part of the PHP Programming Forums category; Hello, I am getting these errors all the time now, on multiple scripts at random times. Warning: bcompiler: Bad bytecode ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-15-2007
Mike Yrabedra
 
Posts: n/a
Default Bcompiler errors


Hello,


I am getting these errors all the time now, on multiple scripts at random
times.

Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
0

This tells me it has to be PHP in some fashion.

Only thing I have found is this...

http://pecl.php.net/bugs/bug.php?id=10742

I am unsure as to where I need to go from here?

I am concerned about putting this into production if it happens this often.

Any ideas?


P.S. Running PHP 5.2.3 on Mac OS X intel xserve

Apache 2.2.4

--
Mike Yrabedra B^)>
Reply With Quote
  #2 (permalink)  
Old 11-15-2007
Daniel Brown
 
Posts: n/a
Default Re: [PHP] Bcompiler errors

On Nov 15, 2007 10:31 AM, Mike Yrabedra <lists@323inc.com> wrote:
>
> Hello,
>
>
> I am getting these errors all the time now, on multiple scripts at random
> times.
>
> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
> 0
>
> This tells me it has to be PHP in some fashion.
>
> Only thing I have found is this...
>
> http://pecl.php.net/bugs/bug.php?id=10742
>
> I am unsure as to where I need to go from here?
>
> I am concerned about putting this into production if it happens this often.
>
> Any ideas?
>
>
> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
>
> Apache 2.2.4
>
> --
> Mike Yrabedra B^)>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


If it's an encoded file, it might be corrupted. Make sure it was
uploaded in binary mode, and that there are no trailing whitespaces or
newlines.


--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

If at first you don't succeed, stick to what you know best so that you
can make enough money to pay someone else to do it for you.
Reply With Quote
  #3 (permalink)  
Old 11-15-2007
Mike Yrabedra
 
Posts: n/a
Default Re: [PHP] Bcompiler errors

on 11/15/07 10:55 AM, Daniel Brown at parasane@gmail.com wrote:

> On Nov 15, 2007 10:31 AM, Mike Yrabedra <lists@323inc.com> wrote:
>>
>> Hello,
>>
>>
>> I am getting these errors all the time now, on multiple scripts at random
>> times.
>>
>> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
>> 0
>>
>> This tells me it has to be PHP in some fashion.
>>
>> Only thing I have found is this...
>>
>> http://pecl.php.net/bugs/bug.php?id=10742
>>
>> I am unsure as to where I need to go from here?
>>
>> I am concerned about putting this into production if it happens this often.
>>
>> Any ideas?
>>
>>
>> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
>>
>> Apache 2.2.4
>>
>> --
>> Mike Yrabedra B^)>
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>

>
> If it's an encoded file, it might be corrupted. Make sure it was
> uploaded in binary mode, and that there are no trailing whitespaces or
> newlines.
>



Nope, not encrypted.



Also, reloading the same page almost always fixes the problem and the page
loads.


--
Mike Yrabedra B^)>
Reply With Quote
  #4 (permalink)  
Old 11-15-2007
Daniel Brown
 
Posts: n/a
Default Re: [PHP] Bcompiler errors

On Nov 15, 2007 11:05 AM, Mike Yrabedra <lists@323inc.com> wrote:
> on 11/15/07 10:55 AM, Daniel Brown at parasane@gmail.com wrote:
>
> > On Nov 15, 2007 10:31 AM, Mike Yrabedra <lists@323inc.com> wrote:
> >>
> >> Hello,
> >>
> >>
> >> I am getting these errors all the time now, on multiple scripts at random
> >> times.
> >>
> >> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
> >> 0
> >>
> >> This tells me it has to be PHP in some fashion.
> >>
> >> Only thing I have found is this...
> >>
> >> http://pecl.php.net/bugs/bug.php?id=10742
> >>
> >> I am unsure as to where I need to go from here?
> >>
> >> I am concerned about putting this into production if it happens this often.
> >>
> >> Any ideas?
> >>
> >>
> >> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
> >>
> >> Apache 2.2.4
> >>
> >> --
> >> Mike Yrabedra B^)>
> >>
> >> --
> >> PHP General Mailing List (http://www.php.net/)
> >> To unsubscribe, visit: http://www.php.net/unsub.php
> >>
> >>

> >
> > If it's an encoded file, it might be corrupted. Make sure it was
> > uploaded in binary mode, and that there are no trailing whitespaces or
> > newlines.
> >

>
>
> Nope, not encrypted.
>
>
>
> Also, reloading the same page almost always fixes the problem and the page
> loads.
>
>
> --
> Mike Yrabedra B^)>
>
>
>
>


Voodoo.

Are you using XDebug, by chance?

--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

If at first you don't succeed, stick to what you know best so that you
can make enough money to pay someone else to do it for you.
Reply With Quote
  #5 (permalink)  
Old 11-15-2007
Colin Guthrie
 
Posts: n/a
Default Re: Bcompiler errors

Mike Yrabedra wrote:
> Hello,
>
>
> I am getting these errors all the time now, on multiple scripts at random
> times.
>
> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
> 0
>
> This tells me it has to be PHP in some fashion.
>
> Only thing I have found is this...
>
> http://pecl.php.net/bugs/bug.php?id=10742
>
> I am unsure as to where I need to go from here?
>
> I am concerned about putting this into production if it happens this often.
>
> Any ideas?
>
>
> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
>
> Apache 2.2.4
>



Do you have to bytecompile your scripts? You're using apache, so it's
not a gtk exectutable or such like, so I can only assume you're wanting
to sell/supply your code to third parties? If not then simply don't
bytecompile ;)

Col
Reply With Quote
  #6 (permalink)  
Old 11-15-2007
Mike Yrabedra
 
Posts: n/a
Default Re: [PHP] Re: Bcompiler errors

on 11/15/07 11:17 AM, Colin Guthrie at gmane@colin.guthr.ie wrote:

> Mike Yrabedra wrote:
>> Hello,
>>
>>
>> I am getting these errors all the time now, on multiple scripts at random
>> times.
>>
>> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
>> 0
>>
>> This tells me it has to be PHP in some fashion.
>>
>> Only thing I have found is this...
>>
>> http://pecl.php.net/bugs/bug.php?id=10742
>>
>> I am unsure as to where I need to go from here?
>>
>> I am concerned about putting this into production if it happens this often.
>>
>> Any ideas?
>>
>>
>> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
>>
>> Apache 2.2.4
>>

>
>
> Do you have to bytecompile your scripts? You're using apache, so it's
> not a gtk exectutable or such like, so I can only assume you're wanting
> to sell/supply your code to third parties? If not then simply don't
> bytecompile ;)
>
> Col



I am not, that is why it is so weird.

It is straight PHP code.


--
Mike Yrabedra B^)>
Reply With Quote
  #7 (permalink)  
Old 11-15-2007
Mike Yrabedra
 
Posts: n/a
Default Re: [PHP] Bcompiler errors

on 11/15/07 11:07 AM, Daniel Brown at parasane@gmail.com wrote:

> On Nov 15, 2007 11:05 AM, Mike Yrabedra <lists@323inc.com> wrote:
>> on 11/15/07 10:55 AM, Daniel Brown at parasane@gmail.com wrote:
>>
>>> On Nov 15, 2007 10:31 AM, Mike Yrabedra <lists@323inc.com> wrote:
>>>>
>>>> Hello,
>>>>
>>>>
>>>> I am getting these errors all the time now, on multiple scripts at random
>>>> times.
>>>>
>>>> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
>>>> 0
>>>>
>>>> This tells me it has to be PHP in some fashion.
>>>>
>>>> Only thing I have found is this...
>>>>
>>>> http://pecl.php.net/bugs/bug.php?id=10742
>>>>
>>>> I am unsure as to where I need to go from here?
>>>>
>>>> I am concerned about putting this into production if it happens this often.
>>>>
>>>> Any ideas?
>>>>
>>>>
>>>> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
>>>>
>>>> Apache 2.2.4
>>>>
>>>> --
>>>> Mike Yrabedra B^)>
>>>>
>>>> --
>>>> PHP General Mailing List (http://www.php.net/)
>>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>>>
>>>>
>>>
>>> If it's an encoded file, it might be corrupted. Make sure it was
>>> uploaded in binary mode, and that there are no trailing whitespaces or
>>> newlines.
>>>

>>
>>
>> Nope, not encrypted.
>>
>>
>>
>> Also, reloading the same page almost always fixes the problem and the page
>> loads.
>>
>>
>> --
>> Mike Yrabedra B^)>
>>
>>
>>
>>

>
> Voodoo.
>
> Are you using XDebug, by chance?



No, I am not using Xdebug


--
Mike Yrabedra B^)>
Reply With Quote
  #8 (permalink)  
Old 11-15-2007
Daniel Brown
 
Posts: n/a
Default Re: [PHP] Re: Bcompiler errors

On Nov 15, 2007 12:36 PM, Mike Yrabedra <lists@323inc.com> wrote:
> on 11/15/07 11:17 AM, Colin Guthrie at gmane@colin.guthr.ie wrote:
>
> > Mike Yrabedra wrote:
> >> Hello,
> >>
> >>
> >> I am getting these errors all the time now, on multiple scripts at random
> >> times.
> >>
> >> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
> >> 0
> >>
> >> This tells me it has to be PHP in some fashion.
> >>
> >> Only thing I have found is this...
> >>
> >> http://pecl.php.net/bugs/bug.php?id=10742
> >>
> >> I am unsure as to where I need to go from here?
> >>
> >> I am concerned about putting this into production if it happens this often.
> >>
> >> Any ideas?
> >>
> >>
> >> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
> >>
> >> Apache 2.2.4
> >>

> >
> >
> > Do you have to bytecompile your scripts? You're using apache, so it's
> > not a gtk exectutable or such like, so I can only assume you're wanting
> > to sell/supply your code to third parties? If not then simply don't
> > bytecompile ;)
> >
> > Col

>
>
> I am not, that is why it is so weird.
>
> It is straight PHP code.
>
>
> --
> Mike Yrabedra B^)>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


Does the error appear when you execute this via the CLI, or only on the web?

--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

If at first you don't succeed, stick to what you know best so that you
can make enough money to pay someone else to do it for you.
Reply With Quote
  #9 (permalink)  
Old 11-15-2007
Mike Yrabedra
 
Posts: n/a
Default Re: [PHP] Re: Bcompiler errors

on 11/15/07 12:51 PM, Daniel Brown at parasane@gmail.com wrote:

> On Nov 15, 2007 12:36 PM, Mike Yrabedra <lists@323inc.com> wrote:
>> on 11/15/07 11:17 AM, Colin Guthrie at gmane@colin.guthr.ie wrote:
>>
>>> Mike Yrabedra wrote:
>>>> Hello,
>>>>
>>>>
>>>> I am getting these errors all the time now, on multiple scripts at random
>>>> times.
>>>>
>>>> Warning: bcompiler: Bad bytecode file format at 00000000 in Unknown on line
>>>> 0
>>>>
>>>> This tells me it has to be PHP in some fashion.
>>>>
>>>> Only thing I have found is this...
>>>>
>>>> http://pecl.php.net/bugs/bug.php?id=10742
>>>>
>>>> I am unsure as to where I need to go from here?
>>>>
>>>> I am concerned about putting this into production if it happens this often.
>>>>
>>>> Any ideas?
>>>>
>>>>
>>>> P.S. Running PHP 5.2.3 on Mac OS X intel xserve
>>>>
>>>> Apache 2.2.4
>>>>
>>>
>>>
>>> Do you have to bytecompile your scripts? You're using apache, so it's
>>> not a gtk exectutable or such like, so I can only assume you're wanting
>>> to sell/supply your code to third parties? If not then simply don't
>>> bytecompile ;)
>>>
>>> Col

>>
>>
>> I am not, that is why it is so weird.
>>
>> It is straight PHP code.
>>
>>
>> --
>> Mike Yrabedra B^)>
>>
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>

>
> Does the error appear when you execute this via the CLI, or only on the
> web?



Don't know, but it is totally random, so it is not my script(s).


--
Mike Yrabedra B^)>
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 09:15 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0