Oooops.
Thx to pedr that pointed out the bug regarding the captcha, where no field where actually visible for you to enter the code.
You can now add comments without any problems.
++
Posts Tagged: website
18
Jul 08
Website – Bug Fix
29
Jun 08
Blog life – Again a new theme
While I really liked the old theme, it needed some work to fit my needs… Working on it means having time to work on it, which I don’t have. So I’ve looked around again for a theme, widget ready.
So here is the new one and a big thanx to mukkamu for this nice theme…
++
26
Jun 08
RIA Ressource – tostring.org
It’s been a while since I blogged. Working like hell and have no time for anything else :/
But I had to talk about the initiative of Mike Chambers and the tostring.org website.
The purpose of this website will be to list the open source books available on the net and also translate them into non-english language.
Check Mike post here
++
20
Dec 07
The Lowdown website – Sandy 3 and lowRa
Hello there,
The 1st of December was the launch of a website I’ve been working on : The Lowdown.
This website is part of the New Zealand Ministry of Health’s national depression initiative (NDI), which aims to help young people recognize and understand depression, and encourages them to seek appropriate help, or puts them in touch with trained professionals, thus to reduce the impact of depression on the lives of New Zealanders
To create this website we have used lowRa and Sandy 3 so was done using AS3.
The site is plugged on the Silverstripe CMS, using amfphp 1.9.
Thing is both of those AS3 libraries, at the time the project started, were still in beta, and not all the features needed to develop the website done yet.
First in lowRa was missing the assembler which helps you to load dlls ( assets, classes ) and build the application at runtime ( create plugins / view / custom objects, … )
Second, Sandy didn’t get any mouse interaction on the texture level, ie interacting with InteractiveObject but also text links ( not that easy when you’re actually clicking on a snapshot of a display object
)
So the first task has been to develop those. This project helps as well adding other features / fix in those libraries.
I’m quite happy to see they’ll be integrate in those libraries.
Continue reading →
5
Sep 07
Website Update – Search
I have just realized that the search function wasn’t working correctly.
This is a bug that every wordpress user will have, as this bug is coming from the pluggin Ultimate Tag Warrior.
Someone has found an easy fix
Sorry about that, now you should be able to search in the post normally.
++
27
Jul 07
MTASC – MTASC compliant AS2 classes
Hello,
Some people on the pixlib mailing list ask me to give them the macromedia classes patched for mtasc ( for strict compiling ).
The patch are on the osflash.org website here, but you can download the classes already path below
And this post reminds me that I have to finish updating my website. I definitly need to go through some CSS
25
Jul 07
Web Development Tips – How to optimize your website
Thx zwetan from the FCNG mailing list one more time who found those interesting articles. Check them out
High Performance Web Sites: Rule 1 – Make Fewer HTTP Requests
High Performance Web Sites: Rule 2 – Use a Content Delivery Network
High Performance Web Sites: Rule 3 – Add an Expires Header
High Performance Web Sites: Rule 4 – GZip Components
High Performance Web Sites: Rule 5 – Put Stylesheets at the Top
High Performance Web Sites: Rule 6 – Move Scripts to the Bottom
High Performance Web Sites: Rule 7 – Avoid CSS Expressions
High Performance Web Sites: Rule 8 – Make JavaScript and CSS External
29
Mar 07
It’s alive … ALIVE!!!
Yeah, after almost 1 day the server is up again.
Why was the server down? Simply cause a bot of the data center my dedicated server is, figured out that I ( my stuff on the server ) had abusive behavior, by looking at all my open port ( this is what the technical guy said ). So it had just disconnected the server to the network… WTF?! Then you have to send a query and then people are looking at your problem and are fixing it ( put the server back on the network )
This is not funny at all. Even if the service provided so far is good ( good price for a dedicated server, no bandwidth limit, 160Go HD, 2.5 Celeron, … )
I’m not very happy with that kind of procedure…
28
Feb 07
Oregano – how to run the server
Hello there,
First, check this post if you dunno Oregano.
This one looks kinda easy, but I took some times to get the server running and the basic example provided working, cause of some stuff not written in the manual.
I’m using mysql. I’ve downloaded the JDBC connector from the mysql.com website. Do as described in the manual and put this in your config
[xml]
driver="com.mysql.jdbc.Driver"
userID="root"
password=""
connectionLimit="20"
transactions="false"
>
[/xml]
Continue to follow the manual.
When you are creating the table you need to insert a record in the mode table, otherwise when oregano will want to update the value, you’ll get an error ( as no record is in the table yet ).
If you are using mysql that support innoDB use innoDB and put transaction=”true” in your config file.
If so instead of using the oregano.sql provided in the zip downloaded on their website you can use this file which create all the table in innoDB and insert the missing record
I got an error with the server ID too so I’ve changed it. If you do so, remember to change it everywhere in the config file ( here in the
That’s all for now…
More will come as I will go further in the development with this socket server.
And thx to Eric who helped me to find my way…