726 Topics
| |
In a move that could only be characterized as surprising, Sony announced last week that it was going to be using the open [URL="http://www.idpf.org/"]ePub eBook standard[/URL], which in theory should enable [URL="http://ebookstore.sony.com/reader/"]Sony Reader[/URL] users to access and use any books created around the standard. Sony Readers will also be able … | |
Last week [URL="http://www.adobe.com"]Adobe[/URL] surprised a few people—well, at least it surprised me--with the announcement that it was including [URL="http://www.alfresco.com/"]Alfresco[/URL] content management services as part of its LiveCycle Enterprise Suite Update 1 package. The surprise was two-fold, that Adobe felt it was necessary to add content management services at all and … | |
Notice the category... coffee house. First, I couldn't agree to choose software development since web development was another category and I'll get around to why that is an obvious misunderstanding of the true nature of computing, later on. So, I passed by site management and IT (water cooler or not) … | |
Almost everyone has it, Adobe Acrobat Reader. But which version. Security staff are reporting that there is a bug in past versions of this popular piece of software. The bug is infact in the browser plugin for the reader that allows users to view pdf documents inside their browser. This … | |
If query is called getResults and your field name is called myField To change to 2-across or 3-across, or whatever, just change the MOD 4 to 2 or 3 or whatever number you wish. | |
Change Your_Query to match your query name, Your_data to match your field name(s), and change the colors (ffffff and dadada) to match the colors you want. | |
Change the yourActionPage.cfm to the name of the page you want to open, and adjust the sizes and other parameters as you need. | |
Does anyone here have experience using the Acunetix Web Vulnerability Scanner? I happened to use it on my site to check for vulnerabilities and found about 15 HIGH level ones - all of them with basically the same problem: [B]Cross Site Scripting[/B] and [B]Cross Site Scripting in URI[/B]. For every … | |
I am so confused, I want to add some anti-spam security to my upcoming register page but something is really wrong. Note that my server is Coldfusion MX7 (i can not afford better) and because of that i can not use cfimage(captcha). This is what i have: [code] <cfset strLowerCaseAlpha … | |
When a user logs in that has the same password as another user the latest person to register with that passwords details are revealed, im struggling to make it check that the username and password are connected and only if the username and password match should that users details be … | |
I have a table that has various rows of data grabbed from a table in my DB. 3 of the columns display the queried data. The last column, however, contains text fields for the user to hand-enter values. When the user hits the Submit button, all of the values entered … | |
I have a bunch of alphanumeric IDs for the data in my DB. The IDs may look like the foll: 0XAA001 or 1YBB010 or 2ZCC011 and so on. Each of the 7 characters stands for something and therefore I have to extract the characters to populate the columns in the … | |
Hi all , Can anyone help me solving this issue. I am using FCK Editor on my coldfusion page. Then I am generating PDF of the data using <cfdocument> tag. If I format the text first and then set the background color , the background color is not rendered on … | |
Hi all Can anybody help me with this. I want to access cfdocument.currentpagenumber outside the cfdocumentitem tag. I tried the following ways : 1) [code=coldfusion]<cfdocument format="pdf" orientation="landscape" unit="cm" margintop="4.0" marginbottom="2.0" marginleft="2.2" marginright="2.2" scale=99 filename="c:\test.pdf" overwrite="yes"> <cfoutput> <cfdocumentsection> <cfdocumentitem type="header"> <cfset Page = cfdocument.currentpagenumber> </cfdocumentitem> <cfdocumentitem type="footer" > FOOTER !!!! </cfdocumentitem> … | |
Does anyone know if it's possible to exclude the search engine bots by using a robots.txt file on a Coldfusion website just like an HTML site? Thanks, Heidi | |
Hi I am new to coldfusion.I dont know much about cold fusion.I have a problem like there are two radio buttons and a select box.Depending upon the slection of the radio button the select box should be populated.i.e if first radio button is selected then select box should populate some … | |
I havnt tried it yet. I wanted to know if it is any good. I have an <URL SNIPPED>seo and web development company and I am always looking for new ways to increase performance. I was reading that it actually allows you to see where your site is allocating its … | |
Im trying to search my database and find out the previous 7 days unique ip addresses. Users ip addresses are stored within the table events under svname. I have a small piece of java that is supposed to count back 6 days. At the moment its saying there have been … | |
Is there a way to grab data from alternate records in a ColdFusion query? Essentially, what I am trying to do is this: I am querying my database to grab some data. 2 rows of data are returned here. Now I want to set 2 variables - [I][B]var1 = row1.columnA[/B][/I] … | |
Just wondered if anyone knows if it is possible to install a Wordpress blog as part of an existing Coldfusion website? I just want the one page to be Wordpress without affecting any of the other pages. Thanks in advance for anyone who might know the answer to this! Heidi | |
Hi, I have installed the Google Analytics code on static HTML pages, but I have never done it on a Coldfusion (cfm) website. Is there a big difference between putting the tracking code for Google Analytics on an HTML site vs. a Coldfusion site?? If anyone could help me with … | |
I am trying to load the configurations of coldspring and modelglue dynamically using one environment.xml.cfm file. Following are my three files 1- environment.xml.cfm: [code] <environments> <!-- Values for all portal environments --> <default> <config> <!-- Default main vars --> <property name="companyName">ABC</property> <property name="applicationPath">C:/inetpub/wwwroot/websites/test</property> <property name="subdomainName">test</property> </config> </default> <environment id="myDevelopmentPortal"> <patterns> … | |
I am using a Flash file that calls gallery.xml its hardcoded into the flash and i cant edit the flash file. the code in my page looks like [code=Coldfusion] <cfsavecontent variable="gallery"> <?xml version="1.0" encoding="UTF-8" standalone="no"?> <gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true"> <image> <url>http://www.modelproductions.com/proimages/avatar9.jpg</url> <caption><![CDATA[<font size="50">Example Gallery</font><br>An example large format <u><a … | |
I have problem when cfdocument must return pdf that contains 450 pages and more. I get this error: The request has exceeded the allowable time limit Tag: CFLOOP How to solve this problem, any ideas? N | |
Hi, I have created a pdf using cfdocument that displays the results of a submitted form. This works fine in IE and Firefox in Windows, but on the Mac & in Safari, it does not recognize the pdf because it is a cfm file. Any help is much appreciated. | |
Hello I am trying to validate a textbox using the OnSubmit setting. <cfinput type="text" required="yes" validateat="onsubmit"> the validation of the above text field works properly by throwing me a alert box when there is an error and when i test on my localhost server. But when i transfer the mysite … | |
Hi, I have a problem with cfldap tag used in CF8. I have a cfldap tag defined in my application which works fine on CFMX7. But the moment I installed CF8, it gives me an error - "Connection to LDAP server failed." My cfldap tag goes as below:- [code][CFLDAP NAME="qLDAP" … | |
I'm creating an input form for users so that they can input various bits of info into a db. One of the fields is so that they can upload a file, which puts the file onto the web server and the path to it into the db. The problem is … | |
Could someone tell me why when some of the fields on my form are replacing blank with a "+" ? I'm kind of new to ColdFusion. Thanks ahead. :) |
The End.