Archive for February, 2007

Browsing the Log History of a SVN Rep 

You can quickly browse the log history of a SVN repository by using the following command:
svn log -r 1:10 -v
That will browse revisions 1 to 10 showing you all the files.

Permission Issues when Committing on Subversion 

I just setup a new subversion server, but I couldn’t get any of my clients to commit or import new data into the repository. The clients were getting the error message:
svn: Commit failed (details follow):
svn: Can’t create directory ‘/svn/repos/project/db/transactions/1-1.txn’: Permission denied
And the error logs gave me the error:
[Wed Feb 21 15:33:14 […]

File Permssion Errors in Plesk 8.1 on Windows 

Just had to troubleshoot an issue on a Windows IIS Webserver where PHP didn’t have the proper permissions to write files.  The server is running plesk, so I had to determine which user is attempting to write the files.  It ended up being:
Plesk IIS User and Plesk IIS WP User
Giving them write permissions allowed me […]

FCKEditor and new EnterMode & ShiftMode handling 

A new version of the FCKEditor was released, version 2.4, which is a web based WYSIWG editor that you can embed into web forms. It allows for greater control of the content. The latest version added a new Enter Key Handler, here is the description:
The new Enter Key Handler, guarantees that the editor […]