Entries Tagged 'Code' ↓
February 9th, 2006 — Code, Site News, WordPress
I was having some issues with WordPress and the image uploading function, every time I uploaded an image I'd get an error telling me that the thumbnail wasn't found. Taking a look at the code in wp-admin/admin-functions.php (starting at line 750 or so) made me realize that I had a similar error on this server when trying out PixelPost. And the fix was exactly the same.
I just checked and there is a fix up on Trac so it should be good to go with the next release. But, if you need to fix it now open up admin-functions.php and look for (around line 750 or so):
$thumbpath = str_replace(basename($file), $thumb, $file);
just after it insert:
touch("$thumbpath");
And you should be all set.
February 6th, 2006 — Code, Retro Gaming, TOSEC
Opps I wasn’t paying attention - the new TIM is out!
changed/added (shindakun - SalmonKing)
——————————————————-
- Read Only file(s) in zip.
- Fixdat including extra data.
- Set status not saving.
- Added ‘demo-kiosk’ to the list of demo flags available
February 2nd, 2006 — Code, Site News, WordPress
WordPress 2.0.1 was released the other day - I’ve already updated the site from the nightly code. Just before the release I started going through Trac to see if I could fix any of the bugs or what not that people had found. I submitted a couple diffs for some of the minor issues - not for 2.0.1 but for the eventual 2.1 release. By no means spectacular but, every little bit helps I guess. Besides it gives me some good PHP practice. I’m going to follow the Trac and the wp-hackers mailing list as I have time - to see if I can continue to contribute.
I’ve got a couple of ideas in the works for the site - hopefully I’ll have some news posted soon.
January 30th, 2006 — Code, Movies
Ismo has a post today about an interesting project he has been working on… It’s a nice PHP/MySQL app for personal movie reviews. It even has a wish list of sorts with a log of movies in line for future purchase and ones which will be skipped over. I suggest everyone check it out.
Hey, Ismo you should add a suggested viewing section so people can submit films they think you’d like - and when you release the source let me know (I think I might have to add that to my site).