Category Archives: PHP

Upload using C++ as Client and PHP as Server

Level: Beginner (coder) This is a small tutorial which will teach you how to upload files using a C++ client application to a server running PHP. I had previously posted a version for C# that can be found here: http://www.johny.org/2007/08/upload-using-c-as-client-and-php-as-server/ … Continue reading

Share
Posted in Apache, C#, Client-Server, PHP, Programming, Tutorials | 3 Comments

Apache2 .htaccess RewriteEngine error

To enable .htaccess files on your server, edit “/etc/apache2/sites-available/default” file, change AllowOverride to All NameVirtualHost * <VirtualHost *> ServerAdmin admin@site.com DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow … Continue reading

Share
Posted in Apache, Help, Hosting, linux, PHP, Programming, Tutorials, Web | Tagged | Leave a comment

Poor Mans Cluster PHP library to run a cluster

I’ve been cleaning my laptop today, and came along a project I did for my Parallel Programming course, I’ve never published this because the code was never completed as I lost interest, the challenge was the idea and the concept, … Continue reading

Share
Posted in Client-Server, Cluster, Parallel Programming, PHP, Programming, Project, Tutorials | 2 Comments

Upload using C# as Client and PHP as Server

Level: Beginner (coder) This is a small tutorial which will teach you how to upload files using a C# client application to a server running PHP. We’ll call the PHP script “upload.php”, this is what it should contain: <?php $uploaddir … Continue reading

Share
Posted in C#, Client-Server, PHP, Programming, Tutorials | 11 Comments