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 ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
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^)> |
|
|||
|
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. |
|
|||
|
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^)> |
|
|||
|
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. |
|
|||
|
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 |
|
|||
|
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^)> |
|
|||
|
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^)> |
|
|||
|
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. |
|
|||
|
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^)> |