Search the web
Sign In
New User? Sign Up
PHP-fusebox · Fusebox methodologies in PHP
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3904 - 3933 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3904
Fusebox is going to get a facelift and we need your help. Things are really starting to happen within Team Fusebox and one of the main goals is to start off...
Mike
starkraving2002
Online Now Send Email
Feb 10, 2007
1:03 am
3905
Request: Flowchart/wireframe on which to base UI design decisions. Word. -S...
skyegior
Online Now Send Email
Feb 11, 2007
10:59 pm
3906
This may seem like a dumb question, but you can $_POST the fuseactionVariable and fuseaction, right? It is not mandatory to $_GET, correct?...
Geoffrey Hoffman
m2guru
Offline Send Email
Feb 12, 2007
5:07 pm
3907
Unless I misunderstand your question, yes you can. Just make sure the name of the POSTed fuseaction the same as the one defined in fusebox.XML. Eg. <input...
Gavin Winter
grandmasterf...
Offline Send Email
Feb 12, 2007
8:31 pm
3908
I'm using PHP Fusebox 4.1 on a site... I figured this would work... but it doesn't: <set name="content['title']" value="Company name | Product Name&trade;"/> ...
Geoffrey Hoffman
m2guru
Offline Send Email
Feb 19, 2007
6:10 pm
3909
Hi Geoff, Try &amp;trade; ... but it ... Name&trade;"/>...
Mike
starkraving2002
Online Now Send Email
Feb 19, 2007
6:17 pm
3910
While on the subject, this may be of use to PHP users (it took me a little while to get completely right due to a missing semi-colon!) <set...
Dan
danner_1969
Offline Send Email
Feb 20, 2007
9:50 am
3911
Thanks Mike and Dan, Although I am used to living in a somewhat constant state of confusion, I'm still confused why &amp; works and &amp;trade; works....
Geoffrey Hoffman
m2guru
Offline Send Email
Feb 20, 2007
1:56 pm
3912
It's to do with the way the XML file is parsed a single & or $ is read differently to an entity or an escaped character in much the same way as if you were...
Dan Atrill
danner_1969
Offline Send Email
Feb 20, 2007
2:09 pm
3913
The answer is that there are several predefined special characters in XML. They are &amp;, &lt;, &gt;, &quot;, &apos;. The XML parser automagically...
Ryan Hagan
ryan_hagan
Online Now Send Email
Feb 20, 2007
2:26 pm
3914
Actually, this might be useful: http://www.w3schools.com/xml/xml_cdata.asp Especially the bit about illegal characters and "predefined entity references". Hope...
Dan Atrill
danner_1969
Offline Send Email
Feb 20, 2007
2:40 pm
3915
Thanks Ryan, That makes perfect sense....
Geoffrey Hoffman
m2guru
Offline Send Email
Feb 20, 2007
2:43 pm
3916
This format is needed when you are <set>ing an array. <set name="myarray" value="return array('Users', 'Groups', 'Locations');" evaluate="true" /> Otherwise it...
Owen Cole
tgknight
Offline Send Email
Feb 20, 2007
2:49 pm
3917
Has anyone gotten one of these: Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 524217 bytes) in fuseboxApplication.php on line...
sirhc_edwards
Offline Send Email
Feb 22, 2007
10:36 pm
3918
... We had something similar happen, php specific involving php4_gd where we didn't delete our temporary images thus growing beyond our 16Meg memory limit per...
bret curtis
psi29a
Offline Send Email
Feb 23, 2007
3:04 am
3919
Makes me wonder if it would be possible to divide up the app_cacheddata file among the individual fuseactions, with only the called fuseactions present. The...
Shannon Carey
rehevkor5
Offline Send Email
Feb 23, 2007
2:17 pm
3920
I was under the impression that FuseBox 5 does just this.. With FB4 I generate a menu using the $application array =) Shannon Carey wrote: Makes me wonder if...
Owen Cole
tgknight
Offline Send Email
Feb 23, 2007
2:29 pm
3921
Actually, you'd be trading one performance factor for another. In this case, you'd be trading the cost of reading in one very large file from disk,...
Ryan Hagan
ryan_hagan
Online Now Send Email
Feb 23, 2007
2:52 pm
3922
Yeah, I'm with Bret on this one. I can't imagine that this is a Fusebox problem. The clue here is that PHP is trying to allocate 0.5 MB in one fell swoop....
Ryan Hagan
ryan_hagan
Online Now Send Email
Feb 23, 2007
2:52 pm
3923
... Well.. Something is going on. I know what I'm doing and this is just from a prototype. The files it dumps on disk are 181k for the _app file . It's not...
sirhc_edwards
Offline Send Email
Feb 23, 2007
4:20 pm
3924
So why is the entire application object serialized anyways. It's huge. Why not write to disk only the current data values in the class and add an import...
sirhc_edwards
Offline Send Email
Feb 23, 2007
4:30 pm
3925
As I stated in an earlier post, the fact that PHP serializes and unserializes all its data between requests is a philosophical design decision made by the...
Ryan Hagan
ryan_hagan
Online Now Send Email
Feb 23, 2007
5:13 pm
3926
I would be willing to bet that it is *NOT* the size of the application object. To give you some idea, our application files are 6MB and we're not having any...
Ryan Hagan
ryan_hagan
Online Now Send Email
Feb 23, 2007
5:21 pm
3927
... ok. so I wrote a script with this: <?php echo memory_get_usage() . "\n"; $start = microtime(); include('_app_winamp.php'); echo memory_get_usage() . "\n";...
sirhc_edwards
Offline Send Email
Feb 23, 2007
5:40 pm
3928
... There are actual php profilers such as: php4-xdebug and php4-apd This can save you a line of time, specifically in profiling your application. For instance...
Bret Curtis
psi29a
Offline Send Email
Feb 23, 2007
5:57 pm
3929
Chris, where were your ideas when I was first pondering how to transition from a structure that could be var_export()ed, to an object that needed to be...
Mike
starkraving2002
Online Now Send Email
Feb 23, 2007
7:29 pm
3930
I am sure what you say is true, but you know, always room for improvement right? I'm confused by what you say about many small files though. My suggestion...
Shannon Carey
rehevkor5
Offline Send Email
Feb 23, 2007
11:30 pm
3931
I knew Mike could tell us what's up! That's very interesting. I haven't started using FB 5 yet because I haven't had a chance to start a new application. To...
Shannon Carey
rehevkor5
Offline Send Email
Feb 24, 2007
12:02 am
3932
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the PHP-fusebox group. File :...
PHP-fusebox@yahoogrou...
Send Email
Feb 24, 2007
12:43 am
3933
Hey I'm going to put this memory leak issue to bed. I haven't been able to replicate it today and so I have to say it was just an issue with my system and not...
sirhc_edwards
Offline Send Email
Feb 24, 2007
12:43 am
Messages 3904 - 3933 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help