Tips & Tricks
How to Unlock iPhone 4, 3GS over iOS 4.3.3 with UltraSn0w 1.2.3
0Ultrasn0w 1.2.3 is available for iOS 4.3.3 on iPhone 4 and 3GS, but it just works for old baseband and does not support to unlock newer iPhone basebands. The latest Ultrasn0w fixes the iOS 4.3.3 compatibility issues.
Note: If you update iPhone 3GS baseband to iPad’s 06.15.00 then your iDevice may lost GPS functionality. Continue reading “How to Unlock iPhone 4, 3GS over iOS 4.3.3 with UltraSn0w 1.2.3” »
How to Track a Cell Phone Number
1Ethics of Cell phone tracking
Tracking someone else’s phone constitutes a major invasion of privacy, no doubts about it. This is irrespective of your intention being good or bad. Think again if this is the only way out for you, before proceeding further. Continue reading “How to Track a Cell Phone Number” »
How to solve Installation errors Extension Manager
0So you designed a perfect site locally. Then uploaded it and decided it needed some plugins. You enabled FTP in configuration.php and tried to Install your plugin, template or language but you get:
I got the following error:
* JFolder::create: Infinite loop detected * JFTP::store: Bad response * Warning! - Failed to move file
This means that there are some server settings which are wrong. You have to go to your global configuration and click on server. The first field is Path to Temp-folder and that’s most likely the local path of you local install. You have to give in your live server path.
There are multiple ways to find that path. The easy one is to create a path.php file that has the following code in it:
<?php echo getcwd(); ?>
Go to example.com/path.php and this will give you the right directory. Put /tmp behind it, place it in Path to Temp-folder and your done.
When you do not use FTP your directory and file permissions need to be set. The problem is that there are a lot of directories and their default setting is 755 which is safe and makes it impossible for users of the same server to place files in you directory. 755 does not make it possible to install or uninstall languages, templates or extensions.
If you change it to 777, you will be able to install and uninstall all your stuff, but… its not that safe.
To make it easy you can make a php file which sets all the directory settings right to 777 when you want to install stuff, and sets it back to 755 when you are done.
The following files need to be set tot 777 to make installation possible:
/administrator/backups/ /administrator/components/ /administrator/language/ /administrator/language/en-GB/ /administrator/language/nl-NL/ /administrator/modules/ /administrator/templates/ /components/ /images/ /images/banners/ /images/stories/ /language/ /language/en-GB/ /language/nl-NL/ /language/pdf_fonts/ /modules/ /plugins/ /plugins/content/ /plugins/editors/ /plugins/editors-xtd/ /plugins/search/ /plugins/system/ /plugins/user/ /plugins/xmlrpc/ /tmp/ /templates/ /cache/
As you can see there are extra languages installed in my default install, so if you use extra languages include them in the list.
You can create a chmod.php file like this:
<?php
if ($_GET['chmod']) { $ftp_chmod = $_GET['chmod']; } else { $ftp_chmod = "0755"; }
echo "chmod=".$ftp_chmod;
$ftp_server='your server';
$ftp_user='the user';
$ftp_pass='the password';
$conn_id = ftp_connect("$ftp_server");
ftp_login($conn_id, $ftp_user, $ftp_pass);
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/administrator/backups/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/administrator/components/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/administrator/language/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/administrator/language/en-GB/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/administrator/language/nl-NL/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/administrator/modules/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/administrator/templates/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/components/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/images/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/images/banners/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/images/stories/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/language/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/language/en-GB/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/language/nl-NL/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/language/pdf_fonts/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/modules/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/content/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/editors/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/editors-xtd/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/search/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/system/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/user/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/plugins/xmlrpc/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/tmp/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/templates/')) { echo "<!--succes-->
"; } else { echo "failed"; }
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' /httpdocs/cache/')) { echo "<!--succes-->
"; } else { echo "failed"; }
ftp_close($conn_id);
?>
When you go to example.com/chmod.php?chmod=0777 the directories are set to 777. To restore to 0755 go to example.com/chmod.php?chmod=0755.
As you can see you still need to use your FTP files, so why not use them as the default setting.
Alternative script that may be easier to modify:
<?php
// your ftp credentials
$ftp_server='ftp.yourserver.com';
$ftp_user='yourusername';
$ftp_pass='yourpassword';
// where is Joomla installed? (trailing slash required)
$base = '/public_html/web/';
// what files or directories need chmod applied? (trailing slash optional)
$dirs = array( 'administrator/backups',
'administrator/components',
'administrator/language',
'administrator/language/en-GB',
'administrator/modules',
'administrator/templates',
'administrator/cache',
'components',
'images',
'images/banners',
'images/stories',
'media',
'language',
'language/en-GB',
'language/pdf_fonts',
'modules',
'plugins',
'plugins/content',
'plugins/editors',
'plugins/editors-xtd',
'plugins/search',
'plugins/system',
'plugins/user',
'plugins/xmlrpc',
'tmp',
'templates',
'cache'
);
// default to safe 0755 setting
if ($_GET['chmod']) {
$ftp_chmod = $_GET['chmod'];
} else {
$ftp_chmod = "0755";
}
echo "chmod=".$ftp_chmod.'<br/>';
// connect via ftp and apply chmod
$conn_id = ftp_connect("$ftp_server");
ftp_login($conn_id, $ftp_user, $ftp_pass);
foreach( $dirs as $dir ){
if (ftp_site($conn_id, 'CHMOD '.$ftp_chmod.' '.$base.$dir)) {
echo "success ";
} else {
echo "failed ";
}
echo $base.$dir.'<br/>';
}
ftp_close($conn_id);
echo 'DONE';
?>
Moving Your Joomla Website
0So, how do you move your Joomla site from one host to another, or from one location to another… easily?
We’ve found the best success once again, using the free tool www.akeebabackup.com Continue reading “Moving Your Joomla Website” »
Announcing /motif – a New Template Framework for Joomla!
0We are pleased to announce the beta launch of our new Joomla! template framework, /motif. Actually, it’s not that new. We built /motif back in October of 2009 for our own purposes.
/motif is a template development framework for Joomla! built to simplify the development of fully-custom Joomla! templates and empower web designers to become Joomla! template developers. We are Joomla! template designers and developers, and we built /motif in October 2009 to “scratch our own itch.” Continue reading “Announcing /motif – a New Template Framework for Joomla!” »
How to override offline mode in Joomla without requiring a login
0As you may know, you can set your Joomla site “offline” by setting “Site Offline” to “Yes” in the Global Configuration. This is a great feature that enables you to build or troubleshoot your site in offline mode, restricting access only to backend users who login through the login form displayed on the offline page. Continue reading “How to override offline mode in Joomla without requiring a login” »
30x iPhone free Tips and Secrets!!
0
30 pieces of real -no-nonsense- iPhone Secret Tips for free at iPhone tips and Tricks!!
1. Phone: To stop an incoming call from ringing, press the sleep / wake button. To send the call immediately to VoiceMail, press the sleep / wake button twice.
2. Email: To delete email by just swiping left to right on the email in the list and press the delete button that pops up on the right. Continue reading “30x iPhone free Tips and Secrets!!” »
How to turn your iPhone into a universal remote?
0Now a product from a company called L5 will help iPhones seize control of the home theater instead of the desktop. It’s called L5 Remote, and it has two components: a free app and a not-free hardware accessory. The accessory attaches to the iPhone’s USB port, then sends IR signals like most other universal remotes. It captures the signals sent out by your existing remotes so you can map them to buttons on the app. The cool part? The app lets you customize the interface by adding, deleting and moving around buttons to match your personal uses. Continue reading “How to turn your iPhone into a universal remote?” »
How to Download Facebook Account Information
0Facebook has included a new and exciting feature which allows users to download Facebook account information including messages, wall posts, comments, photos, videos etc. in a zip file format which could be saved on personal systems for offline access. Continue reading “How to Download Facebook Account Information” »
How to convert ‘.DOCX’ Extension to ‘.DOC’
1
Docx is the new file extension standard for ms word 2007 documents, you can load the documents into ms word 2007 and then “save as” office document.
In Office 2007 Microsoft introduced a new file format called the Microsoft Open Office XML Format (.docx). This format is not compatible with older versions of Microsoft Word or with alternative operating systems like Linux or Mac OS X. Nor is it compatible with other word processing applications like OpenOffice, Lotus 123, or NeoOffice. Continue reading “How to convert ‘.DOCX’ Extension to ‘.DOC’” »
How to git rid of virus without any Tool/software
3
What is a virus? I only know that is a those things which plays a very bad role in every field of life. In medical science there is a lot of diseases in a living things(plants and animal) related to virus like AIDS, Hepatitis, polio, mosaic disease in tobacco leaves etc but my main focus is computer virus. killing of virus is very difficult because it cahange its morphology like a original file or folder. Continue reading “How to git rid of virus without any Tool/software” »
How to Make a Photo Mosaic
1How to create a mosaic style picture of your own self without doing any of the hard work? Then give Frintr a try.
Frintr will fetch profiles pictures of all your friends on Twitter and Facebook and turns them into one large mosaic that resembles one of your own pictures.In this example you can see all of your friends pictures in a single frame.(see example). Continue reading “How to Make a Photo Mosaic” »
There is no disk in the . Please insert a disk into drive
0
How to resolve above error when you have install a fresh windows. Most of people think it is a window error, may b some during installing files does not copy or corrupted. So in this situation installation of new window is not a proper solution. There is a some steps when you fellow then this error will be solve without any wastage of time. Fellow these steps and git rid of this erroe with in a seconds. Continue reading “There is no disk in the . Please insert a disk into drive” »
Facebook Testing “Delete Account” Option
0Finally, Facebook turned over out the aspect to Delete Account permanently to some of facebook users for investigating and before long that would be obtainable to all 500 million facebook users over the globe .The surviving “Deactivate Account” aspect of facebook truly does not unlink user’s divided knowledge so population who are nervously fed up with public networking and Continue reading “Facebook Testing “Delete Account” Option” »








