Simple defragmenter

UPDATED: fixed a bug with filenames with spaces
UPDATED: now you can defragment a single file
UPDATED: made it preserve permissions and ownership (using cp -a)
UPDATED: changed disclaimer
hi, i created a simple defragmenter. I tested it with my /opt dir and my /var/lib/pacman dir. Everything still works fine (kde, swiftfox, pacman -Qs, pacman -Ss).
It needs you to install filefrag. (I supose everybody has md5sum, cp, mv, grep, sed, find, mv and cp).
#!/bin/bash
ME=$0;
FILE="$1";
function MD5move {
newFile="$1";
oldFile="$2";
OLD_MD5SUM=$(md5sum "$oldFile"|sed 's/ .*//');
NEW_MD5SUM=$(md5sum "$newFile"|sed 's/ .*//');
if [ "$OLD_MD5SUM" != "$NEW_MD5SUM" ]; then
echo ":: MD5SUM check for file $FILE failed"
else
mv "$newFile" "$oldFile";
return 1;
fi
function defragSingleFile {
TMP_DIR="/tmp/defrag.pajaro/$$"
mkdir $TMP_DIR
TMP_FILE="$TMP_DIR/new_file"
NEW_NUM_EXTENDS=9999
TMP_NUM_EXTENDS="$NUM_EXTENDS";
LOOPS=0;
while [ "$NEW_NUM_EXTENDS" != "1" ]; do
cp -a "$FILE" "$TMP_FILE"
NEW_NUM_EXTENDS=$(filefrag "$TMP_FILE"|grep found|sed 's/.*: //'|sed 's/ .*//');
if [ $NEW_NUM_EXTENDS -lt $TMP_NUM_EXTENDS ]; then
MD5move "$TMP_FILE" "$FILE";
if [ "$?" != "" ]; then
TMP_NUM_EXTENDS="$NEW_NUM_EXTENDS"
fi
fi
let LOOPS="$LOOPS + 1";
if [ "$LOOPS" == "5" ]; then
break;
fi
done;
if [ "$NEW_NUM_EXTENDS" != "1" ]; then
echo ":: We couldn't reduce the extends of $FILE to 1. It stayed in $TMP_NUM_EXTENDS (it had $NUM_EXTENDS)";
else
#echo "==> Now we should md5sum $FILE and $TMP_FILE";
echo "==> $FILE defragmented! (it had $NUM_EXTENDS)";
fi
if [ -f $TMP_FILE ]; then
rm $TMP_FILE;
fi
rmdir $TMP_DIR;
if ! [ -d /tmp/defrag.pajaro ]; then
mkdir /tmp/defrag.pajaro
fi
if [ "$FILE" != "" ] && [ "$FILE" != "--i-understood" ]; then
EXTENDS=$(filefrag "$FILE"|grep found);
if [ "$EXTENDS" == "" ]; then
echo "$ME: Error getting filefrag information for file $FILE";
else
NUM_EXTENDS=$(echo $EXTENDS|sed 's/.*: //'|sed 's/ .*//');
if [ "$NUM_EXTENDS" != "1" ]; then
#echo "Defragmenting file $FILE because it has $NUM_EXTENDS extends";
defragSingleFile $FILE, $NUM_EXTENDS;
fi
fi
elif [ "$FILE" == "--i-understood" ]; then
find -mount -type f -exec /usr/bin/defrag {} ;
else
echo "If you use it, you have to be sure that no other process is accessing"
echo "the files that are cointained in the directory that you run it."
echo
echo "Use it at your own risk."
echo
echo "Usage:"
echo "defrag --i-understood - Defragments the current directory. Does not descent into"
echo " other mounts."
echo "defrag [file] - Defragments [file]"
fi

Pajaro wrote:The reason why there are no windows-like defragmenters for Linux is that in Linux this kind of operation is too dangerous.
No, not because the operation is dangerous, but because it's not needed.
Fragmentation, is when a *single file's* parts, are spread across a drive, not continuous.
Unlike fat and ntfs, the major linux filesystems do not suffer this to such a degree. Fragmentation is generally very low because of their design. Not sure whether it's ext3, or reiserfs, but the fsck tool for that fs spits out the fragmentation of a partition when it's done -- i've never seen it rise above 3 or so percent.
So we have simple defragmenters, that just copy files hoping that the fragmentation gets reduced. Another example of this is pacman-optimize.
It is said that with ext4 fragmentation will disappear.
These "defragmenters" just rewrite files, in an attempt to have them saved in the same area of the drive.
This is not something any filesystem can easily do itself, as a filesystem has no knowledge of the meaning of the contents of a file and it's relevance of location to any other file.
This is an 'issue' that will exist as long as we use hard drives like those today, where location on the platter affects speed. On flash devices, fragmentation isnt an issue, it makes no difference where data is located to read speed -- and that change will probably happen before filesystems gain the knowledge of which files make up firefox and thus must be stored near each other.
As it is, the pacman optimisers use this to work around the flaw in pacman, that it's database is built from thousands of files.
James

Similar Messages

  • Defragmentation of /var/lib/pacman/ (reiserfs)

    on my laptop i run arch from 0.4 and since then i have over 1200 packages installed. i used reiserfs and realized now, that it accumulated a certain amount of fragmentation over time and is now accessing /var/lib/pacman/ very slowly (that's why pacman sometimes takes very long do to anything) ... coupled to this, the hdd on this laptop is not the fastest ...
    now i just for fun tried something i didn't believe really that it would help but it helped a lot (pacman is now much faster) - what i did:
    [root@Asteraceae lib]# pwd
    /var/lib
    [root@Asteraceae lib]# cp -r pacman/ pacman_cpy/
    [root@Asteraceae lib]# rm -r pacman
    [root@Asteraceae lib]# mv pacman_cpy/ pacman/
    this defragmented the big collection of small files stored across my hdd to one place and now pacman is much faster

    apeiro wrote:
    Wow, that's a good (and simple!) idea, Damir.
    It might be a good thing to include as a pacman option itself.
    pacman --dbmaint or some such.
    thank you. this really helped me with speed of pacman but i feel it more a workaround (a very effective one!) than the solution. however, as it really solves the problem, i can live with this workaround ;-)
    yet another idea towards the solution i can think of now is to use a tarball to store everything and using a ramdrive while working with these files (extract everything from tarball to ramdrive and mount it @ /var/lib/pacman (at boot) and copy everything back to tarball when something is updated (e.g. pacman is run)). this would keep it simple but minimize the accumulation of a defragmentation to a minimum (on the hdd, the whole db will be a single file that is only used as a mirror to the ramdrive)
    including such a workaround in pacman i don't mind but other people will say that this is not a good solution (one of my colleagues at the uni already laughted at me using such "primitive" methods against defragmentation, but i told him that it worked great and is very effective and i don't mind if it is "primitive" or not as long as it does the job). also there will be others to claim that this is unneccessary as everybody can do a cp -r and then rm and then mv by hand.

  • MAC OS extended journaled hard drive: does it need defragmentation?

    Hi,
    i have a 2TB external hard drive (A) upon which i have 1.5TB  of image and video files
    I am goimg to be seperating out the video files (approx 1Tb)  and transferring them to another hard drive (B) leaving lots of little gaps across this drive where the old files previously existed.
    Is the operating system   "MAC OS extended journaled" one which, for want of a better term, a format that "self-defragments" itself, thus ensuring that  drive A provides me with the full capacity after the move of the video files as MAC comptuers do?   Or do i have to perform some form of manual intervention either running a version of a "de-frag" programme on the hard drive, or transferring the data across to another drive and re-formatting Drive A and starting from the beginining?
    Thanks

    Mac drives do not need to be defragmented manually.  I don't think it's so much that they 'self-defragment' as it is that they store data efficiently in the first place, but no intervention is necessary.
    You should just take this as a general rule.  OS X is designed to be maintenance-free.  There's nothing you need to do at the system level unless you're seeing some sort of odd behavior, and even that is generally corrected by a simple restart.  It doesn't generally hurt to do manual maintenance, but to my mind something like defragmentation consumes a lot of time and introduces a risk of error, while providing negligible gains in performance.  Not a favorable cost/benefit ratio.

  • Storage Spaces - Remove Physical Disk from Simple layout

    I am running Server 2012 RTM with a single storage pool containing 4 drives - 2.73TB, 1.36TB, 465GB and 148GB. There is a single virtual disk created, with thin provisioning, using the Simple layout, with a current maximum size of 2.73TB, and with 1.32TB
    allocated. I want to remove the 148GB drive and replace it with a 465GB drive. When I right-click the 148GB disk and select Remove, I get a warning that Windows will attempt to rebuild any virtual disks that store data on the disk I'm trying to remove, and
    that in order to succeed, the storage pool must have enough free space to accommodate the data from the disk I'm trying to remove. There is more than enough space in the virtual disk to accommodate whatever files may be stored on the 148GB disk - over 1TB
    unallocated. However, when I confirm that I want to remove the disk from the pool, I get the following message:
    This physical disk is used by one or more virtual disks that use the Simple (no resiliency) layout. To remove this physical disk, delete the following virtual disks: Simple
    Surely the fact that it's a simple volume (rather than mirrored/parity) shouldn't affect the ability to move the data off the disk? It appears that disk removal is implemented as a simulated drive failure, forcing a rebuild of the resiliency data, rather
    than by simply moving the data off the disk onto other available disks.
    Additionally, after I've attempted to remove the disk, it's now been marked as 'Retired'.
    Is there any simple way to remove this disk?

    Same problem here, but I have some workaround for the problem.
    But, even in Windows Home Server with its awesome disk extender (predecessor of Storage Spaces) you had to take the shares (meaning volumes in our case) offline so you could take out the disk from the pool.
    Agree that it would make more sense to be able to remove disk from the pool online and the technology is most likely is already there: online cluster moves with defragmentation API was there for years and ReFS moves clusters online when it detects disk errors.
    Anyway here is the process that may work for you if taking volume offline is an option in your case:
    Try to remove physical disk in Server Manager - it will fail with abovementioned error, but the disk will go into "Retired" state.
    Now provision a new Virtual Disk and a volume of your choice. Most likely you will pick the same disk and volume type as you already had, but this is the chance to change the topology. You should be able to do this since you have a lot of physical disk
    space, especially if you used Thin provisioning.
    It looks like at this point retired physical disk is not included into the new Virtual Disk provisioning, but it is still accessible via existing virtual disk.
    Copy over all files from your old volume to a new volume.
    Now delete old Virtual Disk.
    If you want - change disk name and volume letter of new virtual disk that you created and new volume to what you had before.
    Now in Disk Manager take failing physical disk offline.
    Replace failing disk, initialize new disk and add it to the pool.
    Note: for me sometimes removing disk in via Storage Pool management GUI does not mark it as "Retired". In this case you can open PowerShell as Admin and assuming you want to remove PhysicalDisk2 - run the following command:
    Set-PhysicalDisk -FriendlyName PhysicalDisk2 -Usage Retired
    HTH

  • Diferencial de Alíquota - Optante pelo Simples

    Experts, boa tarde.
    Tenho um issue aqui no projeto e gostaria de uma juda de vocês.
    O business apresentou a necessidade de ter um tax code  que calcule o diferencial de alíquota (DIFAL), porém quando a condição de ICMS for a ICM0.
    Ou seja, complementar o ICMS mesmo quando ele não é devido. Encontrei pessoas com esta situação também no www.localizationforum.com.
    Até o momento já tentei diversas alternativas através da configuração, porém sem sucesso até agora.
    Algum de vocês já passou por algo parecido?
    Abraços

    Nesse caso, o que fiz foi usar o campo setor industrial (no cadastro de fornecedor) e informar lá que ele é optante por simples e via abap colocamos que se esse fornecedor fosse optante deveria seguir a regra abaixo:
    ZIM u2013 0% ICMS + Crédito de Pis/Cofins: Determinar esse IVA quando transportador é optante pelo Simples e da mesma UF do local de expedição.
    ZY u2013 0% Subst. Trib. ICMS: Determinar esse IVA quando transportador é optante pelo simples e de UF diferente do local de expedição.
    Atenciosamente,
    Antonio Oliveira

  • Simple Button

    I have a Dynamic page that is a parts list in a MySQL
    database that I show on a page using PHP in Dreamweaver.
    The page uses a repeat region to list the parts depending on
    what nav link is clicked and what I want to do is add a flash
    button to the repeated region that when clicked will take you to a
    larger view. I have all of this setup and working fine except for
    the flash button.
    For instance when the page is loaded you may see 10 parts
    listed and the button will show up 10 times also, on button next to
    each part listed. I am currently using a simple image as a link to
    the larger view and it works fine. The link looks like this.
    largeview.php?SearchField=<?php echo
    $row_Recordset1['Part']; ?>
    My problem is that flash doesn't read the php in this code:
    "<?php echo $row_Recordset1['Part']; ?>". I need flash read
    the php code so it knows what part number to show.
    Is there any other code that can be used to have Flash read
    the php code?
    I hope I explained this properly and any help would be
    greatly appreciated!
    Mark this message as the answer.
    Print this message
    Report this to a Moderator
    Nickels55
    User is offline
    View Profile
    Senior Member Posts: 2048
    Joined: 01/11/2006
    Send Private Message
    08/16/2007 07:41:46 PM
    Reply | Quote | Top | Bottom
    Tutorial on the subject:
    http://www.kirupa.com/developer/actionscript/flash_php_mysql.htm
    ~Flashtard - Giver of poor advice~
    Mark this message as the answer.
    Print this message
    Report this to a Moderator
    painlessbart225
    User is online
    Junior Member Posts: 3
    Joined: 08/16/2007
    Send Private Message
    08/16/2007 09:28:43 PM
    Reply | Quote | Top | Bottom | Edit
    I guess I don't understand this very well I can't seem to get
    it to work.
    I can get the part # to show on the page using:
    print "myVar=$x";
    but the button link I am trying to use is:
    largeview.php?SearchField="myVar=$x"
    I know this isn't right but the button is just a button using
    the option in Dreamweaver to Insert > Media > Flash Button
    and the only option is a link.
    how should I write the link so that the flash button will
    read it?

    I fixed my own problem.... here's for anyone else with a similar situation or for future people searching the forums
    just use
    setLayout(null); This is not the recommended solution. Try resizing your frame. Does the position of you button remain centered relative to the frame?
    You should be using a LayoutManager as was suggested above. You should read the tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]How to Use Layout Managers. I would probably use something like:
    JPanel south = new JPanel( new FlowLayout( FlowLayout.CENTER ) );
    panel.add( button );
    contentPane.add( panel, BorderLayout.SOUTH);

  • Generate report using CURSORS? - Simple question

    Folks,
    I'm a real newbie still with PL/SQL so please excuse my ignorance I have a simple report I need to generate. The following SQL statement gets me all my "header" records:
    SELECT OHA.ORDER_NUMBER, HEADER_ID, ATT11, ATT12, ATT16
    FROM XXXWD.WD_DUPS DUPS, OE_ORDER_HEADERS_ALL OHA
    WHERE OHA.ATTRIBUTE11 = DUPS.ATT11
    AND OHA.ATTRIBUTE12 = DUPS.ATT12
    AND OHA.ATTRIBUTE16 = DUPS.ATT16
    AND (OHA.FLOW_STATUS_CODE NOT IN ('CLOSED', 'CANCELLED'))
    AND (ATT11 <> 'WESTERN SERVICE')
    ORDER BY ATT11, ATT12, ATT16
    What I want to do now is have a second script that will display all my detail records. Something like:
    SELECT OLA.LINE_NUMBER, OLA.ORDERED_ITEM, OLA.FLOW_STATUS_CODE
    FROM OE.ORDER_LINES_ALL OLA
    WHERE OLA.HEADER_ID = OHA.HEADER_ID
    I expect I'd do this with two cursors, passing the value of my HEADER_ID to my second cursor. But when I've used cursors before, they primarily have been to import data, and manipulate data. But what if I just want to create a report using these?
    I essentially want to display my header information, and then any lines below that data (if there is any, there may be a header with no lines).
    Can I create a simple report like this with cursors? Any help with this would be IMMENSELY appreciated. I'm really under the gun... :)
    Thanks so much!
    Steve

    Here's one query that will give you everything:
    SELECT OHA.ORDER_NUMBER
          ,OHA.HEADER_ID
          ,DUPS.ATT11
          ,DUPS.ATT12
          ,DUPS.ATT16
          ,OLA.LINE_NUMBER
          ,OLA.ORDERED_ITEM
          ,OLA.FLOW_STATUS_CODE     
    FROM   XXXWD.WD_DUPS        DUPS
          ,OE_ORDER_HEADERS_ALL OHA
          ,OE.ORDER_LINES_ALL   OLA
    WHERE  OLA.HEADER_ID   = OHA.HEADER_ID
    AND    OHA.ATTRIBUTE11 = DUPS.ATT11
    AND    OHA.ATTRIBUTE12 = DUPS.ATT12
    AND    OHA.ATTRIBUTE16 = DUPS.ATT16
    AND    OHA.FLOW_STATUS_CODE NOT IN ('CLOSED', 'CANCELLED')
    AND    DUPS.ATT11 <> 'WESTERN SERVICE'
    ORDER  BY OHA.ORDER_NUMBER
             ,OLA.LINE_NUMBER
             ,DUPS.ATT11
             ,DUPS.ATT12
             ,DUPS.ATT16
    ;(correction in order by clause)
    Message was edited by:
    Eric H

  • I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.

    I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.
    I have been reasearching how to do this on the internet, but I haven't found an easy explanation yet.  My family is going crazy over each others imessages being sent to others in the family and not being able to use FaceTime because of conflicting email addresses.  I have read that if each person gets their own iCloud account, this would work.  However, I need to know what to do after I set everyone up with their own iCloud account.  Do I make that the default email address to be contacted or can they still use their hotmail email addresses.  Any help- with easy explanation- would be much appreciated!!

    We do this in my family now.  We have one account for purchases, so it is used to share music and apps (I think that is in Settings/iTunes & App Stores).  Each iDevice has this configured.
    Then, each of us has our own iCloud account that is configured under Settings/iCloud.  That then allows us to have our own Mail/Contacts/Calendars/Reminders/Safari Bookmarks/Notes/Passbook/Photo Stream/Documents & Data/Find My iPhone/and Backup.  That Backup piece is pretty sweet and comes in handly if you replace your iDevice.  You can just restore from it.
    So we all share the Apple Store account but we all have our own iCloud accounts to keep the rest seperate or things like you mentioned are a nightmare.
    In answer to what iCloud does for you: http://www.apple.com/icloud/features/
    Think of it as an internet based ("cloud") area for all of those items listed in my response.  What you need to remember is photo stream only maintans the last 1000 pictures so don't count it as a complete backup solution for your pictures.  Even though I rarely sync with a computer these days, I do still try to sync my phone with iPhoto (I have an iMac) so that I have copies of all of my pictures.  1000 may not stretch as far as it sounds.
    Message was edited by: Michael Pardee

  • Looking for a simple, standalone desktop app for web stats

    Well, I see they've changed the forums here again. SIGH.
    Anyway, a certain web host has eliminated AWStats from it's shared hosting. So I used Webmaster Tools. And now they've changed, and no longer display the simple visitors and hits. Google Analytics is way too complex for what I need, as are many of the stats programs I've looked into.
    I can download the daily Apache log files, that's no problem. Just looking for a small standalone program to import these and show the data like AWStats.  Any suggestions? The only other options would be to go to a different web host. Not a big deal overall, but I would rather not deal with the hassle, especially the migrating the database.

    Not sure of standalone 'desktop' apps. But check out http://www.openwebanalytics.com/ and Web Analytics in Real Time | Clicky  - they're both very intuitive and easy to use with a lot more simplified stats than Google Analytics.

  • Looking for a simple database app.

    I have an Excel sheet that i use to store simple database data. Like a flat file database with only 4 columns, no relations, no calculations, just data storage.
    I don't want to download and install over a 100Mb of OpenOffice or NeoOffice just to be able to see my Excel sheet so i was thinking at converting it to a simple cardfiler-like database.
    Guess what? There are no simple databases for the Mac! There is OpenOffice and NeoOffice and there is FileMaker. But no simple, small, configurable card-filer. I checked VersionTracker, IUseThis, but i cannot find anything.
    That makes me think that it already needs to be available on the standard installed apps (please say that i'm right) and i just don't see it.
    Any suggestions? Any help? Am i really missing the point here?
    Thanks all!
    Ton.

    Haven't looked at Wallet. Looked at iData, but that is payware now. I'm trying now woth OmniOutliner which seems to look ok.
    Ton.

  • Looking for a simple app that can output 8 channels simultaneously.

    Hello esteemed audio community.
    I have to create a little effect for an upcoming party. For this I have created the following audio tracks in Garage Band:
    - 4 separate audio channels (stereo front and stereo rear)
    - one mono combination of these four tracks (to drive a Light organ gizmo - makes the light flicker with the audio)
    - and finally two separate tracks with simple 1Khz pulses to trigger relays for a fog machine.
    I now need to be able to play these 7 tracks simultaneously and send them to different amplifiers and relays. So I need two things: 1) a software that can play them and 2) a hardware interface that can take these 7 channels out of the computer and convert them to line levels analog signals.
    I thought this would be pretty straight forward but it turns out that it is not, unless you want to throw $$$ at it which I really can't afford.
    Software wise, unfortunately, GB can only output 2 audio channel at one time. So I need to find a little app that can offers multitrack output. Ideally it would some shareware thing that would allow me to load in up to 8 tracks saved from GB, adjust their individual levels and then output them.
    Second issue is hardware. Here I have found the M-Audio 410 firewire. This box will take up to 10 audio "returns" and output them to analog. They can be found used for about $150. So I think this might work.
    Budget for this setup is very limited, hopefully no more than $150. Quality does not have to be very high although a good bass response will be important for the effect. I don't need any recording. Only playback.
    Would any one have any suggestion on how to best accomplish this? If this software does not exist, how complicated would it be to write it? Would Applescript be useful for this? All it needs to do is read 8 audio files (2 minutes max), allow me to adjust their level and output all 8 at the same time.
    Thank you very much for any help.
    Bo

    Ah. I'm surprised, but there we go.
    Have a look here ...
    http://jam.hitsquad.com/vocal/about2136.html
    (courtesy of googling 'OSX free multitrack recording software')
    Didn't have time to do more than skim, but 'Ardour' looked promising. Protools is the only one I've used, the full product is one of the industry standards, but the free 'lite' version listed here seems to be limited to 2 in/out as well.
    Referring to your original post, I'd think trying to write or 'script' something would be a nightmare ... synchronisation of streams within something like Applescript would be a major issue, quite apart from anything else.
    G5 Dual 2.7, MacMini, iMac 700; P4/XP Desk & Lap.   Mac OS X (10.4.8)   mLan:01x/i88x; DP 5.1, Cubase SX3, NI Komplete, Melodyne.

  • After having no internet for over 24hrs, my IPad has completely shut down. I have tried everything I can think of, including a reset but think that was a really bad move!! Any ideas for how to get my pad back? Simple words please..I am not a pro AT ALL.

      My internet was down for over 24hrs after a storm. During that time, my IPad completely shut down and I can't get it going again.  I studied the manual but couldn't find a similar topic.  I reset it and now it is totally goofed up.
       Does anyone have any ideas or should I just take it to an Apple store and pay??  Any solutions you may have, PLEASE use simple words as I am not a pro, by any means....probably why I'm in this situation.
       Thank you in advance.

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • A simple and free way of reducing PDF file size using Preview

    Note: this is a copy and update of a 5 year old discussion in the Mac OS X 10.5 Leopard discussions which you can find here: https://discussions.apple.com/message/6109398#6109398
    This is a simple and free solution I found to reduce the file size of PDFs in OS X, without the high cost and awful UI of Acrobat Pro, and with acceptable quality. I still use it every day, although I have Acrobat Pro as part of Adove Creative Cloud subscription.
    Since quite a few people have found it useful and keep asking questions about the download location and destination of the filters, which have changed since 2007, I decided to write this update, and put it in this more current forum.
    Here is how to install it:
    Download the filters here: https://dl.dropboxusercontent.com/u/41548940/PDF%20compression%20filters%20%28Un zip%20and%20put%20in%20your%20Library%20folder%29.zip
    Unzip the downloaded file and copy the filters in the appropriate location (see below).
    Here is the appropriate location for the filters:
    This assumes that your startup disk's name is "Macintosh HD". If it is different, just replace "Macintosh HD" with the name of your startup disk.
    If you are running Lion or Mountain Lion (OS X 10.7.x or 10.8.x) then you should put the downloaded filters in "Macintosh HD/Library/PDF Services". This folder should already exist and contain files. Once you put the downloaded filters there, you should have for example one file with the following path:
    "Macintosh HD/Library/PDF Services/Reduce to 150 dpi average quality - STANDARD COMPRESSION.qfilter"
    If you are running an earlier vesion of OS X (10.6.x or earlier), then you should put the downloaded filters in "Macintosh HD/Library/Filters" and you should have for example one file with the following path:
    "Macintosh HD/Library/Filters/Reduce to 150 dpi average quality - STANDARD COMPRESSION.qfilter"
    Here is how to use it:
    Open a PDF file using Apple's Preview app,
    Choose Export (or Save As if you have on older version of Mac OS X) in the File menu,
    Choose PDF as a format
    In the "Quartz Filter" drop-down menu, choose a filter "Reduce to xxx dpi yyy quality"; "Reduce to 150 dpi average quality - STANDARD COMPRESSION" is a good trade-off between quality and file size
    Here is how it works:
    These are Quartz filters made with Apple Colorsinc Utility.
    They do two things:
    downsample images contained in a PDF to a target density such as 150 dpi,
    enable JPEG compression for those images with a low or medium setting.
    Which files does it work with?
    It works with most PDF files. However:
    It will generally work very well on unoptimized files such as scans made with the OS X scanning utility or PDFs produced via OS X printing dialog.
    It will not further compress well-optimized (comrpessed) files and might create bigger files than the originals,
    For some files it will create larger files than the originals. This can happen in particular when a PDF file contains other optomizations than image compression. There also seems to be a bug (reported to Apple) where in certain circumstances images in the target PDF are not JPEG compressed.
    What to do if it does not work for a file (target PDF is too big or even larger than the original PDF)?
    First,a good news: since you used a Save As or Export command, the original PDF is untouched.
    You can try another filter for a smaller size at the expense of quality.
    The year being 2013, it is now quite easy to send large files through the internet using Dropbox, yousendit.com, wetransfer.com etc. and you can use these services to send your original PDF file.
    There are other ways of reducing the size of a PDF file, such as apps in the Mac App store, or online services such as the free and simple http://smallpdf.com
    What else?
    Feel free to use/distribute/package in any way you like.

    Thanks ioscar.
    The original link should be back online soon.
    I believe this is a Dropbox error about the traffic generated by my Dropbox shared links.
    I use Dropbox mainly for my business and I am pretty upset by this situation.
    Since the filters themsemves are about 5KB, I doubt they are the cause for this Dropbox misbehavior!
    Anyway, I submitted a support ticket to Dropbox, and hope everything will be back to normal very soon.
    In the meantime, if you get the same error as ioscar when trying to download them, you can use the link in the blog posting he mentions.
    This is out of topic, but for those interested, here is my understanding of what happened with Dropbox.
    I did a few tests yesterday with large (up to 4GB) files and Dropbox shared links, trying to find the best way to send a 3 hour recording from French TV - French version of The Voice- to a friend's 5 year old son currently on vacation in Florida, and without access to French live or catch up TV services. One nice thing I found is that you can directly send the Dropbox download URL (the one from the Download button on the shared link page) to an AppleTV using AirFlick and it works well even for files with a large bitrate (except of course for the Dropbox maximum bandwidth per day limit!). Sadly, my Dropbox shared links were disabled before I could send anything to my friend.
    I may have used  a significant amount of bandwidth but nowhere near the 200GB/day limit of my Dropbox Pro account.
    I see 2 possible reasons to Dropbox freaking out:
    - My Dropbox Pro account is wronngly identified as a free account by Dropbox. Free Dropbox accounts have a 20GB/day limit, and it is possible that I reached this limit with my testing, I have a fast 200Mb/s internet access.
    - Or Dropbox miscalculates used bandwidth, counting the total size of the file for every download begun, and I started a lot of downloads, and skipped to the end of the video a lot of times on my Apple TV.

  • Error in deploying a simple EJB 3.0

    Hi ,
    I am getting the following error while deploying my simple ejb of version 3.0 in Weblogic 9.2.
    Exception preparing module: EJBModule(build) [EJB:011023]An error occurred while reading the deployment descriptor. The error was: Error processing annotations: java.lang.NullPointerException.
    During my evaluation of Weblogic 9.2 for EJB 3.0 , I have got the following questions.
    EJB Specification states that EJB's in EJB 3.0 can be developed and deployed without the need of deployment descriptors. I have created a simple EJB with two file Env.java and EnvBean.java and the source code is given below.
    a) I just complied these class files and when I was trying to deploy without ejb-jar.xml and weblogic-ejb-jar.xml, the console was not at all allowing me to deploy.Why is this so?
    b) After I created a META-INF file under root of classes directory by placing ejb-jar.xml with empty <enterprise-beans> element, console was allowing me to deploy with errors in parsing ejb-jar.xml. The error was either session/entity/mdb is a required under <enterprise-beans> element. Why is this required when there are several examples stating <enterprise-beans> element can be empty.
    c) Later I updated ejb-jar.xml with <session> element under <enterprise-beans> with the following values. I got the above error when deployed with this change.
    I had been struggling to deploy this simple bean for almost a day.Pleas point me if there is any documentation that solves my stated problem or if there is a solution.Thanks in advance.
    regards
    Karim
    ejb-jar.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" version="3.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
    <enterprise-beans>
    <session>
    <description>This is the stateless ejb</description>
    <display-name>Env Bean</display-name>
    <ejb-name>EnvBean</ejb-name>
    </session>
    </enterprise-beans>
    </ejb-jar>
    Env.java
    package examples ;
    public interface Env {
    public void display();
    EnvBean.java
    package examples;
    import javax.ejb.Remote;
    import javax.ejb.Stateless;
    @Stateless
    @Remote(Env.class)
    public class EnvBean implements Env {
    public void display() {
    System.out.println("Welcome to EJB 3.0");
    }

    Presumably you're using the EJB3 tech preview, and not a vanilla WebLogic 9.2 install, right?
    Can you post the full stack trace?
    -Patrick

  • Error while deploying a simple ADF application on the Integrated weblogic..

    hi,
    I am new to ADF and have developed a simple application that interacts with the database.
    I have tried to deploy the application to the intgrated weblogic server but the deployment is not successful and throws the following error:
    [Waiting for the domain to finish building...]
    [04:14:13 PM] Creating Integrated Weblogic domain...
    [04:15:38 PM] Extending Integrated Weblogic domain...
    [04:16:10 PM] Integrated Weblogic domain processing completed successfully.
    *** Using port 7101 ***
    C:\Users\Jhansi\AppData\Roaming\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\bin\startWebLogic.cmd
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=E:\Oracle\MIDDLE~1\WLSERV~1.3\server\ext\jdbc\oracle\11g\ojdbc6dms.jar;E:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;E:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.3.0.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;E:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;E:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;E:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    PATH=E:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\native;E:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;E:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;E:\Oracle\MIDDLE~1\JDK160~1\jre\bin;E:\Oracle\MIDDLE~1\JDK160~1\bin;E:\OracleXE\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Client VM (build 16.0-b13, mixed mode)
    Starting WLS with line:
    E:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=E:\Oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=E:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\Users\Jhansi\AppData\Roaming\JDEVEL~1\SYSTEM~1.60\DEFAUL~1 -Dcommon.components.home=E:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=E:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.domain.config.dir=C:\Users\Jhansi\AppData\Roaming\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1 -Doracle.server.config.dir=C:\Users\Jhansi\AppData\Roaming\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.security.jps.config=C:\Users\Jhansi\AppData\Roaming\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=C:\Users\Jhansi\AppData\Roaming\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\Users\Jhansi\AppData\Roaming\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\arisidprovider -Dweblogic.alternateTypesDirectory=E:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,E:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\Users\Jhansi\AppData\Roaming\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\oracle\store\gmds -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=E:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sysext_manifest_classpath;E:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <Jan 20, 2011 4:16:14 PM EST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 16.0-b13 from Sun Microsystems Inc.>
    <Jan 20, 2011 4:16:14 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <Jan 20, 2011 4:16:15 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jan 20, 2011 4:16:15 PM EST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Jan 20, 2011 4:16:16 PM EST> <Notice> <Log Management> <BEA-170019> <The server log file C:\Users\Jhansi\AppData\Roaming\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Jan 20, 2011 4:16:21 PM EST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jan 20, 2011 4:16:29 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Jan 20, 2011 4:16:29 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jan 20, 2011 4:16:54 PM EST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[7]" is now listening on 0:0:0:0:0:0:0:1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[6]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 192.168.1.73:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[4]" is now listening on fe80:0:0:0:d5e4:73a9:98b0:9db7:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on fe80:0:0:0:1c56:3208:befd:ce95:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on fe80:0:0:0:0:5efe:c0a8:149:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[5]" is now listening on fe80:0:0:0:ecd9:7589:e2cd:650d:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 2001:0:4137:9e76:1c56:3208:befd:ce95:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jan 20, 2011 4:17:00 PM EST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Jan 20, 2011 4:17:00 PM EST> <Warning> <Server> <BEA-002611> <Hostname "Jhansi-PC", maps to multiple IP addresses: 192.168.1.73, fe80:0:0:0:ecd9:7589:e2cd:650d%11, fe80:0:0:0:1c56:3208:befd:ce95%13, 2001:0:4137:9e76:1c56:3208:befd:ce95>
    <Jan 20, 2011 4:17:01 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Jan 20, 2011 4:17:01 PM EST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    IntegratedWebLogicServer startup time: 51406 ms.
    IntegratedWebLogicServer started.
    [Running application HRSystem on Server Instance IntegratedWebLogicServer...]
    [04:17:03 PM] ---- Deployment started. ----
    [04:17:03 PM] Target platform is (Weblogic 10.3).
    [04:17:05 PM] Retrieving existing application information
    [04:17:06 PM] Running dependency analysis...
    [04:17:06 PM] Deploying 2 profiles...
    [04:17:07 PM] Wrote Web Application Module to C:\Users\Jhansi\AppData\Roaming\JDeveloper\system11.1.1.3.37.56.60\o.j2ee\drs\HRSystem\ViewControllerWebApp.war
    [04:17:09 PM] Wrote Enterprise Application Module to C:\Users\Jhansi\AppData\Roaming\JDeveloper\system11.1.1.3.37.56.60\o.j2ee\drs\HRSystem
    [04:17:09 PM] Deploying Application...
    <Jan 20, 2011 4:17:10 PM EST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application HRSystem is not versioned.>
    <Jan 20, 2011 4:17:16 PM EST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1295558229417' for task '0'. Error is: 'weblogic.application.ModuleException: '
    weblogic.application.ModuleException:
         at weblogic.jdbc.module.JDBCModule.activate(JDBCModule.java:350)
         at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:531)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:165)
         Truncated. see log file for complete stacktrace
    Caused By: weblogic.common.ResourceException: HRconnDS is already bound
         at weblogic.jdbc.common.internal.RmiDataSource.start(RmiDataSource.java:404)
         at weblogic.jdbc.common.internal.DataSourceManager.createAndStartDataSource(DataSourceManager.java:136)
         at weblogic.jdbc.common.internal.DataSourceManager.createAndStartDataSource(DataSourceManager.java:97)
         at weblogic.jdbc.module.JDBCModule.activate(JDBCModule.java:347)
         at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
         Truncated. see log file for complete stacktrace
    >
    <Jan 20, 2011 4:17:16 PM EST> <Error> <Deployer> <BEA-149202> <Encountered an exception while attempting to commit the 1 task for the application 'HRSystem'.>
    <Jan 20, 2011 4:17:16 PM EST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'HRSystem'.>
    <Jan 20, 2011 4:17:16 PM EST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
         at weblogic.jdbc.module.JDBCModule.activate(JDBCModule.java:350)
         at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:531)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:165)
         Truncated. see log file for complete stacktrace
    Caused By: weblogic.common.ResourceException: HRconnDS is already bound
         at weblogic.jdbc.common.internal.RmiDataSource.start(RmiDataSource.java:404)
         at weblogic.jdbc.common.internal.DataSourceManager.createAndStartDataSource(DataSourceManager.java:136)
         at weblogic.jdbc.common.internal.DataSourceManager.createAndStartDataSource(DataSourceManager.java:97)
         at weblogic.jdbc.module.JDBCModule.activate(JDBCModule.java:347)
         at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
         Truncated. see log file for complete stacktrace
    >
    [04:17:16 PM] #### Deployment incomplete. ####
    [04:17:16 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    #### Cannot run application HRSystem due to error deploying to IntegratedWebLogicServer.
    [Application HRSystem stopped and undeployed from Server Instance IntegratedWebLogicServer]
    ERROR [main] com.oracle.cie.domain.template.dependency.TemplateSelectionTarget - Template is not present in the graph: null
    Thanks,
    Jhansi

    Hi Jhansi,
    Whether u create HRconnDS in ur Weblogic server
    If not create it ...
    If yes just check it out whether u gave a correct connection string for it......
    Regards,
    Suganth.G

Maybe you are looking for

  • Gallery not opening...tried everything.

    Called the Samsung help line and the person I dealt with had no idea how to help. I only have a few apps and a couple pictures. I also have a 16 gig simcard so not enough room isn't the issue. My only guess is the phone either stopped seeing the simc

  • Report on user selected Date Range

    Please Disregard, Message was meant for another forum. Edited by: JodyMorin on Jan 15, 2009 11:29 AM

  • CFChart and checkboxes

    I have a page which allows an administrator to select which members of staff they want to see a report on. They can select as many staff members as they want by clicking the checkbox next to their name. When the form is submitted I would like to have

  • MacBook Pro 13 - slow start-up

    I have had my MacBook Pro for about 6 months and I've been noticing that it is sometimes very slow to start up, even when it wasn't shut down and was just in sleep mode.  The gray screen appears for about 30 seconds, and once it disappears, everythin

  • Supplier Schdule lines through MRP

    Dear Friends, Pl go thru following buisness scenario: Child part which is used for both assembly as well as moved to other plant as child part itself thru STO ( stock transfer to other plant). Here the requirement for the child part get collated whet