From: Mike T. <mt...@ya...> - 2003-03-30 01:31:47
|
Re: unlink error, I don't get that error on my server - maybe a server config issue? This may be a better way to delete (from php.net): <?php function suppr($file) { $delete = @unlink($file); if (@file_exists($file)) { $filesys = eregi_replace("/","\\",$file); $delete = @system("del $filesys"); if (@file_exists($file)) { $delete = @chmod ($file, 0775); $delete = @unlink($file); $delete = @system("del $filesys");}}} ?> Re: javascript confirm, it can de disabled by setting $confirm_changes to 'no' in config.inc.php, so I don't know why it needs be removed. Re: coding standards, I thought I was. Which part didn't meet your standards? mike Chad <ch...@ch...> wrote:Well, it need a bit of a polish, which I can take care of over the next few days. I also got an error trying to delete a calendar: Warning : unlink() failed (Permission denied) in /Users/clittle/Sites/phpicalendar/admin.php on line 180. The coding standards should also match ours, so developers can expect consistant structure. The javascript confim can also go away. I've committed it for now but we'll have to work it over. -C On Friday, March 28, 2003, at 12:55 PM, Mike Traum wrote: > Thanks for all of the good suggestions regarding the admin control > panel. The patch is available on the sourceforge patch page. Please > help by testing this so we can get it up to release standards asap. > > thanks, > mike > > > > > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Phpicalendar-devel mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpicalendar-devel --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! |