This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- insert this in navbar.cfm in the appropriate place inside the MuraBootstrap theme to see an Edit Profile or Logout link if a user is logged in. | |
This example also outputs the users name into the nav bar. ---> | |
<cfif $.currentuser().isLoggedIn()> | |
<div class="pull-right"> | |
#$.currentUser().getFname()# #$.currentUser().getLname()# | |
<a href="/?display=editprofile" class="btn btn-default">Edit Profile</a> | |
<a href="/?doaction=logout" class="btn btn-default">Logout</a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Applications/ColdFusion9/bin/coldfusion start | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo /usr/share/railo/tomcat/bin/catalina.sh start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* MSSQL Script to delete Mura 6.0 installation tables | |
Be sure to replace your database name below inside the USE [] Statement */ | |
USE [MyMuraDatabase] | |
GO | |
DROP TABLE [dbo].[tadcampaigns] | |
DROP TABLE [dbo].[tadcreatives] | |
DROP TABLE [dbo].[tadipwhitelist] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl https://api.mover.io/account/limits \ | |
-X GET \ | |
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Using CFSCRIPT | |
pdfService = new pdf(); | |
pdfService.setSource( expandpath( './#mypdf#.pdf' ) ); | |
PDFInfo = pdfService.getPdfInfo( name = "pdfinfo" ); | |
pageCount = PDFInfo.TotalPages; | |
From: http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_p-q_02.html | |