Update code not working

ok.. i have a vacancies page, each vacancy has a link next to
it called "edit" when you click on the link it does this:
<a href="vacancyedit.cfm?ID=#ID#">
on vacancyedit.cfm there is a form. the fields on the form
are populated with this query:
<cfquery name="edit_vacancy"
datasource="allieddatabase">
SELECT *
FROM new_vacancy_table1
WHERE ID = #ID#
ORDER BY ID DESC
</cfquery>
the form looks like this:
<form
action="<cfoutput>#CurrentPage#</cfoutput>"
method="POST" name="edit_vacancy_form">
<label for="textfield">Auto ID</label>
<input
value="<cfoutput>#edit_vacancy.ID#</cfoutput>"
type="text" name="id" id="id">
<label for="label">Area</label>
<input
value="<cfoutput>#edit_vacancy.area#</cfoutput>"
type="text" name="textfield2" id="label">
<label for="label2">Pattern</label>
<input
value="<cfoutput>#edit_vacancy.pattern#</cfoutput>"
type="text" name="textfield3" id="label2">
<label for="label3">Hours</label>
<input
value="<cfoutput>#edit_vacancy.hrs#</cfoutput>"
type="text" name="textfield4" id="label3">
<label for="label4">Rate</label>
<input
value="<cfoutput>#edit_vacancy.rate#</cfoutput>"
type="text" name="textfield5" id="label4">
<label for="textarea">Description</label>
<textarea name="textarea"
class="text_entry"><cfoutput>#edit_vacancy.description#</cfoutput></textarea>
<br>
<input type="submit" name="Submit" value="Submit"
id="submit_button">
<input type="hidden" name="MM_UpdateRecord"
value="edit_vacancy_form">
</form>
so i make the alterations to the queried data as required
then click submit. this is the update code:
<cfset CurrentPage=GetFileFromPath(GetTemplatePath())>
<cfif IsDefined("FORM.MM_UpdateRecord") AND
FORM.MM_UpdateRecord EQ "edit_vacancy_form">
<cfquery datasource="allieddatabase">
UPDATE new_vacancy_table1
SET area=
<cfif IsDefined("FORM.textfield2") AND #FORM.textfield2#
NEQ "">
<cfqueryparam value="#FORM.textfield2#"
cfsqltype="cf_sql_clob" maxlength="50">
<cfelse>
</cfif>
, pattern=
<cfif IsDefined("FORM.textfield3") AND #FORM.textfield3#
NEQ "">
<cfqueryparam value="#FORM.textfield3#"
cfsqltype="cf_sql_clob" maxlength="50">
<cfelse>
</cfif>
, hrs=
<cfif IsDefined("FORM.textfield4") AND #FORM.textfield4#
NEQ "">
<cfqueryparam value="#FORM.textfield4#"
cfsqltype="cf_sql_clob" maxlength="50">
<cfelse>
</cfif>
, rate=
<cfif IsDefined("FORM.textfield5") AND #FORM.textfield5#
NEQ "">
<cfqueryparam value="#FORM.textfield5#"
cfsqltype="cf_sql_clob" maxlength="50">
<cfelse>
</cfif>
, "description"=
<cfif IsDefined("FORM.textarea") AND #FORM.textarea# NEQ
"">
<cfqueryparam value="#FORM.textarea#"
cfsqltype="cf_sql_clob">
<cfelse>
</cfif>
WHERE ID=<cfqueryparam value="#FORM.id#"
cfsqltype="cf_sql_numeric">
</cfquery>
<cflocation url="vacancyadmin.cfm">
</cfif>
this should then update my changes and take me back to
vacancyadmin.cfm. however all i get is the following error message:
Error Executing Database Query.
Parameter ?_5 has no default value.
The error occurred in
F:\data\webdesigns\wwwroot\CFIDE\Allied\vacancyedit.cfm: line 35
33 : ''
34 : </cfif>
35 : WHERE ID=<cfqueryparam value="#FORM.id#"
cfsqltype="cf_sql_clob" maxlength="10">
36 : </cfquery>
37 : <cflocation url="vacancyadmin.cfm">
SQL UPDATE new_vacancy_table1 SET area= (param 1) , pattern=
(param 2) , hrs= (param 3) , rate= '' , "description"= (param 4)
WHERE ID= (param 5)
DATASOURCE allieddatabase
VENDORERRORCODE 3088
SQLSTATE  
Resources:
* Check the ColdFusion documentation to verify that you are
using the correct syntax.
* Search the Knowledge Base to find a solution to your
problem.
Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3
Remote Address 10.0.0.201
Referrer
http://allied-srv-03/CFS/vacancyedit.cfm?ID=14
Date/Time 07-Apr-07 12:56 PM
Stack Trace
at
cfvacancyedit2ecfm242791332.runPage(F:\data\webdesigns\wwwroot\CFIDE\Allied\vacancyedit.c fm:35)
at
cfvacancyedit2ecfm242791332.runPage(F:\data\webdesigns\wwwroot\CFIDE\Allied\vacancyedit.c fm:35)
com.inzoom.adojni.ComException: Parameter ?_5 has no default
value. in Microsoft JET Database Engine code=3088 Type=1
at com.inzoom.ado.Command.jniExecute(Native Method)
at com.inzoom.ado.Command.execute(Command.java:40)
at com.inzoom.jdbcado.Statement.exec(Statement.java:34)
at
com.inzoom.jdbcado.PreparedStatement.execute(PreparedStatement.java:201)
at
coldfusion.server.j2ee.sql.JRunPreparedStatement.execute(JRunPreparedStatement.java:87)
at coldfusion.sql.Executive.executeQuery(Executive.java:756)
at coldfusion.sql.Executive.executeQuery(Executive.java:675)
at coldfusion.sql.Executive.executeQuery(Executive.java:636)
at coldfusion.sql.SqlImpl.execute(SqlImpl.java:236)
at
coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:500)
at
cfvacancyedit2ecfm242791332.runPage(F:\data\webdesigns\wwwroot\CFIDE\Allied\vacancyedit.c fm:35)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at
coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
at
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
at
coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at
coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
sorry its such a long post but i thought it best to post all
the info. can anyone see what the problem is with my code?
thanks in advance
zac

Zac,
You really shouldn't make the Primary Key for the table
editable.
Try removing this from the form:
<label for="textfield">Auto ID</label>
<input
value="<cfoutput>#edit_vacancy.ID#</cfoutput>"
type="text" name="id" id="id">
And make it a hidden input like this:
<input
value="<cfoutput>#edit_vacancy.ID#</cfoutput>"
type="hidden" name="id" id="id">
Ken Ford
Adobe Community Expert
Fordwebs, LLC
http://www.fordwebs.com
"zac1234" <[email protected]> wrote in
message news:[email protected]...
> ok.. i have a vacancies page, each vacancy has a link
next to it called "edit"
> when you click on the link it does this:
>
> <a href="vacancyedit.cfm?ID=#ID#">
>
> on vacancyedit.cfm there is a form. the fields on the
form are populated with
> this query:
>
> <cfquery name="edit_vacancy"
datasource="allieddatabase">
> SELECT *
> FROM new_vacancy_table1
> WHERE ID = #ID#
> ORDER BY ID DESC
> </cfquery>
>
> the form looks like this:
>
> <form
action="<cfoutput>#CurrentPage#</cfoutput>"
method="POST"
> name="edit_vacancy_form">
>
> <label for="textfield">Auto ID</label>
> <input
value="<cfoutput>#edit_vacancy.ID#</cfoutput>"
type="text" name="id"
> id="id">
>
> <label for="label">Area</label>
> <input
value="<cfoutput>#edit_vacancy.area#</cfoutput>"
type="text"
> name="textfield2" id="label">
> <label for="label2">Pattern</label>
> <input
value="<cfoutput>#edit_vacancy.pattern#</cfoutput>"
type="text"
> name="textfield3" id="label2">
> <label for="label3">Hours</label>
> <input
value="<cfoutput>#edit_vacancy.hrs#</cfoutput>"
type="text"
> name="textfield4" id="label3">
> <label for="label4">Rate</label>
> <input
value="<cfoutput>#edit_vacancy.rate#</cfoutput>"
type="text"
> name="textfield5" id="label4">
> <label for="textarea">Description</label>
> <textarea name="textarea"
>
class="text_entry"><cfoutput>#edit_vacancy.description#</cfoutput></textarea>
> <br>
> <input type="submit" name="Submit" value="Submit"
id="submit_button">
> <input type="hidden" name="MM_UpdateRecord"
value="edit_vacancy_form">
> </form>
>
> so i make the alterations to the queried data as
required then click submit.
> this is the update code:
>
> <cfset
CurrentPage=GetFileFromPath(GetTemplatePath())>
> <cfif IsDefined("FORM.MM_UpdateRecord") AND
FORM.MM_UpdateRecord EQ
> "edit_vacancy_form">
> <cfquery datasource="allieddatabase">
> UPDATE new_vacancy_table1
> SET area=
> <cfif IsDefined("FORM.textfield2") AND
#FORM.textfield2# NEQ "">
> <cfqueryparam value="#FORM.textfield2#"
cfsqltype="cf_sql_clob"
> maxlength="50">
> <cfelse>
> ''
> </cfif>
> , pattern=
> <cfif IsDefined("FORM.textfield3") AND
#FORM.textfield3# NEQ "">
> <cfqueryparam value="#FORM.textfield3#"
cfsqltype="cf_sql_clob"
> maxlength="50">
> <cfelse>
> ''
> </cfif>
> , hrs=
> <cfif IsDefined("FORM.textfield4") AND
#FORM.textfield4# NEQ "">
> <cfqueryparam value="#FORM.textfield4#"
cfsqltype="cf_sql_clob"
> maxlength="50">
> <cfelse>
> ''
> </cfif>
> , rate=
> <cfif IsDefined("FORM.textfield5") AND
#FORM.textfield5# NEQ "">
> <cfqueryparam value="#FORM.textfield5#"
cfsqltype="cf_sql_clob"
> maxlength="50">
> <cfelse>
> ''
> </cfif>
> , "description"=
> <cfif IsDefined("FORM.textarea") AND #FORM.textarea#
NEQ "">
> <cfqueryparam value="#FORM.textarea#"
cfsqltype="cf_sql_clob">
> <cfelse>
> ''
> </cfif>
> WHERE ID=<cfqueryparam value="#FORM.id#"
cfsqltype="cf_sql_numeric">
> </cfquery>
> <cflocation url="vacancyadmin.cfm">
> </cfif>
>
> this should then update my changes and take me back to
vacancyadmin.cfm.
> however all i get is the following error message:
>
> Error Executing Database Query.
> Parameter ?_5 has no default value.
>
> The error occurred in
F:\data\webdesigns\wwwroot\CFIDE\Allied\vacancyedit.cfm:
> line 35
>
> 33 : ''
> 34 : </cfif>
> 35 : WHERE ID=<cfqueryparam value="#FORM.id#"
cfsqltype="cf_sql_clob"
> maxlength="10">
> 36 : </cfquery>
> 37 : <cflocation url="vacancyadmin.cfm">
>
> SQL UPDATE new_vacancy_table1 SET area= (param 1) ,
pattern= (param 2) ,
> hrs= (param 3) , rate= '' , "description"= (param 4)
WHERE ID= (param 5)
> DATASOURCE allieddatabase
> VENDORERRORCODE 3088
> SQLSTATE  
> Resources:
>
> * Check the ColdFusion documentation to verify that you
are using the
> correct syntax.
> * Search the Knowledge Base to find a solution to your
problem.
>
> Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
rv:1.8.1.3)
> Gecko/20070309 Firefox/2.0.0.3
> Remote Address 10.0.0.201
> Referrer
http://allied-srv-03/CFS/vacancyedit.cfm?ID=14
> Date/Time 07-Apr-07 12:56 PM
> Stack Trace
> at
>
cfvacancyedit2ecfm242791332.runPage(F:\data\webdesigns\wwwroot\CFIDE\Allied\vaca
> ncyedit.cfm:35) at
>
cfvacancyedit2ecfm242791332.runPage(F:\data\webdesigns\wwwroot\CFIDE\Allied\vaca
> ncyedit.cfm:35)
>
> com.inzoom.adojni.ComException: Parameter ?_5 has no
default value. in
> Microsoft JET Database Engine code=3088 Type=1
> at com.inzoom.ado.Command.jniExecute(Native Method)
> at com.inzoom.ado.Command.execute(Command.java:40)
> at com.inzoom.jdbcado.Statement.exec(Statement.java:34)
> at
com.inzoom.jdbcado.PreparedStatement.execute(PreparedStatement.java:201)
> at
>
coldfusion.server.j2ee.sql.JRunPreparedStatement.execute(JRunPreparedStatement.j
> ava:87)
> at
coldfusion.sql.Executive.executeQuery(Executive.java:756)
> at
coldfusion.sql.Executive.executeQuery(Executive.java:675)
> at
coldfusion.sql.Executive.executeQuery(Executive.java:636)
> at coldfusion.sql.SqlImpl.execute(SqlImpl.java:236)
> at
coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:500)
> at
>
cfvacancyedit2ecfm242791332.runPage(F:\data\webdesigns\wwwroot\CFIDE\Allied\vaca
> ncyedit.cfm:35)
> at
coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
> at
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
> at
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
> at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
> at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
> at
coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
> at
coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
> at
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
> at
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
> at
>
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilt
> er.java:28)
> at
coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
> at
coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
> at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
> at
>
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
> at coldfusion.CfmServlet.service(CfmServlet.java:107)
> at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
> at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
> at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
> at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
> at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
> at
>
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
> at
>
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
> at
>
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
> at
>
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
> at
jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
>
>
>
> sorry its such a long post but i thought it best to post
all the info. can
> anyone see what the problem is with my code?
>
> thanks in advance
>
> zac
>
>

Similar Messages

  • TS1718 I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • HT1338 my software update does not work using OS X 10.6.8: update icon just stays static and times out, although web is online

    My software update does not work: the icon jams and then times out, although web is online. How to resolve??

    Snow Leopard DVD:
    You can get it only by phone now from Apple.
    In the US, call 1-800-MY-APPLE and ask for a sales assistant. Last quoted price was $19.99 for the single-user and $29.99 for the family licence.
    For other countries, check here; http://support.apple.com/kb/HE57
    Don't forget to ask for Sales; the tech support guys can't help.
    When you've installed SL it will be 10.6.3. You need to update that to 10.6.8 with the combo installer from http://support.apple.com/kb/DL1399 - that gives you access to the Mac App store.
    Lion is only available by phone also - same number and they'll give you a download code to use in the Mac App Store.
    If you're going to Mountain Lion you don't need to install Lion first - you can do it straight from Snow Leopard 10.6.8.
    Specifications;
    Snow Leopard 10.6.x:
    Lion 10.7.x;
    Mountain Lion 10.8.x:
    As for Lion, but also must be one of these groups;
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminium, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)
    Xserve (Early 2009)
    <sorry to repeat, guys, but following links isn't always a given with OPs>

  • Windows update does not work after using System recovery disk

    I have a Toshiba Satellite c655 with WIndows 7 64 bit Home premium. The hard drive died on it, so I purchased a new hard drive and purchased the appropriate Recovery media from Toshiba. I followed the directions and installed the 3 disks on to the new hard drive. But Windows update does not work I get the following error: Windows update can not currently check for updates, because the service is not running. You may need to restart your PC    No matter what I try, I can not get it to work. And it will not let me install Windows Defender either. Any ideas or help would be appreciated. Thank you in advance for your time on this matter.
    Solved!
    Go to Solution.

    I get errors saying A problem is preventing the troubleshooter from starting.
    That makes two similarities to the following thread. Both Windows Update and Troubleshooters fail to work correctly.
       Trouble with reinstall of Win7 64 on a L505-ES5018
    The fix was to install a new hard disk driver.
       Intel Rapid Storage Technology
    -Jerry

  • Phone not working after OS update, phone not working after OS update

    phone not working after OS update, phone not working after OS update

    I do have a questiion.  I started the most recent iOS update on my iPhone last night and before it was ever completed a message appeared on my screen.  It is a pic of the docking/charging cord with an arrow pointing to an iTunes logo...HELP!!!!!  I have tried holding down the home key and power button several times and the same message continues to appear. 

  • Safari is not working on the Mac. Internet is fine, mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar.

    Safari is not working on the Mac. Internet is fine. mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar only and coloured wheel appears.

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the malfunctioning extension by uninstalling and reinstalling it. That will revert its settings to the defaults.
    If extensions aren't causing the problem, see below.
    Safari 5.0.1 or later: Slow or partial webpage loading, or webpage cannot be found

  • WSUS "Self-update is not working" after new certificate

    After creating a new self-signed certificate in SBS 2008 wizard we get the following error:
    Text: Self-update is not working
    Source: Windows Server Update Service
    Event id: 13042
    I know that it must be something simple. But I can not find the solution.
    Can anyone help me with this problem?
    Thanks

    Hi,
    Based on your description and this error message, this issue may be caused by:
    The Default Web Site is not running and/or has a site binding for SSL (HTTPS).
    The Selfupdate virtual directory has the "Require SSL" checked under the SSL settings.
    For more details, please refer to the following KB and check if can help you to solve this issue.
    WSUS 3.0 Self-update is not working on Windows Small Business
    Server and Event ID 13042 is generated
    If anything I misunderstand or any update, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • I DON'T WANT TO UPGRADE OR HAVE AN ADD ON EVER, DISABLING UPDATES DOES NOT WORK, HOW DO I KILL ALL MEASAGES FOR UP GRADES AND ADD ON'S FOR EVER, ONCE AND FOR ALL, COMPLETELY, THE END AND NEVER BE BOTHERED AGAIN EVER!

    I DON'T WANT TO UPGRADE OR HAVE AN ADD ON EVER, DISABLING UPDATES DOES NOT WORK, HOW DO I KILL ALL MESSAGES FOR UP GRADES AND ADD ON'S FOR EVER, ONCE AND FOR ALL, COMPLETELY, THE END AND NEVER BE BOTHERED AGAIN EVER! ALSO IF I KILL MYSELF I WILL HOLD YOU PERSONALTY RESPONSIBLE.edit

    There is a world of information in these forums if you use the search function near the top right of this page. Just type in NAS for example and you get many threads on the subject (marked with a green checkmark if it solved the question) another example would be Airport Exterme and sound system. Once you formulate your ideas better then specific questions can be addressed one at a time. You may find that a less expensive choice for a server might be a mac mini. Good luck with your project, ask more specific questions and update you systems profile.

  • Ms updates does not work after recovery win 7 pro on dv4-2167sb

    info on problems with MS updates right after a new install of win 7 pro: does not install updates and will not install SP1 from down load . I used recovery disks I made. The OS [win 7 pro] recovered great but MS updates did not work from  the get-go..  {Personal Information Removed} HP NEEDS TO GET ME OS RECOVERY THAT WORKER I HAVE 4 OF THIS DV4-2167SB 'S
    Been on the phone with hp [not US] for more than hr.  talked to two svr. hungup on 3 times,  HP needs some New VP's.

    Hi VP_IA_DOT,
    I saw your post and forwarded it to the right people for their review. You should hear back from someone shortly via private message on this Forum.
    Thanks,
    NicNac - HP Support Forums Moderator
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • My auto updates are not working. I cannot find where to download Camera Raw 8.1 for Photoshop CS6.

    My auto updates are not working! I cannot find where to download Camera Raw 8.1 for Photoshop CS6 (Windows 8 64 bit). My Camera Raw is now at 7.1. I had the online Adobe folks tell me to just download all updates manually. That's great, yet I cannot find camera raw 8.1 to download...
    Please help.
    Thanks, Janet

    there's a direct download link on this page: https://blogs.adobe.com/lightroomjournal/2013/06/camera-raw-8-1-and-dng-converter-8-1-now- available.html

  • Update will not work, I get an error message that says error 7 (windows error 126

    The new update will not work for me, I am running Windows Vista. I have never had any problems installing updates before, but this time I get a message
    So I found the directions to uninstall itunes, I uninstalled itunes, apple software update, then I am unable to uninstall apple mobile device support. Since it says to uninstall them in order, I didn't go any futher. I did restart and got this message
    I tried redownloading and reinstalling but I am back to where I started from, can someone HELP?
    Thanks

    This is asked and answered dozens of time each day.  A forum search (right side of this page)  will find answers to many questions like this quickly.
    Disable your firewall/security software and try again.

  • Java 7 Update 11 Not Working with Firefox

    For me, the problems described in the thread "Java 7 Update 10 Not Working with Firefox? " Java 7 Update 10 Not Working with Firefox?
    are continuing with Java 7 Update 11.
    Windows 7 64 bit
    Firefox 18
    The problem is that "Java(TM) Platform" is missing from the plug-in list.
    I've uninstalled Java 7 Update 11 and reinstalled Java Update 9 which correctly installs the plugin and restores Java functionality which was broken immediately upon installing both Java 10 & 11.

    981243 wrote:
    So why not using Ju11 ? You can workaround the issue. It would sucks but still be safer than using Ju9.
    Also ask Mozilla forums if Firefox has options where to search for plugins.
    Or try 64-bit Firefox.As I explained in both threads ...
    Java 7 Update 10 Not Working with Firefox?
    Java 7 Update 11 Not Working with Firefox
    ... neither jre7u10 nor jre7u11 are working ... and they are BOTH broken with the same problem ... "Java(TM) Platform" pliugin is missing from the plug-in list. It cannot be enabled, because it simply is NOT there. A suggestion was made the jre7u12 will be the "fix" for this issue ... so I installed the Update 12 Preview and it sis ALSO broken, no "Java(TM) Platform" in the plug-in list.
    The ONLY Java version that actually works for me is jre7u9.
    As far as installing Firefox 64bit ... I see no future in installing a browser that has been discontinued.
    http://www.computerworld.com/s/article/9233976/Mozilla_suspends_work_on_64_bit_Firefox_for_Windows
    Even though Mozilla relented due to backlash, I continued development will be a somewhat low priority.
    http://www.computerworld.com/s/article/9234997/Mozilla_compromises_on_x64_Firefox_after_user_backlash

  • Update/Modify not working

    hi,
    i have ztable
    mandt key field
    ztest1  key field
    ztest2  key field
    ztest2  non key field
    when i'm trying to modify any key field, MODIFY keyword is actually adding a new record in the Database. it is because the new combination of key fields is unique.
    i tried using update statement . Update is not working as the combination key is creating a new record which is not present in Db and hence , its not updating.
    do we have any workaround on this ??
    if i update the key field same field should be updated with other fields intact
    please help.

    key field means unique record.
    if u try to change a key field it will add a new entry.
    to an existing entry with a key combination u can change only the non-key fields.
    else u need to delete the record combination and add the new combination.

  • TS1538 Ios 5.1.1 update did not work

    The update did not work.  I downloaded the udpate last night, through ITunes and did the update this afternoon.
    The phone hung during the update, and now only shows the connect to itunes on the screen.  Itunes does not see the phone.
    When I look in the device manager, I see the drives listed in the Other Devices, and there are two of them listed as "Apple Mobile Device (Recovery Mode)  Tried to update them, but the dirives are no longer on my pc, where Apple said that they should be.
    I am clueless now. 
    The last update had a simular problem.
    This is an IPhone 4

    Then you should try uninstalling iTunes and all of its components as by following this guide: Windows XP or Windows Vista/7, then reinstall iTunes.  This should replace the drivers.  You must follow this guide exactly or it will not be successful.  Note: uninstalling iTunes will only remove the application; it will not touch your iTunes library, data or your iPhone backup.

  • My final cut pro x update is not working?

    My final cut pro x update is not working for 10.0.3
    I'm very upset, somesone help me I'll update lastest version of FCPX.
    my version is now 10.0

    Then perhaps you should post your question in the FCP forums rather than the iPhone forums.

Maybe you are looking for