CryptoNet Webontwikkeling en webdesign blog

30sep/086

Webdesign, web development and SEO books have arrived

As you can read in one of my previous posts, I ordered eleven new books at Amazon, to expand the web knowledge. Not every book will be read by me, since you can't be a pro in every field of creating a website. I will take the development and SEO books for my part, Nick will learn new design tricks and Davy wants to become a real PR dude.

Amazon box with our ordered books

Amazon box with our ordered books

Webdesign, Web development and SEO books

Webdesign, Web development and SEO books

Another view of our website books

Another view of our website books

Geëtiketeerd als: , 6 Reacties
20sep/084

Cannot use object of type PEAR_Error as array

While trying to improve the new website of CryptoNet by integrating some feeds and xml sitemap, my Ubuntu terminal raised following error while trying to install the sfSitemap2Plugin:

>> plugin installing plugin "sfSitemap2Plugin"

Fatal error: Cannot use object of type PEAR_Error as array in /usr/share/php/symfony_1.1/lib/plugin/sfPearRestPlugin.class.php on line 92

Now we will try to solve this! There are two possible reasons:

- symfony has a problem to raise an error
- the plugin is not compatible with this version of symfony (ie 1.1.1, instead of 1.1.0)

First check the dependencies in the package.xml file of the plugin. Just download the pear package from the plugin page, and extract it to your desktop. Open package.xml. In my case the max version of Symfony had to be 1.1.0, and since I'm using 1.1.1 that could be the problem causing this fatal error message.

Next step is to change these requirements and archive the whole package. Change the Symfony dependency to:

<dependencies>
<required>
<php>
<min>5.1.0</min>
</php>
<pearinstaller>
<min>1.4.1</min>
</pearinstaller>
<package>
<name>symfony</name>
<channel>pear.symfony-project.com</channel>
<min>0.8.1</min>
<max>1.2.0</max>
<exclude>1.2.0</exclude>
</package>
</required>
</dependencies>

Save the file, and make an archive of the package.xml AND the plugin folder (in my case sfSitemap2Plugin-0.0.2). You can archive it to .tar for example. Rename it to .tgz afterwards.

Final step we have to do is install the plugin, with the path to your self-made archive. Get back to your terminal and execute following command (of course you need to change the path according to yours):

symfony_1.1 plugin:install /home/../sfSitemap2Plugin-0.0.2/sfSitemap2Plugin-0.0.2.tgz

In my case I use symfony_1.1 for my Symfony 1.1 commands. Don't forget to change this if you used to using "symfony".

Thanks to Johny_the_french for this solution.

Geëtiketeerd als: , , 4 Reacties
19sep/080

Een nieuwe website

Onze kennis en ervaring wordt op regelmatige, al dan niet dagelijks, bijgewerkt. Daarom laten we onze evolutie graag zien in de nieuwe website versie van CryptoNet.

De vernieuwing beperkt zich echter niet tot de uistraling, maar ook achter de schermen heerst er een nieuwe basis, opgebouwd op de Symfony 1.1 fundamenten.

Deze blog zal in de nabije toekomst volledig geïntegreerd worden in de hoofdsite, om zo als 1 geheel naar de buitenwereld toe te kunnen stappen.

Veel plezier op de nieuwe website, en laat gerust een reactie achter met je bevindingen of tips.

11sep/082

Expanding webdevelopment, webdesign, Xhtml & CSS, SEO knowledge

Since we are currently writing the last lines of code for the new CryptoNet website, we ordered some new books to expand our knowledge for our new big social project, X-Power v4.

The books, ordered at Amazon.com, handle multiple important topics in the sector we are working in: webdesign, webdevelopment, Xhtml, CSS and search optimization. The last term is a broad one, since one of the ordered books is more about webanalytics (Google Analytics). As followed you can find a complete list of the books we should receive on october 9th:

Reviews on Amazon were positive, so we should get quality for our money. Someone who has already read one of those books?

Geëtiketeerd als: , , 2 Reacties