ABHIONLINUX
Site useful for linux administration and web hosting

2010/09/25

Phpmotion : Uploading video asks .pl-File to download

When we try to upload videos in to phpmotion, it will be asking to download uu_upload.pl.

If you are getting the download an upload script fo video, it means that your site is not executing the script but it is treating as plain text type doc. what we have to do is to make your site to run .pl and .cgi files.

For this, you need to check the permission of cgi-bin folder and files inside it,. it should be 755.

To make your cgi and pl files to be run in your site, you need to add the following lines in your htaccess.
===============================
AddHandler cgi-script .cgi .pl

Options +ExecCGI


Options +ExecCGI
===============================

2010/07/01

word-press url change, site not loading correctly

If you wordpress url has changed, while accessing the domain. Your site will not load correctly.
For this you need to change the values in the wordpress database.

First you need to change the siteurl field inthe wp_otions table,

select * from wp_option where option_name="siteurl";

update wp_options SET option_value="http://newdomainname.com" where option_name="siteurl"

Then you need to update the "home" field in the wp_otions table,
select * from wp_options where option_name="home";
update wp_options SET option_value="http://newdomainname.com" where option_name="home";