I use PHP for my development. The site is down for almost a week now.
I need to download the latest PHP 5.2.9.9, is there any alternative sites fromw the PHP can be downloaded.
Thanks,
Who knows a good component for a "calendar control" (NOT date/time picker)?
"Calendar control" means something like Mozilla Sunbird:
Requirements to the control:
- C++;
- Day/Week/Month view;
- Support of several calendars;
- Without MFC dependences;
Nice to have:
- Open source;
- Cross plathform;
- Free;
- Minimum external dependences (boost etc are fine);
Hello,
I am working on an Azure project. To secure this site, I wanted to install a SSL certificate. So when I uploaded .pfx file, I am getting error message "Uploaded file is not a valid X.509 Certificate, or the password is invalid. " when I try to upload a certificate. I was able to do the same without any issue last week.
Thanks
I've tried implementing various methods from around the internet, all seem to be providing the same solution. But it just won't work and I'm unsure why, it creates the file, however, it's blank and if I try loading that file, it has an error.
Main.java contains the code to save and load the file: 190-224.
Rooms.java contains the object.
Code
Any help is greatly appreciated, I've been trying for almost a week now! Thanks in advanced!
Employee table structure
first_name varchar2(100)
last_name varchar2(100)
hire_date date
show all the employee who hired on the day of the week on which highest number of employees were hired?
Have a product that belongs to a category. Want to create a promotion for a short period of time (lets say a week or two), but their can be only one promotion per category during that time.
How can I create a custom validation for this?
product class
belongs_to :categories
name:string
desc:text
reg_price:decimal
category_id:integer
promo_active:boolean
promo_price:decimal
promo_start:datetime
promo_end:datetime
end
category class
has_many :products
name:string
end
Any tips How to figure out where is memory leak in my Facebook app, its ASPX using Facebook toolkit DLL and I am afraid the bug may be in that CS library.
The problem is that after one week uptime, server is running out of memory and needs to be rebooted, there are quite many users and I cannot run debugger on this "production server", so I would need to simulate somehow use on my local PC.
Hi folks,
I wanna have a drop down that lets me select "Week Commencing Monday the 20th" going back 10 Mondays but I'm not sure how to go about doing this.
I've used date.now(), etc. before but not sure how to do this one.
Thanks,
Billy
Convert 2010-04-16 16:30:00 to "Tomorrow Afternoon" or convert another date to "this afternoon", "next year", "next week wednesday". You get the picture.
Anyone know of a PHP or Javascript library that can do this?
I made that only mondays are active in each month like this
function onlyMondays(date){
var day = date.getDay();
return [(day == 1), ''];
}
But at last week of the month there wont be any active mondays left so i want to show next month in that case based on the code above.
Any idea would be appreaciated.
Thanks.
I have a database table that stores user comments:
comments(id, user_id, created_at)
I want to get from it the number of users that have commented for the first time in the past week.
Here's what I have so far:
SELECT COUNT(DISTINCT `user_id`)
FROM `comments`
WHERE `created_at` BETWEEN DATE_SUB(NOW(), INTERVAL 7 DAY) AND NOW()
This would give the number of users that have commented, but it would not take into consideration whether these comments are first for these users.
The default asp.net calendar renders with 6 displayable weeks, the last week is always the 'next' month and i dont care about it. Is there a way to display only 5 weeks?
Is it possible to have a datetime scale not consider weekends as part of the time continuum? For instance, if I am plotting stock prices over a 2 week period with a line geometry, I do not want to plot a 2 day period of flattness during the weekend. I would like friday to connect with Monday.
in python tutorial added that python cannot hide its attributes from other classes. some thing such as private data in C++ or java..But also i know that we can use _ or __ to set some variables as privated one but it is not enogh. I think it is a week if it is not any thing to do it.
for a current webapp i need a "outlook-like" calendar... Here are some requirements for the calendar:
week-view for the appointments
different appointment types
direct display of the length and time of the date (like in googleCalendar)
multiple appointments for the same time
only using javascript, php and any DB
We need the calendar for the Zend Framework, so if the Calendar doesn't already support the ZF, the source needs to be editable!
do you know any calendar which fits my needs? or do you have any tipps for developing one by myself?
Hi all,
I have a long and annoying process which is using three different applications and I must do this every week I'm looking for a tool to automate all these steps .
all my applications are winform applications , basicly I need to open applications simulate button clicks or left clicks .
I have done the same thing for webforms using WATIN and now I'm looking for right tool doing the same for winforms .
thanks
I've seen a little buzz on ASP.NET Web Forms MVP, but where can I get resources?
http://webformsmvp.com is pretty much stubbed out for now. This appears to be a compelling refresh of the Web Forms paradigm and bring into the fold things that make ASP.NET MVC great. I hear it's going to be put out there at MIX10 this week, but anyone have any useful sites/references?
I have an android app that periodically, say once a week downloads content from a server in XML. The content is used by the app, different Acitivities use different parts of the content.
My question is a design one, should I save the data in SQlite or just keep it as an XML file, which one would be faster to read?
The app can only use one content piece at a time, which means subsequent XML content downloads replace the old one.
I run a forum similar to this one where people can sign up and post. I don't use Open ID (oops?) as we have our own sign up and email confirmation system. Everything was going fine up until a week ago when all of a sudden all emails starting either going to spam boxes or not being sent at all. Anyone know why this would happen seeminlgy out of the blue?
I have sql server script and i want to automatic run it on the database every week.
any help.
i tried sql server agent job but i have alot of data bases on my server and i should make step to every database and it will run in the same day and same time.
Hello I have a database for a certain record where it needs to store a 1 or a 0 for each day of the week. So which one would be better? Bitshifting each bit into an integer and just having an integer in the database named days or should we make all of them separate boolean values so to have sunday, monday, tuesday... columns?
hi guys,
Suppose my website is www.example.com
Earlier the urls of my website was like this www.example.com/php/bookdetails.php?bid=33
Last week i changed the urls of my site to this www.example.com/bookdetails/33
and wrote an htacces like this
RewriteRule ^bookdetails/(.*)$ php/bookSearchResult.php?bid=$1
The problem is that there are some external site using my earlier URL structure (www.example.com/php/bookdetails.php?bid=33) and what i want is to redirect it to my new URL structure (www.example.com/bookdetails/33).
I know it can be possible in htaccess, but i have no idea how to do it