Novice , need help with upload error

My original hosting company went south and not all my files
were backed up..., but one application i'm having trouble with on
the new server and I can't identifing the cause of the error.. this
is the error.. don't know if i'm missing a script or something else
Note: It uploads the primary images but fails to write a path
or upload the thumb images...
Please helpppppppppp
and this is the code ...I have been using..
<!--- <cffile
destination="#trim(APPLICATION.config.pathtoimage)#"
action="upload" nameconflict="makeunique" filefield="photo"
accept="image/*" attributes="archive"> --->
<cfif form.photo1 NEQ "" OR form.photo2 NEQ "" OR
form.photo3 NEQ "" OR form.photo4 NEQ ""></cfif>
<!--- new file upload process for multiple file uploads
--->
<cfif isDefined("Form.Photo")>
<cfif CGI.HTTP_HOST EQ "192.168.1.103:88">
<cfset uploaddir =
"C:\Websites\121899ba6\properties\upload\">
<cfset thumbdir =
"C:\Websites\121899ba6\properties\upload\thumbnails\">
<cfelse>
<cfset uploaddir =
#trim(APPLICATION.config.pathtoimage)#>
<cfset thumbdir = #trim(APPLICATION.config.pathtoimage)#
& "thumbnails\">
</cfif>
<cf_FileUpload
directory="#uploaddir#"
weight="100,100,100,100,100,100,100,100"
nameofimages="photo1,photo2,photo3,photo4,photo5,photo6,photo7,photo8"
nameConflict="overwrite"
accept="image/*"
default="na">
<!--- <cf_FileUpload
directory="#curDirectory#"
weight="5,3"
nameofimages="image,image2"
nameConflict="overwrite"
accept="image/gif"
default="na"> --->
<cfif request.filesaved eq "Yes">
<!--- cleanup result list --->
<cfset tmpCount = 0>
<cfset tmpNewList = "">
<cfloop list="#request.result#" index="currImage">
<cfset tmpCount = IncrementValue(tmpCount)>
<cfif ListGetAt(request.result, tmpCount) neq "na">
<cfset tmpNewList = ListAppend(tmpNewList, currImage)>
</cfif>
</cfloop>
<cfset photolist = ListAppend(form.photo,tmpNewList)>
<cfquery datasource="#request.dsn#"
username="#request.user#" password="#request.pass#"
name="updatebook">
update adinfo
set
photo = '#photolist#'
where adinfoid = #trim(val(form.adinfoid))#
</cfquery>
<!--- create the thumbnails now --->
<cfloop list="#tmpnewlist#" index="currImage">
<CFX_IMAGE ACTION="RESIZE"
FILE="#uploaddir##currImage#"
OUTPUT="#thumbdir##currImage#"
QUALITY="100"
WIDTH="100">
</cfloop>
<!--- if the image file was not saved --->
<cfelse>
<CFINCLUDE template="skeleton.cfm">

first thing that comes to mind: custom tag not
installed/mapped to.
make sure the custom tag cf_FileUpload is installed on your
new host or
that the new host has set up cutom tag mapping to the folder
in your
site where this custom tag is located.
second: you have a hard-coded IP address in there - make sure
it is
valid in your current hosting environment
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com

Similar Messages

  • Installing Elements 11 on Mac. Need help with install error "Setup wants to make changes."

    Installing Elements 11 on Mac 10.8.2. Need help with install error:  Setup wants to make changes. Type your password to allow this."  After entering Adobe password, nothing happens.  Locked from further installation.  Any ideas?  Adobe phone support could not help.

    Just before letting changes (installation in this case) be made on the system, Mac OS prompts for password & this has to be the Mac system password. This password prompt is the system's own native prompt & would accept the system password only. Please make sure it is the right system password (all/admin rights) and the installaion should run.

  • Need help with uploading web gallery

    When I try to upload a gallery, I recieve the following error message: An error occured sending the file: a response was not received in time.
    How do I correct this?

    Find the exported gallery on the hard drive, and open the index file in a web browser. If that works correctly, then yes, it's a problem that you'll need to discuss with your web host, rather than a Lightroom problem that we can help with, sorry.

  • Need help with an Error

    Hello, im using this class to query a table from my database. everything is ok, but when i write the closing } of the Main class the Program gives an error. In the main class ive wrote here at the bottom, the main class has no ending } . Now only the final } gives an error but everything else is ok, ive double checked all brackets, they are all in good place, what is going wrong?
    package DBandQueryHandler;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    class Main {
        public static void main(String[] args){
            Class driver_class=null;
                    try{    
                        driver_class=Class.forName("com.mysql.jdbc.Driver");         }
                    catch(ClassNotFoundException e){ 
                        e.printStackTrace(); 
                        return;
            System.out.println("Found Driver"+ driver_class);
            Connection connection=null;
            try{
                connection= DriverManager.getConnection("jdbc:mysql://localhost:3306/....", ".....", "........");
            catch(SQLException e){
                e.printStackTrace();
                return;
            try{
                System.out.println("Established connection to"+ connection.getMetaData().getURL());
            catch(SQLException e1){
                e1.printStackTrace();
            Statement statement=null;
            try{
                statement= connection.createStatement();
                statement.execute("SELECT * FROM KLANTEN");
                Resultset resset= statement.getResultSet();
                System.out.println("Row user_id, username, password, abbonement1, abbonement2, openstaand");
                while(resset.next()){
                    System.out.println(resset.getRow());
                    System.out.println("" + resset.getSring("user_id"));
                    System.out.println("" + resset.getSring("username"));
                    System.out.println("" + resset.getSring("password"));
                    System.out.println("" + resset.getSring("abbonement1"));
                    System.out.println("" + resset.getSring("abbonement2"));
                    System.out.println("" + resset.getSring("openstaand"));
                resset.close();
            catch(SQLException e){
                e.printStackTrace();
            finally{
                if(statement=null){
                    try{
                    statement.close();
                    catch(SQLException e){
                e.printStackTrace();
                if(connection=null){
                    try{
                    connection.close();
                    catch(SQLException e){
                e.printStackTrace();
       }

    javaboy2 wrote:
    Like i said, when i write all brackets correctly, the program gives errors, but when i delete the the last bracket, the program doesnt give errors(except for the last bracket=> '}' expected). I dont understand this.
    The errors of the program with correct amount of brackets are these: Yes, the errors come up with correct brackets because you have errors . When you take out the bracket, the structure is too bad so it doesn't look for the rest of the errors. This problem has absolutely nothing to do with brackets at all. That's why you needed to post the errors in your first post, rather than ignoring them and pretending your code is perfect and blaming it on brackets.
    And these errors would be fixed if you read them.
    Cannot find symbol ResultsetThat's because there is no class called Resultset. It's called ResultSet.
    Your if statements are using assignment instead of equality
    statement=null; //that assigns null to the statement object
    statement==null; //that checks to see if statement equals nullAgain, read your errors. They don't lie.

  • Need help with resolving error

    Hi,
    I am working on an ADF aaplication Each time I hit the execute button on my application I get the following error message,
    JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was null
    JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was null
    Does anyone know why this come up? and what can I do to resolve this issue?
    Be very grateful to get a response soon.

    The page is suppose to be a search page, you could key in all the information in all the fields, but not mandatory. when I run the seach and key the info, then hit execute, the first time it runs very fine, but if want to make a second search it come up with the error.
    I hope with this I could get some help.
    Thank you very much

  • Need help with download error on windows 8 computer.

    I have a windows 8 computer, and I have been trying to download Itunes to my computer but am getting an error that apple support was not included or that apple application support software was not found to uninstall and try again same thing several more times.

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Novice needs help with error

    Ok, I really don't know what I'm doing, but trying to design
    a site off of a template I bought. The problem, I keep getting this
    error when I try to save the page, "There is an error at line 48,
    column 7 (absolute position 1155) of my page, can anyone tell me
    what the heck this means? Code is below, thanks!
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <title>index-6</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <link href="style.css" rel="stylesheet"
    type="text/css">
    <style type="text/css">
    <!--
    .style3 {color: #003399}
    .style4 {
    font-size: 16px;
    font-weight: bold;
    color: #003399;
    font-family: Arial, Helvetica, sans-serif;
    .style5 {
    font-size: 11px;
    color: #333333;
    line-height: 17px;
    .navbar {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
    padding: 3px;
    text-align: center;
    background-color: #59728D;
    .style6 {
    color: #009933;
    font-weight: bold;
    .style7 {color: #666666}
    .style9 {color: #D74128}
    .style11 {color: #D74128; font-weight: bold; }
    .style14 {font-size: 16px; font-weight: bold; color: #59728D;
    font-family: Arial, Helvetica, sans-serif; }
    .style15 {color: #546F91}
    .style16 {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #006699;
    .style18 {font-size: 16px; font-weight: bold; color: #0066CC;
    font-family: Arial, Helvetica, sans-serif; }
    -->
    </style>
    <body>
    <table cellpadding="0" cellspacing="0" border="0"
    width="100%" style="height:100%;">
    <tr>
    <td width="50%" class="bg_left_gum"><img
    src="images/spacer.gif" width="1" height="1" alt=""></td>
    <td width="766" valign="top" class="bg_center"
    style="padding:21px 0px 0px 0px;">
    <table cellpadding="0" cellspacing="0" border="0"
    width="766" style="height:666px;">
    <tr>
    <td><img src="images/spacer.gif" width="58"
    height="1" alt=""></td>
    <td width="648" valign="top">
    <table cellpadding="0" cellspacing="0" border="0"
    width="648" style="height:100%; ">
    <tr>
    <td valign="top"><img src="images/corner_t_l.gif"
    width="10" height="10" alt=""></td>
    <td class="bg_main_top" width="100%"><img
    src="images/spacer.gif" width="1" height="10" alt=""></td>
    <td valign="top"><img src="images/corner_t_r.gif"
    width="15" height="10" alt=""></td>
    </tr>
    <tr>
    <td class="bg_main_left"><img
    src="images/spacer.gif" width="10" height="1" alt=""></td>
    <td valign="top" width="100%" height="100%"
    bgcolor="#ffffff">
    <!-- content -->
    <table cellpadding="0" cellspacing="0" border="0"
    width="623">
    <tr><td height="163" colspan="2" valign="top">
    <table cellpadding="0" cellspacing="0" border="0"
    width="100%" >
    <tr>
    <td valign="top" width="223"><img
    src="images/dplogo3.gif" width="221" height="161"><br>
    </td>
    <td width="3" bgcolor="#ffffff"><img
    src="images/spacer.gif" width="3" height="1" alt=""></td>
    <td ><img src="images/kids.jpg" width="399"
    height="161"></td>
    </tr>
    </table>
    </td></tr>
    <tr><td height="3" colspan="2"><img
    src="images/spacer.gif" width="1" height="3"
    alt=""></td></tr>
    <tr><td height="29" colspan="2" valign="top"
    bgcolor="#3E3E3E">
    <table cellpadding="0" cellspacing="0" border="0"
    width="100%">
    <tr>
    <td width="0%" bgcolor="#59728D"><a
    href="index.html"></a></td>
    <td width="5%" valign="top"><div align="center"
    class="navbar"><img src="images/menu_separ.gif" width="1"
    height="15" alt="" hspace="10"
    vspace="7"></div></td>
    <td width="9%" class="navbar">INICIO</td>
    <td width="5%" valign="top"><div align="center"
    class="navbar"><img src="images/menu_separ.gif" width="1"
    height="15" alt="" hspace="10"
    vspace="7"></div></td>
    <td width="16%" class="navbar">SERVICIOS</td>
    <td width="5%" valign="top"><div align="center"
    class="navbar"><img src="images/menu_separ.gif" width="1"
    height="15" alt="" hspace="10"
    vspace="7"></div></td>
    <td width="17%" class="navbar">PARTY TIPS</td>
    <td width="5%" valign="top"><div align="center"
    class="navbar"><img src="images/menu_separ.gif" width="1"
    height="15" alt="" hspace="10"
    vspace="7"></div></td>
    <td width="13%" class="navbar">PRECIOS</td>
    <td width="5%" valign="top"><div align="center"
    class="navbar"><img src="images/menu_separ.gif" width="1"
    height="15" alt="" hspace="10"
    vspace="7"></div></td>
    <td width="15%" class="navbar">CONTACTOS</td>
    <td width="5%" class="navbar"> </td>
    </tr>
    </table>
    </td></tr>
    <tr>
    <td width="381" rowspan="2" class="maintext"><p
    class="style3"><span class="style15"><br>
    <span class="style16">BIENVENIDO
    a</span></span><span class="style16"> DREAMS
    PARTY</span><span class="style4"><span
    class="style18">! </span></span></p>
    <p align="justify" class="style7">Ofrecemos
    <strong> alquiler de juegos inflables</strong> en la
    Rep&uacute;blica Dominicana, especiales para todo tipo
    de<strong> eventos infantiles</strong>. Servimos todo
    el tersritorio nacional! Si usted esta planeando una fiesta de
    cumplea&ntilde;os, una actividad de car&aacute;cter
    familiar, picnic, corporativa, un pasad&iacute;a o de
    recaudaci&oacute;n de fondos, nuestros <strong>equipos
    para fiestas infantiles </strong> son ideales para este tipo
    de eventos.</p>
    <p class="style14">&iquest;Porque alquilar juegos
    inflables?</p>
    <p> * Hacen de sus fiestas recuerdos
    inolvidables.<br>
    * Son sin&oacute;nimo de diversi&oacute;n y
    felicidad para los ni&ntilde;os.<br>
    * Se instalan tanto en espacios interiores como
    exteriores.<br>
    * Nuestros c&oacute;modos precios resultan
    m&aacute;s accesibles que alquilar todo un local con juegos
    infantiles.<br>
    * Usted no tiene que moverse de su casa! Nosotros realizamos
    el montaje y desmontaje del equipo.<br>
    * La calidad de nuestros productos esta
    garantizada.</p> </td>
    <td width="242" height="290" class="maintext"><img
    src="images/nina_balloon.jpg" width="212"
    height="275"></td>
    </tr>
    <tr>
    cut here, over the forum maximum.

    .oO(Billznik)
    >Ok, I really don't know what I'm doing, but trying to
    design a site off of a
    >template I bought. The problem, I keep getting this error
    when I try to save
    >the page, "There is an error at line 48, column 7
    (absolute position 1155) of
    >my page, can anyone tell me what the heck this means?
    Code is below, thanks!
    What is in line 48 (hard to tell in posted code because of
    line breaks)?
    Can you upload the page and post a URL? What does the W3
    validator say
    (<
    http://validator.w3.org>)?
    Micha

  • Need help with an error message: Can't repair volume.

    Hi, folks.
    While checking my HD with Disk Utility, I found a message error. It says that I have to repair the disk but the button "Repair Disk" is not available.
    The message is copied below... if anyone can read it and help me, I'd appreciate.
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Overlapped extent allocation (file 1022303 /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/MacOS/Dreamweaver)
    Overlapped extent allocation (file 1034457 /Users/Johnny/Library/Mail/[email protected]/INBOX.mbox/Messages/16 143.emlx)
    Overlapped extent allocation (file 1034472 /Users/Johnny/Library/Caches/Mail/11/05/1521797044-3222719574.cache)
    Overlapped extent allocation (file 1035396 /Users/Johnny/Library/Mail/[email protected]/Junk E-Mail.mbox/Messages/16148.emlx)
    Overlapped extent allocation (file 1035401 /Users/Johnny/Library/Mail/[email protected]/Junk E-Mail.mbox/Messages/16149.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file s/DisplayPictures/[email protected]/VnRhV1J0dXR3eG41aG04T3UxOXIrU lZWZ3AwPQ==.png)
    Overlapped extent allocation (file 1042618 /Users/Johnny/Mercury/MSN/Resources/DisplayPictures/[email protected]/ R3FDbDlPNllTRGhhUmNXd3p2Sm55clQ0aUx3PQ==.png)
    Overlapped extent allocation (file 1049904 /Users/Johnny/Library/Mail/[email protected]/Sent Messages.mbox/Messages/16257.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file ail/02/12/4236346157-3219157957.cache)
    Overlapped extent allocation (file 1050553 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6261.emlx)
    Overlapped extent allocation (file 1050558 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6262.emlx)
    Overlapped extent allocation (file 1050573 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6263.emlx)
    1050573 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6263.emlx
    @)",1)
    1054976 /Users/Johnny/Mercury/MSN/Resources/CustomEmoticons/patinhodeborracha22@hotmail .com/NUxYOXd5ZkZiRjR0Wm5Ob3NZY0p6K09oWWFnPQ==.gif
    Overlapped extent allocation (file 1055000 /Users/Johnny/Mercury/MSN/Resources/DisplayPictures/patinhodeborracha22@hotmail .com/TzNFcmEzTWxaMmV4L0NOelVEUllsaEJjd1BRPQ==.png)
    Overlapped extent allocation (file 1057743 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/16313.emlx)
    1057743 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/16313.emlx
    t allocation (file %@)",1)
    1057789 /Users/Johnny/Documents/Yazigi/Events/OFICIO_SDUMA.doc
    Overlapped extent allocation (file 1057880 /Applications/Microsoft Office 2004/Clipart/Yázigi)
    Overlapped extent allocation (file 1058044 /Users/Johnny/Library/Caches/Mail/04/11/2078440011-2247275449.cache)
    Overlapped extent allocation (file 1058045 /Users/Johnny/Library/Caches/Mail/10/07/0272707744-3809369458.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file ny/Library/Caches/Mail/00/15/2244060425-1075118591.cache)
    Overlapped extent allocation (file 1058051 /Users/Johnny/Library/Caches/Mail/09/11/0695285650-1820972980.cache)
    Overlapped extent allocation (file 1058052 /Users/Johnny/Library/Caches/Mail/00/11/0589583874-0597952182.cache)
    Overlapped extent allocation (file 1058053 /Users/Johnny/Library/Caches/Mail/05/12/0478257501-4274710467.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file Mail/00/01/0993945094-0587616530.cache)
    Overlapped extent allocation (file 1058055 /Users/Johnny/Library/Caches/Mail/00/05/0791764484-0602406228.cache)
    Overlapped extent allocation (file 1058056 /Users/Johnny/Library/Caches/Mail/00/15/1220797701-0859034105.cache)
    Overlapped extent allocation (file 1058057 /Users/Johnny/Library/Caches/Mail/00/07/1625158921-0865946749.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file 179-0596073421.cache)
    Overlapped extent allocation (file 1058060 /Users/Johnny/Library/Caches/Mail/00/11/1196125704-0590536112.cache)
    Overlapped extent allocation (file 1058062 /Users/Johnny/Library/Caches/Mail/00/11/1422978311-0856115643.cache)
    Overlapped extent allocation (file 1058063 /Users/Johnny/Library/Caches/Mail/04/12/2763023681-0835402695.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file he)
    Overlapped extent allocation (file 1058065 /Users/Johnny/Library/Caches/Mail/00/03/1827339531-0863388223.cache)
    Overlapped extent allocation (file 1058066 /Users/Johnny/Library/Caches/Mail/07/03/3539577467-0911802683.cache)
    Overlapped extent allocation (file 1058067 /Users/Johnny/Library/Caches/Mail/00/04/1321888006-0860911682.cache)
    Overlapped extent allocation (file 1058069 /Users/Johnny/Library/Caches/Mail/00/02/1726249226-0867834918.cache)
    1058069 /Users/Johnny/Library/Caches/Mail/00/02/1726249226-0867834918.cache
    extent allocation (file %@)",1)
    1058070 /Users/Johnny/Library/Caches/Mail/05/01/0121999446-2569076246.cache
    Overlapped extent allocation (file 1058071 /Users/Johnny/Library/Caches/Mail/12/14/3415372742-4138529506.cache)
    Overlapped extent allocation (file 1058076 /Users/Johnny/Library/Application Support/Skype/joaopaulo_yazigi/chatsync/19/19e520537f725be8.dat)
    Overlapped extent allocation (file Overlapped extent allocation (file nc/d5/d5f85bf4508148d5.dat)
    Overlapped extent allocation (file 1074308 /Users/Johnny/Library/Caches/com.apple.AddressBook/MetaData/2A56AA5D-FD59-4B78- BF65-25589E601017/ABPerson.abcdp)
    Overlapped extent allocation (file 1083386 /Users/Johnny/Music/iTunes/iTunes Music/Podcasts/NEWSWEEK On Air Podcast/NEWSWEEK On Air 1092005.mp3)
    Overlapped extent allocation (file Overlapped extent allocation (file XlSOE96L2VJPQ==.png)
    Overlapped extent allocation (file 1094018 /Users/Johnny/Library/Application Support/Skype/joaopaulo_yazigi/chatsync/15/150fcbaa76a7fb93.dat)
    Overlapped extent allocation (file 1120553 /Users/Johnny/Documents/Yazigi/Events/PRELISTAECOLOCICA2005.doc)
    Overlapped extent allocation (file 1182160 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17264.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17267.emlx)
    Overlapped extent allocation (file 1182217 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17269.emlx)
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Volume Bit Map needs minor repair_
    Checking volume information.
    Invalid volume free block count_
    (It should be 3677631 instead of 3677630)
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    Thanks in advance.
    JP

    You will need to try and repair the drive with Disk Warrior. Otherwise, the only option is to reformat the drive. Note that DW may not be successful in fixing all the errors, and you may end up having to reformat anyway.
    It may be possible to fix the problem manually, but it's quite involved. Here's the info:
    http://docs.info.apple.com/article.html?artnum=25770
    Manually fix Overlapped Extent Allocation Errors without Disk Warrior
    Overlapped overlapped extent allocation errors can be the bane of any Mac user's existence. Often, these errors go unnoticed until the problem becomes visible: your Mac might refuse to boot, crash unexpected, or worse, critical data might disappear from the Finder. Disk Utility can detect, but not fix overlapped extent allocation errors, and certain third-party utilities, such as Alsoft Diskwarrior, can fix them, but generally without reporting the consequences.
    Overlapped extent allocation error occur when the file system thinks that two files are occupying the same area on the hard disk, hence overlapping on the same "inode," which is the structure which holds the location of the data blocks the file occupies, and also file permissions and flags.
    Clearing the "overlapped" or "overallocated" extent allocation essentially means that you'll have to lose some data, because the only way to remove the overlap is to delete the file that's occupying the inode. So, if you suspect, or find out, that the guilty file is a critical system file that resides in one of the hidden system directories such as /etc /var /usr/ or visible system directories such as /System or /Library, and you don't want to reinstall the whole OS (which might not fix the overlapped extent allocation anyway), it's good to have another disk available to copy the files back to your original disk if necessary: a second bootable hard drive or a firewire drive connected to your Mac when you remove the misbehaving file. Just make sure that when you copy the file back to your boot disk that the permissions are correct, so it's best to use the "ditto" command, so that all sticky bits, flags, and permissions are preserved.
    In case you didn't know, you don't have to boot from an install CD in order to check for overlapped extent allocations. All you need to do is restart your Mac, while holding down command + S to boot in "single-user mode."
    At the command prompt that appears, type:
    $ fsck -fy
    If you have an overlapped extent allocation, you'll see:
    "Overlapped Extent Allocation" (File 123456d)
    No matter how many times you run fsck -fy, you'll never be rid of the error.
    So, simply issue the following command:
    find / -inum 123456 -print
    Note the "d" was dropped, or any extra letter that appears after the inode number.
    The find will return a file name that matches with the inode number, and the path to that file. If you remove the file then the fsck will not return this error next time you run it.
    However, before you can delete the file(s) in single-user mode, you'll need to mount the file system. Type:
    $ mount -uw /
    When done, issue the "sync" command, and that will flush the write cache so that all pending writes are written from memory to the disk. Also, since most OS X 10.3 Macs use the HFS+ Journaled file system, it might be a good idea to disable the journal before booting into single-user mode by typing:
    $ sudo diskutil disableJournal /
    then re-enable it when done fixing the overlapped extents and rebooting normally:
    $ sudo diskutil enableJournal /
    Chris Anderson is a long-time Linux propellerhead who just got his first Mac, an ibook G4, and can't keep his hands off of it. He currently works as a "The Architect" and general visionary for a maker of world-class collectibles.

  • Need help with an error message when making changes to an IMAP account

    I have several IMAP accounts in my Mac Mail. Today when I tried to edit the, "Full Name" associated with the account I got an error message that said:
    Invalid Directory
    The account path /Users/kristen/Library/Mail/[email protected]@host365.ISPhost.com is already being used by the account "Silver"
    Did I somehow corrupt something? I'm not sure why making this small change to the full name would cause such an error. Please help.
    Thanks!!

    stop() forcibly kills a thread. You shouldn't use this method because if the thread is in a critical section of code, you can cause data corruption or deadlock.
    Instead, if you need to stop execution from another thread, invoke the interrupt() method.
    Good luck.

  • I need help with this error message "seek encountered an internal error"

    I wonder if anyone can help me with a Captivate issue: I just upgraded to 5.5 - when I try to insert a video slide I get an error "seek encountered an internal error". The video is a 35.3 MB flv file.
    This is a prroject that I have been working on for months and need to switch the video on the slide to an updated video - so I try to delete the video slide that is there and insert a new slide but when browse for the new video file I want to use, I keep getting this error message.

    Try <fx:XML>

  • Need Help with Uploading IPA to AppStore

    Having some troubles uploading my completed IPA to the appstore.
    1) Using Flash Professional CC
    2) Built with Air 3.8 for iOS
    3) Uploading it via Application Loader
    4) Encountered the following errors:
         >> Apple's web service operation was not successful
         >> Unable to authenticate the package: XXXXXXX.itmsp
         >> Error ITMS-9000: "This bundle is invalid. New apps and app updates submitted to App Store must be built with public (GM) versions of Xcode 5 and iOS 7 SDK. Do not submit apps built with beta software." at SoftwareAssets/SoftwareAsset(MZitmspSoftwareAssetPackage)
         >> Could not start delivery: all transports failed diagnostics
    as well as 3 warnings about icons for 120x120, 152x152 and 76x76.
    What should I have done differently?
    Any help greatly appreciated!

    Ok, fixed it. Just use the latest Adobe Air SDK 13.
    App got uploaded to appstore, cross fingers for approval.

  • Need Help with 404 error

    Hello,
    I have completed the local folder, tesing server, and remote server setup correctly  (i think so).
    My testing setup and files shown below:
    My local folder for site shown below:
    My advanced settings shown below:
    I have downloaded all the files to the local folder from my remote server which are working fine on the live website http://www.caremoreconstruction.co.uk.
    No layouts of the files/folders etc have been changed, I simply moved them over from the FTP server in to local folder I had created.
    Just to confirm I have XAMPP installed and Apache runnining.
    When I open DW CS5 and select the index.php file form the FILES tab, the main home page opens up and I little bar comes up at the top and says "This page has server proccesing directives that design view cannot display. Switch to Live View".
    So I click on Live View and the home page loads up. I then press ctrl and click one of the links. (See picture below)
    For some reason I am getting the following error message when I click on my links.
    Object not found!
    The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
    If you think this is a server error, please contact thewebmaster.
    Error 404
    localhost
    12/30/10 11:58:51
    Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1
    Please can someone help me!!
    Regards
    James

    David,
    This is the responce I have had from my website designer.
    Happy new year to you also.  Re Dreamweaver it’s not a tool we use I’m afraid, we generally use tools like Netbeans and code oriented text editors so I’m not best placed to advise on the config of it. I have used it back in 2003, it’s a great development platform, but I just ended up working with other tools.
    Looking at the post though, you seem to have got the site running but the issue seems to be the friendly URLs. As David correctly identified, .htaccess and mod_rewrite are used to effect this. If you don’t have the correct .htaccess file in place this aspect of the navigation won’t work.  You should also be running the site from the root directory – both the production (live) website and our development environments are setup in this way, so though I don’t think we implement root relative URIs in the site navigation, I can’t say there won’t be issues running it in a subdirectory off http://locahost without reviewing all the code, which I haven’t.
    The .htaccess file you need is on your live website, but many FTP clients will not display this by default, so your FTP download may have missed it.
    You can create it yourself, it needs the following directives.  The “.” on the front of the filename is very important.
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
    That should solve your navigation issue, providing the Apache mod_rewrite module is enabled.  If it doesn’t I can’t really help you further, other than to suggest you get a second hosting account online.  I seem to think you can use a remote development environment in Dreamweaver.  The advantage here is that you’ll have an environment that you know to work, with all the components installed.  No disrespect, but even we can spend ages configuring our development servers to work as we need, and much depends on the installation approach you use in setting up Apache, PHP and MySQL
    Re the database, as David has sussed there is no MySQL database to concern yourself with. Other red herrings include login and register handlers which are not implemented.  Your original brief included the possibility of a customer login to access your quotes & progress reports down the line, so we allowed for that in the initial build and planned for MySQL access but didn’t implement those features.
    Hope that helps. Great to see how far you’ve come with this – I probably couldn’t get as far building in the same time! Also glad to see that the comments re the code and structure are good – it’s always interesting to see what another developer, who obviously knows his stuff, thinks of your code!!
    Regards
    Oliver Phillips
    http://www.eantics.co.uk
    OMG ITS WORKING NOW!!!!!
    1. Move all files and folders for the website to the main root directory http://localhost/
    2. Open notepad and copy/paste code above in to note pad.
    3. Click Save As from files menu. Change save format to all files and call it .htaccess (dont forget to put the ''.'' before htaccess)
    4. Move .htaccess file to the root directory of the local/testing site.
    and that's it!
    There is just one small problem, I have had to move the XAMPP folder out of the root directory http://localhost for the links to work in DW CS5. When I first tried the link on my home page (both in DW CS5 and Browser) it redirected me to the XAMPP home page.
    I think the solution for this would be to put XAMPP back in http://localhost/xampp and move website file and folders to vhost.

  • Need help with syncing error!

    hey guys... kam here... every time i try to sync my iphone 4 up with itunes i get an error message saying unable to sync... i've updated all the dumb updates and all that crap but it still won't work... any ideas?

    Hi Reynold,
    Thanks for your response, the error is posting error. Can I change the document date even for the components of a production order inorder to process the COGI's. For example if an order is confirmed last month with missing parts, and if I adjust the stock for the components today, can I process the COGI'S by changing the document date as suggested by you.
    Follow-up question.
    When a Production order is confirmed the stock moves to quality, we have a hard stop here for certain meterials. The stock will show under quality in MMBE. Quality need to accept the results inorder to move the stock to unrestricted stock.
    When this stock is in quality, for some reason if a user cancel the confirmation I see two errors in COGI with movement type 101 and 102 with error M7. I have following two questions.
    If quality accepts the results the stock will move from quality to Unrestricted and the production order status is delivered DLV, can I delete the two COIG's with movement type 101 and 102?. We use PPIO_ENTRY to do a mass TECO, orders of these type are not being TECO'ed automatically and What is the impact on Costing.
    If quality decline the results and the period is closed how can we clear the COGI's and how the cost will be settled.
    I appreciate your help.
    Thanks & Regards
    Srini

  • Need help with MuseJSAssert Error

    Please help if possible. I am getting the following error after posting site:
    MuseJSAssert: Error calling selector function:TypeError: 'undefined' is not a function (evaluating '$(elem).museMenu()')
    I have re-exported and posted the site files and the scripts several times but nothing seems to fix this error.
    Files work locally fine. Site appears to function fine after clicking through the error.
    Site URL to view: www.victorydayfootball.com
    Any assistance would be greatly appreciated, client's event is this saturday and they are getting press traffic as we speak.

    It appears "WebStarts" is not intended to provide a generic website hosting service. Rather they provide a service intended solely for websites created with their tools. (Not a good sign when searching on FTP in their FAQ and Help comes up with no hits.)
    From the screenshot it looks like the scripts are in the correct place. It may be webstarts is using a non-standard webserver that only serves files from locations where their tools would place them. It may also be the period in the "1.1" folder name could be causing a problem. We have had one other report of the "1.1" folder name causing a problem on a specific hosting provider the customer never named. If that is the problem, the only workaround is a tedious search and replace of the /1.1/ string to something like /1_1/ throughout the exported HTML files (every time their re-exported and re-uploaded) and manually changing the folder name on the server.

  • Need help with Deployment error

    I am using JBuilder 2005 to build an deploy an application to Weblogic 8.1 SP1. I am having troubles with the deploymnent. JBuilder using weblogic.Deployer.
    It generates the following command to deploy to my server:
    C:\bea\jdk141_03\bin\java weblogic.Deployer -user xxxx -adminurl http://localhost:7001 -password xxxx -activate -name MyApp -upload -source C:/Inovisworks/DevBuild06/jbuilder/MyApp.ear -targets User_ejb.jar@myserver
    I get the following error when this executes
    java.io.FileNotFoundException: Response: '500: Internal Server Error' for url: 'http://localhost:7001/wl_management_internal2/wl_management'
    [Loaded java.lang.StackTraceElement from C:\bea\jdk141_03\jre\lib\rt.jar]
    at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:380)
    at weblogic.management.deploy.utils.DeployerHelper.uploadSource(DeployerHelper.java:656)
    at weblogic.Deployer.runBody(Deployer.java:614)
    at weblogic.utils.compiler.Tool.run(Tool.java:146)
    at weblogic.utils.compiler.Tool.run(Tool.java:103)
    at weblogic.Deployer.main(Deployer.java:399)
    The source C:/Inovisworks/DevBuild06/jbuilder/MyApp.ear for the application MyApp could not be loaded to the server http://localhost:7001/wl_management_internal2/wl_management.
    Response: '500: Internal Server Error' for url: 'http://localhost:7001/wl_management_internal2/wl_management'
    Any help would be appreciated.

    There is no issue for BSO cubes. Internally the BSO outlines are different from ASO cubes and this restriction does not appear in them. For ASO cubes, the problem is caused by deleting and readding dimensions. If you do incremental builds on dimensions, you will not have the 255 dimension issue, but the ASO outline will still grow. So the compaction utility in EsscmdQ is still valid for that.

Maybe you are looking for

  • Can the B520 be used as an external monitor for a macbook via the HDMI in?

    Hi, I'm very happy with the Lenovo, but it looks like our family will be acquiring a macbook in the near future.  Can I use HDMI in on the Lenovo B520 so that it becomes an external display for an apple computer? Thanks for the help.

  • Account Under Contstruction relationship with GL account

    Hi Friends, I am not from FI so i want to know basics of AUC account. 1. What is the relationship between AUC account and Gl account? 2. Under which account type AUC comes? 3. Do AUC account is maintained under different document type like AA, AB, SP

  • Audio / Video not in sync in FiOS tv

    Hi everyone, New to this forum and FiOS.  I have noticed that fios is sending audio before the video reaches the tv.  I have tested this extensively in my house with both the QIP 2500-3 on an old standard def cathode-ray tube and the QIP 6200-2 HD on

  • The message on my iphone 4s delivered late and I can't receive any calls for some time

    It's almost 6 months since I've encountered this problem. I already requested my carrier to have my iphone 4s replaced and a series of testing was done to my iphone 4s before they found out this it was defective. Now, I have my new iphone 4s but the

  • HP G71-448CL activation issue

    Long story short, I've had an HP G71-448CL sitting around for a year since I upgraded, and decided to dig it out and set it back up. My sticker had rubbed off on the bottom, and the OS (Win7) came installed on the HD. I used a program to pull the reg