Archive for March 8th, 2010

WordPress Installation Services(Self Host)

This is good to have a blog or website. It can be a hobby or a professional job. In any case you want to set up your own blog but don’t know how to do all the things. Have you tried to install WordPress on your own site with no luck? Too much geek speak about setting up a database, file permissions and FTP clients? Even if you did get all that right is it properly configured with all the right plugins to get the most out of it?

There are many reasons to host WordPress on your own site but if you have found this page chances are you already know that. Here is what you will get from using my service.

  • The latest stable version of WordPress installed on your site.
  • The best available plugins for making the most out of your new blog.
  • Search engine optimized from the start and plugins that optimize each new post.
  • Your choice of multiple themes and the ability to upload and install thousands for free right from within the dashboard.
  • Personalized one-on-one service and real answers to your questions from me.

Your new WordPress blog will be search engine. It will also automatically ping all the top services so you will not need to not use any other services to ping your blog.

Of course you can take the time to do all this yourself for free, and your hosting account may even offer automated WordPress installation from within the control panel. In fact installing WordPress isn’t really the hard part. The hard part is learning how to customize WordPress, configure and use it, and then choosing and configuring all the right plugins. This could take weeks if not longer to figure out.

All this will be done for you for only $20. That’s it, only $20 and I will setup your blog with all the configurations. If you require additional services, customization or personal instruction you will find the additional fees very reasonable.

Here is how it work

Use my contact us form with all you Hosting/Domain information and other inquiries. If everything is ready you will then get a PayPal/Credit Card payment link before I get started.

Need a good hosting account? Click This banner:

Lunarpages.com Web Hosting

File transferring, uploading from one server to other server using php

It is easy to transfer/upload a file from one server to an other from php scripts. You have to use php ftp functions. If you have ftp access to other server(host, username, password), then you can follow following steps to upload a file from your loacl or from remote server to any other server.

1.First connect to the server where you want to send the file as:

$ftp=ftp_connect(“ftp.yourdomain.com”);

This will connect your php script to the other server.

2.Now open the file which you want to transfer or upload as:

$fp=fopen(‘myimage.jpg’, “r”);

You can open any file even any remote file using full file path.

3.Now login to ftp host using “username” and “password”.

ftp_login($ftp, “username”, “password”);

4.Now upload the file as:

ftp_fput($ftp, “public_html/myimage.jpg”, $fp, FTP_BINARY);

This function will put the file in public_html folder with same file name but you can use any name instead of “myimage.jpg”, the file will transfer with new name.

5.At end close ftp and opened file.
ftp_close($ftp);
fclose($fp);

Note: Here you need to specify the “public_html” folder name as most ftp give access to the main cPanel folder but if your ftp direct login in “public_html” then you don’t need to specify the “public_html” folder, just put file name. If you you are upolading file to any internal folder then you specify that folder name. Suppose you want upload the file to images folder then follow this:

ftp_fput($ftp, “public_html/images/myimage.jpg”, $fp, FTP_BINARY);

Full Code:

<?php

// Connect to ftp host

$ftp=ftp_connect(“ftp.yourdomain.com”);

// Open the file which is to be transfer

$fp=fopen(‘myimage.jpg’, “r”);

// Login to ftp host

ftp_login($ftp, “username”, “password”);

// Transfer the file in the “public_html” folder

ftp_fput($ftp, “public_html/myimage.jpg”, $fp, FTP_BINARY);

// Close ftp and opened file

ftp_close($ftp);
fclose($fp);

?>

Searched By:

inurl:/viewthread?thread= powered by vbulletin remote camera systems (3), term inurl:/guestbook html?page= (2), inurl:/guestbook php?new_message= amante (2), shared php server copy with http (1), send pwd ftp c sharp (1), script to move files from one directory to another within the ftp-server c# (1), saving files from one website to another website c# (1), save file to folder remote server c# (1), sample ftp file transfer script to another computer (1), remotely move a file from server to server (1), remotely copy files remote computer in c# (1), powered by vBulletin free ftp software (1), powered by vBulletin client server software (1), soap remote file uploade (1), “powered by vbulletin” contractor mortgages (1), transfer file to another computer using c# net (1), write the files from server using c# (1), vb6 store file remote server (1), vb6 file another computer login (1), vb6 copy to remote server (1)