Install Fuppes (0.661+) on Ubuntu 9.10 Karmic x64
I was having a tough time finding thorough, up to date instructions not requiring any compiler hacks on setting up a good well rounded fuppes media server with transcoding/thumbnailing support for my PS3.
What you see here are corrected instructions put together from various forums and web posts and the Fuppes wiki (links to follow)
FUPPES .661+ INSTALL INSTRUCTIONS FOR UBUNTU (Debian) 9.10 Karmic 64 bit
MySQL – Excellent performance with good planning
This is nothing new to add to the world of comparisons, but I felt it worth clarifying a few points that I - someone who's not a complete pro, yet not a novice -- I'd say intermediate developer - have learned about working with MySQL in terms of when to use what and improving efficiency based on an average of all information researched, and the results I achieved.
Normally, most of my work has been with small low traffic websites for various small businesses where efficiency planning was mostly too time consuming for the cost. Recently have been working on higher traffic applications and after running into a "too many connections" issue during peak hours tried many initial steps at alleviating the problem, such as increasing efficiency in my database abstraction class (starting with lazy loading), and releasing result sets asap among a few others. Each step added a performance gain, but not until all matters were taken into account did it make a difference.
These changes quickly formed into my personal list of best practices and good habits to get into.
A few rules of thumb that have served me well:
Brandie’s Baby Shower and New Orleans with Devin & Chad
To recap with the bad first, during my trip through Houston, Baton Rouge and New Orleans, I accumulated two speeding tickets worth $450 total, neither of which ended up on my driving record thankfully. Everything else was great! Would also mark my meeting of Chad.
After spending a good amount of time at Bush Intercontinental figuring out which rental place was best suited to our rental situation, we left with a Pontiac G6 with terrible alignment. Car was decent, steering on acceleration, however, was dangerous.
We drove into Baton Rouge from Houston around 4am without having researched much in the way of lodging. Ended up at the Ramada Inn on Airline Hwy. Not a very impressive stay but for the price and timing, it had to do.
We got the keycard to our room. Much to our shock on walking in sleepy heads popped up in alarm. NOT vacant. For this error, we got two rooms for the price of one. Didn't really matter the rooms were pretty dingy - namely the bathrooms - Sleep is sleep [as long as no strangers walk in to startle you].
__PHP_Incomplete_Class as array
Regarding something to which I found no straight answer in 8 pages of google results:
"Fatal error: Cannot use object of type __PHP_Incomplete_Class as array in"
The offending line was the first instance of a session variable with a certain key name:
if (!isset($_SESSION['user'][0])) { $_SESSION['user'][0] = 0; }
On the development server there were no problems, but put on the demo shared server over which I have no control, the error appeared. I scoured the internet for the solution but it seems anyone who has this problem never really gets a straight answer - and it seems to come up a fair bit. Incidentally, it seems to be related usually to login/user/session management scripts since certain keywords are fairly common in those situations.
Frustrated, as a last ditch attempt I changed it to:
if (!isset($_SESSION['usrinf'][0])) { $_SESSION['usrinf'][0] = 0; }
The problem was solved instantly.
Turns out it was the key "user" which was the problem in the hosting environment.
So if anyone has this issue, do a find/replace of all instances of the session variable key located in the line indicated by the error to something more unique .