User Typeoneerror - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:20:50Zhttp://stackoverflow.com/feeds/user/53653http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1819221/learning-php-and-mysql/1820689#18206890Answer by Typeoneerror for Learning PHP and MySQLTypeoneerror2009-11-30T15:59:41Z2009-11-30T15:59:41Z<p>I know you asked for websites, but I thought I'd drop in a book recommendation: Luke Welling and Laura Thompson's <a href="http://rads.stackoverflow.com/amzn/click/0672329166" rel="nofollow">"PHP and MySQL Web Development"</a>. It's been around for quite awhile and to this day, I still think it's one of the better programming-related books. Bet you can find a cheap used copy somewhere.</p>
http://stackoverflow.com/questions/1817381/is-this-a-ie-bug-or-am-i-stupid/1817543#18175431Answer by Typeoneerror for Is this a IE Bug or am I stupid?Typeoneerror2009-11-30T02:05:22Z2009-11-30T02:05:22Z<p>You may want to post your entire stylesheet and markup somewhere. My guess is you have some invalid statements elsewhere as well, and some are getting applied weirdly. You may want to validate your css and markup as well: <a href="http://jigsaw.w3.org/css-validator/" rel="nofollow">http://jigsaw.w3.org/css-validator/</a>.</p>
<p>Check this link out too. Seems like some IE gotcha in there: <a href="http://www.ryanbrill.com/archives/multiple-classes-in-ie/" rel="nofollow">http://www.ryanbrill.com/archives/multiple-classes-in-ie/</a></p>
http://stackoverflow.com/questions/1815785/requesting-pages-and-reading-results-with-flash/1815831#18158311Answer by Typeoneerror for Requesting pages and reading results with FlashTypeoneerror2009-11-29T15:38:10Z2009-11-29T15:38:10Z<p>You would use <a href="http://livedocs.adobe.com/flex/3/langref/flash/net/URLLoader.html" rel="nofollow"><code>URLLoader</code></a> to send a <a href="http://livedocs.adobe.com/flex/3/langref/flash/net/URLRequest.html" rel="nofollow"><code>URLRequest</code></a> to foo.com. You can add headers by pushing new <code>URLRequestHeader's</code> onto the <a href="http://livedocs.adobe.com/flex/3/langref/flash/net/URLRequest.html#requestHeaders" rel="nofollow"><code>URLRequest.requestHeaders</code></a> array. I'm not sure about <em>reading</em> the headers though. I think it's possible with <a href="http://www.blog.lessrain.com/as3-java-socket-connections-to-ports-below-1024/" rel="nofollow">sockets</a> and AIR seems to have the <code>httpResponseStatus</code> event (not <code>httpStatus</code> like the Flash API) which</p>
<blockquote>
<p>unlike the httpStatus event, the
httpResponseStatus event is delivered
before any response data. Also, <strong>the
httpResponseStatus event includes
values for the responseHeaders and
responseURL properties</strong> (which are
undefined for an httpStatus event.
Note that the httpResponseStatus event
(if any) will be sent before (and in
addition to) any complete or error
event.</p>
</blockquote>
http://stackoverflow.com/questions/1772541/quicktime-to-flash-using-php-and-chapters/1773413#17734132Answer by Typeoneerror for Quicktime to Flash using PHP ? And chapters.Typeoneerror2009-11-20T21:41:31Z2009-11-20T21:41:31Z<p>You're probably going to want to install and run <a href="http://www.ffmpeg.org/" rel="nofollow">ffmpeg</a> to convert quicktime movs to flv or f4v. You may be able to add cue points (chapters) by using something like <a href="http://www.ioncannon.net/web-design/109/metadata-cuepoint-flash-video-flvtool/" rel="nofollow">FLVtool</a>.</p>
http://stackoverflow.com/questions/1772742/should-i-use-vector-or-raster-graphics-in-flash-cs4-when-manipulating-3d-artwork/1773396#17733961Answer by Typeoneerror for Should I use vector or raster graphics in Flash CS4 when manipulating 3d artwork?Typeoneerror2009-11-20T21:36:47Z2009-11-20T21:36:47Z<p>Typically vectors are smaller and download faster, but take more time to render. Bitmaps increase file size, but should improve playback speed and render time. I couldn't find an specific tests, but here's an intesting topic on Kirupa: <a href="http://www.kirupa.com/forum/showthread.php?t=87849" rel="nofollow">http://www.kirupa.com/forum/showthread.php?t=87849</a></p>
http://stackoverflow.com/questions/1766992/zend-form-how-to-create-a-create-account-form-that-checks-for-unique-username/1767889#17678892Answer by Typeoneerror for Zend Form: How to create a 'create account form' that checks for unique username?Typeoneerror2009-11-20T02:07:52Z2009-11-20T02:07:52Z<p>Add a <code>Db_NoRecordExists</code> validator to the form element.</p>
<p><a href="http://framework.zend.com/manual/en/zend.validate.set.html#zend.validate.Db" rel="nofollow">http://framework.zend.com/manual/en/zend.validate.set.html#zend.validate.Db</a></p>
http://stackoverflow.com/questions/1644651/zend-framework-optimization-tcpsndbuf-kmemsize1Zend Framework optimization, tcpsndbuf & kmemsizeTypeoneerror2009-10-29T15:43:28Z2009-11-17T17:09:49Z
<p>Hi friends. We're on the <a href="http://mediatemple.net/webhosting/dv/pricing.php" rel="nofollow">mid-tier DV Rage server</a> on media temple using Zend Framework, and we've been getting QoS warnings in Virtuzzo pretty consistantly. We've spent the last week installing APC (tweaking that to death), mysql and apache tweaks (many recommended by Media Temple), front end gzip, <code>Zend_View</code> caching, and every optimization technique recommended in the Zend manual. At this point, I think we've gotten over our kmemsize issues mostly, but we are still getting tcpsndbuf warnings and I honestly don't know what to do with those. Our traffic is around 1000 uniques a day and I'm having a hard time believing that we can't support that. MT seems to be kind of "stingy" with the memory and after all this work optimizing, the answer seems to be "add more memory/upgrade"</p>
<ol>
<li>Should we just stop "playing server" and start recommending <em>actual</em> dedicated servers for our clients? </li>
<li>Does anyone have any recommendations as to how much memory we need to be running a Zend Framework-based site...assuming our current of "1GB of dedicated RAM" (what it says in the marketing)?</li>
</ol>
<p>I know this is a lot to ask, but we're at our wits end and we're more "code" than "server" people (so apologies in advance if any of this sounded stupid). :)</p>
<p><strong>Edit.</strong> Ok, so of our 512MBs, (mt) has allocated 13MB to kmemsize. Is this ridiculously low? I feel like it is. </p>
http://stackoverflow.com/questions/1644651/zend-framework-optimization-tcpsndbuf-kmemsize/1750333#17503330Answer by Typeoneerror for Zend Framework optimization, tcpsndbuf & kmemsizeTypeoneerror2009-11-17T17:09:49Z2009-11-17T17:09:49Z<p>Answer: switch hosting.</p>
http://stackoverflow.com/questions/1748106/problems-with-my-prepared-statement-update/1749794#17497940Answer by Typeoneerror for Problems with my prepared statement updateTypeoneerror2009-11-17T15:48:08Z2009-11-17T15:48:08Z<p>Is it possible that entries is the same value as what's already in the database? I don't think <code>*_affected_rows</code> returns 1 if nothing changes. Is it possible that there's more than 1 entry for 'parentsemail'? So perhaps <code>mysqli_stmt_affected_rows</code> is returning something like 2? Instead of checking 1, maybe let us know what <code>mysql_stmt_affected_rows</code> is returning. For example, from the docs:</p>
<blockquote>
<p>An integer greater than zero indicates
the number of rows affected or
retrieved. Zero indicates that no
records where updated for an
UPDATE/DELETE statement, no rows
matched the WHERE clause in the query
or that no query has yet been
executed. <strong>-1 indicates that the query
has returned an error.</strong></p>
</blockquote>
http://stackoverflow.com/questions/1749106/fb-connect-and-no-data-appears/1749733#17497331Answer by Typeoneerror for FB Connect and No data appearsTypeoneerror2009-11-17T15:41:12Z2009-11-17T15:41:12Z<p>I don't see an "xd_receiver.htm" file in the location you specified in your init call:</p>
<pre><code>FB.init("e2d8c3ba5ca35a90fa504c1e6bd1d39a", "xd_receiver.htm", {"ifUserConnected": "http://www.dirtytalk101.com/?e=quiz&qid=1"});
// should be here: http://www.dirtytalk101.com/take-quiz/xd_receiver.htm
</code></pre>
<p>Should be a file that looks like this:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/XdCommReceiver.js" type="text/javascript"></script>
</body>
</html>
</code></pre>
<p>This file is the "cross domain" (xd) communication file which Connect needs to "send" cookies and requests through.</p>
http://stackoverflow.com/questions/1745136/how-can-i-unload-a-swf-with-as3/1745181#17451810Answer by Typeoneerror for how can I unload a swf with AS3?Typeoneerror2009-11-16T22:12:51Z2009-11-16T22:12:51Z<p>You'll hopefully be targeting Flash Player 10 so you can use unloadAndStop(), but .unload should get you part of the way there.</p>
<p><a href="http://www.gskinner.com/blog/archives/2008/07/additional%5Finfo.html" rel="nofollow">http://www.gskinner.com/blog/archives/2008/07/additional_info.html</a></p>
http://stackoverflow.com/questions/1718301/add-tween-remove-multiple-instances-of-the-same-mc-tweenlite/1718410#17184102Answer by Typeoneerror for Add/Tween/Remove - Multiple instances of the same MC (Tweenlite)Typeoneerror2009-11-11T22:10:17Z2009-11-12T04:02:49Z<p>Pass the MovieClip as a parameter of the onComplete function:</p>
<pre><code>TweenLite.to(star, randomNumber(0.5,1), {
alpha:0.25,
onComplete:removeStar,
onCompleteParams:[star]
});
function removeStar(mc:MovieClip):void
{
if (contains(mc))
{
removeChild(mc);
}
}
</code></pre>
http://stackoverflow.com/questions/1718839/is-rails-hard-to-understand-for-a-php-developer/1718961#17189611Answer by Typeoneerror for Is Rails hard to understand for a PHP developer?Typeoneerror2009-11-12T00:04:32Z2009-11-12T00:04:32Z<p>Ruby can be tough, writing Ruby with Rails is easy! The language is natural and reads really nicely. Deploying Rails apps is where (IMO) the challenge lies. You'll have no problem if you know PHP well, especially when you have a book like <a href="http://www.pragprog.com/titles/ndphpr/rails-for-php-developers" rel="nofollow">Rails for PHP Developers</a></p>
http://stackoverflow.com/questions/1696954/facebook-connect-xfbml-not-working/1697487#16974870Answer by Typeoneerror for Facebook Connect XFBML not workingTypeoneerror2009-11-08T18:46:14Z2009-11-08T18:46:14Z<p>Open up <strong>Firefox > Preferences > Privacy</strong> and make sure "Accept third party cookies" is checked. This is needed for Facebook Connect to work. Also, when using Connect, make sure all your tags are fully closed, i.e. <code><fb:profile-pic></fb:profile-pic></code> and not <code><fb:profile-pic/></code>. From the docs:</p>
<blockquote>
<p>The user's browser must be set to
accept 3rd Party Cookies in order for
it to stay connected between clicks.</p>
</blockquote>
<p>Source: <a href="http://wiki.developers.facebook.com/index.php/Logging%5FIn%5FAnd%5FConnecting" rel="nofollow">http://wiki.developers.facebook.com/index.php/Logging_In_And_Connecting</a></p>
<p>FWIW, I wouldn't use "the run around" as a sample app. That thing has been the same since they introduced Connect and is pretty hacky.</p>
http://stackoverflow.com/questions/1697249/facebook-connect-and-net/1697475#16974750Answer by Typeoneerror for Facebook Connect and .NETTypeoneerror2009-11-08T18:40:37Z2009-11-08T18:40:37Z<p>You're basically limited to the list of "ids" in terms of data you can "save back to a database". For example, on a connect site, you cannot store their "name" or "about" for more than 24 hours:</p>
<p><a href="http://wiki.developers.facebook.com/index.php/Storable%5FData" rel="nofollow">http://wiki.developers.facebook.com/index.php/Storable_Data</a></p>
<p>To actually get the data you'll want to use one of the following API methods:</p>
<p><a href="http://wiki.developers.facebook.com/index.php/Users.getInfo" rel="nofollow">http://wiki.developers.facebook.com/index.php/Users.getInfo</a><br/>
<a href="http://wiki.developers.facebook.com/index.php/Users.getStandardInfo" rel="nofollow">http://wiki.developers.facebook.com/index.php/Users.getStandardInfo</a></p>
<p>More than likely, <code>getInfo</code> as <code>getStandardInfo</code> returns you cannot display publicly. You'll of course need to use Facebook Connect to first authenticate the user, then you can query the API using Javascript or an ASP.NET FB library to get API results. You'll find a load of client libraries here:</p>
<p><a href="http://wiki.developers.facebook.com/index.php/Client%5FLibraries" rel="nofollow">http://wiki.developers.facebook.com/index.php/Client_Libraries</a><br/>
<a href="http://wiki.developers.facebook.com/index.php/ASP.NET" rel="nofollow">http://wiki.developers.facebook.com/index.php/ASP.NET</a></p>
http://stackoverflow.com/questions/1689847/as3-swfaddress-deep-linking-when-someone-pastes-a-url/1691008#16910080Answer by Typeoneerror for AS3 - swfaddress deep linking when someone pastes a urlTypeoneerror2009-11-06T22:42:29Z2009-11-06T22:42:29Z<p>Without seeing any of your code...There's two events you're going to be interested in watching for. When your app starts up you should listen for </p>
<pre><code>SWFAddress.addEventListener(SWFAddressEvent.INIT, __init);
</code></pre>
<p>Which would then register the <code>CHANGE</code> listener:</p>
<pre><code>private function __init(event:SWFAddressEvent):void
{
SWFAddress.addEventListener(SWFAddressEvent.CHANGE, __handle);
}
</code></pre>
<p>Your handler function should handle changes in the URL. This will handle the beginning url when it first initializes and when you use <code>SWFAddress.setValue()</code> to change the page:</p>
<pre><code>private function __handle(event:SWFAddressEvent):void
{
var address:String = SWFAddress.getValue();
// -- perform actions based on addresss
}
</code></pre>
http://stackoverflow.com/questions/607346/facebook-connect-and-third-party-cookies3Facebook connect and third-party cookies?Typeoneerror2009-03-03T17:30:25Z2009-11-05T18:22:50Z
<p>What is the best way to keep the user logged in when something like "third-party" cookies are disabled. I currently have a Facebook connect app (in only PHP) that works great when I have that checked in Firefox, but redirects to my login page when it's unchecked. Even Facebook's own sample application (<a href="http://www.somethingtoputhere.com/therunaround/index.php" rel="nofollow">therunaround</a>) has the same problem with this unchecked so I'm wondering if there's no way around the issue.</p>
<p><strong>Edit:</strong></p>
<p>@codege3k</p>
<p>Tried a bunch of p3p headers. No dice so far. I've got a login page that redirects to my index when the user "connects" ... the first load, I'm able to get the user id from <code>get_loggedin_user()</code> but when I refresh, that function returns null. The cookies exist, and when I go back to the login page and click connect again it doesn't prompt me for a login, so I know it's partly working. With "third-party cookies" turned on in Firefox, it works like a charm.</p>
<p><strong>Edit:</strong></p>
<p>What is the best way to handle facebook connect in the context of a user login then if third party cookies is not widely supported? Should I just use the initial login that works and set a local cookie for my own site and use that instead of checking the facebook status every time?</p>
http://stackoverflow.com/questions/607346/facebook-connect-and-third-party-cookies/607801#6078011Answer by Typeoneerror for Facebook connect and third-party cookies?Typeoneerror2009-03-03T19:35:12Z2009-11-05T18:22:50Z<p>Ok, promoting the session seems to work.</p>
<pre><code>$fbUserId = self::$facebook->get_loggedin_user();
if ($fbUserId)
{
self::$facebook->promote_session();
return $fbUserId;
}
</code></pre>
<p><strong>Edit:</strong> </p>
<p>So this gets the session on every request, but essentially, third party cookies must be enabled for Facebook Connect to work as expected. From their docs:</p>
<blockquote>
<p>The user's browser must be set to
accept 3rd Party Cookies in order for
it to stay connected between clicks.</p>
</blockquote>
<p>Source: <a href="http://wiki.developers.facebook.com/index.php/Logging%5FIn%5FAnd%5FConnecting" rel="nofollow">http://wiki.developers.facebook.com/index.php/Logging_In_And_Connecting</a></p>
http://stackoverflow.com/questions/1681621/facebook-api-suggestion/1682460#16824601Answer by Typeoneerror for Facebook API suggestionTypeoneerror2009-11-05T18:08:47Z2009-11-05T18:08:47Z<p>First of all: collecting people's usernames and passwords is insane. Don't do that. You should be a trusted source and in this day and age of openID and OAuth platform authentication, it's just not necessary or acceptable. Twitter has an authentication method similar to Facebook Connect now as well: <a href="http://apiwiki.twitter.com/OAuth-FAQ" rel="nofollow">http://apiwiki.twitter.com/OAuth-FAQ</a></p>
<p>That being said...to answer your question, Facebook doesn't have a "direct" API that you can just query. Facebook Connect is a different beast than that of say Flickr, Twitter, or YouTube APIs. You would have to create an application on Facebook and use Facebook Connect to authenticate the user (they login ON Facebook, not giving you any information) first. You cannot access their email or password, but you can contact them <em>through</em> the Facebook API once authenticated. The API is quite limited in what you can access and also has limits on what data specifically you can cache. </p>
<p>Once the user has authenticated your application, you can use the javascript or php libraries to set their status and post wall posts: <a href="http://wiki.developers.facebook.com/index.php/Users.setStatus" rel="nofollow">http://wiki.developers.facebook.com/index.php/Users.setStatus</a>. Please note that to update status you first have to prompt your user to give you the <code>status_update</code> extended permission.</p>
<p><strong>Edit:</strong> No, you can't access user's data without an api key or secret or without them authenticating you. Again, asking people for their account information is very shady (IMO).</p>
http://stackoverflow.com/questions/1675756/getting-list-of-users-from-our-facebook-connect-application/1677505#16775050Answer by Typeoneerror for Getting list of users from our facebook connect applicationTypeoneerror2009-11-04T23:57:22Z2009-11-04T23:57:22Z<p>Looks to me based on the dev console that you can't get a list like this. The best you can do is get <code>friend.getAppUsers()</code> which gives you a list of your <em>friends</em> that have the app installed. Bummer; I actually really need this too for an application I'm working on. I guess just use the post-authorize, deauthorize callback urls to manage the list of users on your end.</p>
http://stackoverflow.com/questions/1676127/youtube-data-api-limits1YouTube Data API limits?Typeoneerror2009-11-04T19:42:46Z2009-11-04T19:55:39Z
<p>Is there a limit to the number of requests I can make with the API? I
see there are limits to uploading and the total number of videos (2000) you can have, but is there a
limit to requests I can make to, for example, the search query
methods?</p>
<p><a href="http://code.google.com/apis/youtube/2.0/reference.html#Searching%5Ffor%5Fvideos" rel="nofollow">http://code.google.com/apis/youtube/2.0/reference.html#Searching_for_videos</a></p>
http://stackoverflow.com/questions/1660763/zend-lucene-field-relevance/1670291#16702911Answer by Typeoneerror for Zend Lucene field relevanceTypeoneerror2009-11-03T21:35:22Z2009-11-03T21:35:22Z<p>You should be able to modify the scoring with a custom <code>Zend_Search_Lucene_Search_Similarity</code> extension: <a href="http://framework.zend.com/manual/en/zend.search.lucene.extending.html#zend.search.lucene.extending.scoring" rel="nofollow">http://framework.zend.com/manual/en/zend.search.lucene.extending.html#zend.search.lucene.extending.scoring</a></p>
http://stackoverflow.com/questions/1655907/unnecessary-apache-modules0Unnecessary Apache modules [closed]Typeoneerror2009-10-31T23:25:45Z2009-10-31T23:33:11Z
<p>I'm attempting to configure apache to use a bit less memory. I'm wondering what you would consider to be either "heavy memory users" or just totally unnecessary when it comes to the loaded modules. I don't want to do anything yet, but so far I've commented out:</p>
<pre><code>mod_status
mod_info
mod_userdir
mod_cern_meta
mod_asis
</code></pre>
<p>I'd love to get apache to run even lighter. Any recommendations? Sample conf files? Thanks!</p>
http://stackoverflow.com/questions/1650591/whether-to-use-set-names/1650649#16506491Answer by Typeoneerror for Whether to use "SET NAMES"Typeoneerror2009-10-30T15:53:40Z2009-10-30T15:53:40Z<p>Not sure about py, but php has <a href="http://php.net/manual/en/function.mysql-set-charset.php" rel="nofollow"><code>mysql_set_charset</code></a> now, which states that this is the "preferred way to change the charset [and] using mysql_query() to execute SET NAMES is not recommended." Note, that this function was introduced for MySQL 5.0.7, so it won't work with earlier versions.</p>
<pre><code>mysql_set_charset('utf8', $link);
</code></pre>
<p>Where $link is a connection created with <code>mysql_connect</code></p>
http://stackoverflow.com/questions/1631033/strong-doesnt-work-but-b-does/1631096#1631096-1Answer by Typeoneerror for <strong> doesnt work, but <b> doesTypeoneerror2009-10-27T14:12:23Z2009-10-30T14:31:34Z<p><code><strong></code> is a semantic element used to emphasize the enclosed text, while <code><b></code> (though "deprecated") is more of a typographic convention.</p>
<pre><code>strong {font-weight:bold}
</code></pre>
http://stackoverflow.com/questions/1630959/how-to-start-application-from-a-simple-as-file/1631147#16311471Answer by Typeoneerror for How to start Application from a simple AS file?Typeoneerror2009-10-27T14:19:42Z2009-10-27T14:19:42Z<p>Are you trying to make a <em>pure</em> actionscript project or a flex application project (former does not use the Flex Framework, latter does)? You'd need at least an application mxml file to use the Flex framework. If you create an "Actionscript project" in Flex, the main application file (.as) will be your "document class" or wrapper. Here's a related post on using an Actionscript Application wrapper: </p>
<p><a href="http://stackoverflow.com/questions/141288/possible-to-use-flex-framework-components-without-using-mxml">http://stackoverflow.com/questions/141288/possible-to-use-flex-framework-components-without-using-mxml</a></p>
<p>You'll see here though that you still need to use a bit of mxml to "init" the actionscript class.</p>
http://stackoverflow.com/questions/1629170/flash-media-server-requires-large-bandwidth/1630983#16309831Answer by Typeoneerror for flash media server requires large bandwidth ?Typeoneerror2009-10-27T13:56:57Z2009-10-27T13:56:57Z<p>I'm more on the client development side with Flash than server admin, but more than likely, yes, you would need a lot of bandwidth to have 10k people watching. The good thing is that with streaming video, you're only downloading the data your watch (unlike progressive). More of an issue would be the number of concurrent connections you could handle per FMS install. 10k would probably require a lot more than 1 server running FMS apps to handle. I'm currently working on a project where we are streaming from 2 installs (beyond the installations of FMS, not sure how they load balanced it) with the hopes of supporting up to something like 2k concurrent connections. I found this article to be pretty helpful (users + bandwidth stats):</p>
<p><a href="http://www.adobe.com/devnet/flashmediaserver/articles/performance%5Ftuning%5Fwebcasts.html" rel="nofollow">http://www.adobe.com/devnet/flashmediaserver/articles/performance_tuning_webcasts.html</a></p>
<p>The part where "code" meshes with server administration can get pretty daunting (if you ask me)...and every client wants "youtube but with X feature." At 1K a license plus BW, this can get super pricey. </p>
<p>Depending on your needs, you may want to use a 3rd-party FMS company to handle your streaming (especially if it's just for a single event; you can get 'per-event' pricing). Also, I recently used the justin.tv api to create a streaming video feed in Flex. It was pretty painless and all the BW is on them :)</p>
<p>The good part is that once FMS is running, it's super easy to develop with in Actionscript :)</p>
http://stackoverflow.com/questions/1626262/apc-filters-by-path0apc.filters by path? Typeoneerror2009-10-26T17:50:43Z2009-10-26T23:11:58Z
<p>How would I use the apc.filters parameter in APC opcode caching to not cache certain paths? For example, I want caching to be active for anything under the path:</p>
<p>"/var/www/vhosts"</p>
<p>and exclude paths like</p>
<p>"/usr/share/psa-horde/"</p>
<p>I tried using</p>
<pre><code>apc.cache_by_default = 0
apc.filters = "+/var/www/vhosts"
</code></pre>
<p>and</p>
<pre><code>apc.cache_by_default = 1
apc.filters = "-/usr/share/psa-horde/"
</code></pre>
<p>But neither worked as I expected.</p>
<p><a href="http://www.php.net/manual/en/apc.configuration.php#ini.apc.filters" rel="nofollow">http://www.php.net/manual/en/apc.configuration.php#ini.apc.filters</a></p>
<p>Should the filter be something more like "+/var/www/vhosts/*" (note the wildcard)? I'm afraid this isn't possible because of the way filters works:</p>
<blockquote>
<p>Note that the filename used for
matching is the one passed to
include/require, not the absolute
path.</p>
</blockquote>
<p>Any ideas or sample configurations?</p>
http://stackoverflow.com/questions/1623524/how-do-i-change-the-size-and-color-of-the-stage-in-actionscript-3/1625813#16258130Answer by Typeoneerror for How do I change the size and color of the stage in actionscript 3?Typeoneerror2009-10-26T16:36:38Z2009-10-26T16:36:38Z<p>Depends on how you are compiling your .swf, but it is completely possible. If you are building a Flex project, you can set the <code>backgroundColor</code> property of the <code>Application</code> or use a css file to change it. e.g.</p>
<pre><code><mx:Application
backgroundColor="#000000"
width="500"
height="500"
layout="absolute"
xmlns:mx="http://www.adobe.com/2006/mxml">
</mx:Application>
</code></pre>
<p>If you are building in Flex (an "Actionscript Project") or using the mxmlc compiler, you can use the undocumented "SWF" metadata tag, e.g.</p>
<pre><code>package
{
[SWF(width="500", height="500", backgroundColor="#000000")]
public class MyApp extends Sprite
{
}
}
</code></pre>
<p>And of course, if you're using Flash "the application", you can just click the stage and then go to the properties panel and set the width, height, and background color.</p>
http://stackoverflow.com/questions/1615918/after-facebook-connect-logout-facebook-php-class-still-thinks-user-is-logged-in/1625133#16251330Answer by Typeoneerror for After Facebook Connect logout, Facebook PHP class still thinks user is logged inTypeoneerror2009-10-26T14:27:36Z2009-10-26T14:27:36Z<p>I just helped someone with a similar issue. Basically, you need to expire the facebook session and then clean up the cookies afterwards (it's a bit tricky and not really explained all that well in the docs):</p>
<p><a href="http://stackoverflow.com/questions/1386557/how-to-log-out-users-using-facebook-connect-in-php-and-zend/1386749#1386749">http://stackoverflow.com/questions/1386557/how-to-log-out-users-using-facebook-connect-in-php-and-zend/1386749#1386749</a></p>
<p>Vote it up if it helps ;)</p>
http://stackoverflow.com/questions/1816471/website-with-openid-facebook-connectComment by Typeoneerror on website with openid, facebook connectTypeoneerror2009-11-29T21:37:17Z2009-11-29T21:37:17ZHow do you currently store the openids with accounts? I would recommend a database to store "users" and then a "logins" table so users can associate multiple openids and facebook ids with a single account.http://stackoverflow.com/questions/1791714/why-overloading-not-support-in-actionscript/1791909#1791909Comment by Typeoneerror on why overloading not support in Actionscript? Typeoneerror2009-11-24T19:15:20Z2009-11-24T19:15:20ZMaybe you can enlighten the OP as to why, lk?http://stackoverflow.com/questions/1764965/facebook-app-shows-a-blank-page/1765034#1765034Comment by Typeoneerror on Facebook app shows a blank pageTypeoneerror2009-11-19T17:28:50Z2009-11-19T17:28:50ZAlso, don't share your API secret. I'm in yer app, stealing yer fb_uid's.http://stackoverflow.com/questions/1749106/fb-connect-and-no-data-appears/1749733#1749733Comment by Typeoneerror on FB Connect and No data appearsTypeoneerror2009-11-19T17:13:48Z2009-11-19T17:13:48ZYou can mark a selected answer without any reputation.http://stackoverflow.com/questions/1749106/fb-connect-and-no-data-appears/1749733#1749733Comment by Typeoneerror on FB Connect and No data appearsTypeoneerror2009-11-18T16:01:03Z2009-11-18T16:01:03ZGood to hear! So...vote it up? Mark it as selected answer?http://stackoverflow.com/questions/1746987/how-to-pass-the-rest-argument-array-to-another-function-as-an-object-property/1747959#1747959Comment by Typeoneerror on How to pass the ... rest argument array to another function as an object property in flash actionscript 3?Typeoneerror2009-11-17T15:53:14Z2009-11-17T15:53:14Z+1. clone() was a big gotcha for me in learning AS3. Nice answer.http://stackoverflow.com/questions/1718301/add-tween-remove-multiple-instances-of-the-same-mc-tweenlite/1718410#1718410Comment by Typeoneerror on Add/Tween/Remove - Multiple instances of the same MC (Tweenlite)Typeoneerror2009-11-13T06:09:16Z2009-11-13T06:09:16ZBecause the star is passed by reference the time of the TweenLite call. http://stackoverflow.com/questions/1718301/add-tween-remove-multiple-instances-of-the-same-mc-tweenlite/1718410#1718410Comment by Typeoneerror on Add/Tween/Remove - Multiple instances of the same MC (Tweenlite)Typeoneerror2009-11-12T04:03:03Z2009-11-12T04:03:03ZThanks, reuben. Fixed.http://stackoverflow.com/questions/1696954/facebook-connect-xfbml-not-working/1697487#1697487Comment by Typeoneerror on Facebook Connect XFBML not workingTypeoneerror2009-11-09T00:51:23Z2009-11-09T00:51:23ZAnd...now it's working again. http://stackoverflow.com/questions/1696954/facebook-connect-xfbml-not-working/1697487#1697487Comment by Typeoneerror on Facebook Connect XFBML not workingTypeoneerror2009-11-09T00:45:13Z2009-11-09T00:45:13ZHuh, you know what? All my Facebook Connect apps are currently failing as well. I think the "platform is down". Nothing on their status page though: <a href="http://developers.facebook.com/live_status.php" rel="nofollow">developers.facebook.com/live_status.php</a> Welcome to Facebook Connect development! "It works sometimes" should be thier slogan. You can see it failing on one of my apps here: <a href="http://charactersunite.com/discussions/view/6" rel="nofollow">charactersunite.com/discussions/view/6</a> No names or photos. Was working yesterday. http://stackoverflow.com/questions/1689685/flash-security-error-twitter-api/1689816#1689816Comment by Typeoneerror on Flash security error - Twitter APITypeoneerror2009-11-06T22:43:40Z2009-11-06T22:43:40ZYeah, a few days ago Twitter removed the crossdomain allowances they had for a few years. Flash apps everywhere cried.http://stackoverflow.com/questions/1412233/accessing-facebook-wall-posts/1424323#1424323Comment by Typeoneerror on Accessing Facebook wall postsTypeoneerror2009-11-04T23:02:08Z2009-11-04T23:02:08ZI get "stream requires the read_stream extended permission." when running this in the dev console. What's the trick to this?http://stackoverflow.com/questions/1676127/youtube-data-api-limits/1676151#1676151Comment by Typeoneerror on YouTube Data API limits?Typeoneerror2009-11-04T19:59:02Z2009-11-04T19:59:02ZYes, I posted this information in my question. Looking for more specifics on the data access, not the video upload quota.http://stackoverflow.com/questions/1676127/youtube-data-api-limits/1676149#1676149Comment by Typeoneerror on YouTube Data API limits?Typeoneerror2009-11-04T19:58:11Z2009-11-04T19:58:11ZYes, exactly. I'd love to know what those quotas are though ;) Like "10000 requests per hour"http://stackoverflow.com/questions/1660763/zend-lucene-field-relevance/1670291#1670291Comment by Typeoneerror on Zend Lucene field relevanceTypeoneerror2009-11-04T19:40:58Z2009-11-04T19:40:58ZNice, I actually haven't messed with this yet; just saw it was an option when setting up my search indexes.