Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Good to hear (Score 1) 79

Even though our company writes our own CMS and e-commerce software, I am glad to see Wordpress moving forward. Some of our clients prefer to use Wordpress over our own CMS simply because it's free. The more I use Wordpress the more I like it. Sure, the code is messy, but maybe the new Wordpress 3 cleans some things up. It is also good for web development companies to offer integration of their software in to Wordpress which can expand your client base. Maybe one day we will open source our CMS software once it's ready.

Comment Improved login system? (Score 1) 297

It would be nice if they simply revamped their login system. Right now I have an older "unlinked" google account and every time I try to login with it I get an infinite redirect loop. Yes, I cleared my cookies and the problem occurs on Firefox, Google Chrome, and Internet Explorer. I used to be able to login fine just a few weeks ago. What does it take to get support from YouTube with login troubles? Is anyone else experiencing login issues?

Comment There is already a solution (Score 2, Insightful) 180

Developers can stop using flash and end-users should uninstall it. There is already a solution out there and it is called javascript. 90% of the things you can do in flash can easily be done using javascript, jquery, or some other javascript framework. For the remaining 10%, HTML 5 will be able to handle most of it (canvas tag, videos, better form support, etc), and the remainder of things that javascript/html can't do that flash can do (if there is anything), is not even worth implementing in a website. Since javascript and HTML is all open and much easier to work with, I foresee flash and silverlight on the decline. This especially holds true when HTML 5 is fully supported in most people's browsers.

Comment go for the degree (Score 1, Informative) 474

I've had many technical support jobs, helping employees and friends and family. I ended up in your position and didn't know how much longer I could handle it. What I did is got my B.S. in computer science at a good school and now my full time job is working for myself doing web development. You will not go wrong learning databases and web development and if you get good at it you will be able to work anywhere, anytime, and basically for whoever you want. Also, we all know that web applications and "cloud computing" is the new face of the Internet and still in its infant stages and has plenty of room to grow. Having your degree in computer science can land you other types of jobs doing productive work (even if you decide you don't like web development) and you get a great sense of accomplishment for the type of work you choose to do (possibilities are pretty much limitless). Hope this helps.

Comment m$ (Score 1) 575

This doesn't surprise me... anything utilizing the technology (if you want to call it that) of Silverlight is bound to be a disaster. Netflix should definitely act appropriately if they're receiving this many complaints or else it will do more harm than good.
Software

Citrix XenServer Virtualization Platform Now Free 259

Pedro writes "Citrix announced today that they are giving away their Xen OSS based virtualization platform XenServer with all the goodies included for free. The big highlights are XenMotion, which lets you move VMs from box to box without downtime, and multi server management. The same stuff in VMware land is $5k. They plan to sell new products for XenServer and also the same stuff on Microsoft's virtualization technology called Hyper-V. It will be interesting to see what VMware does. The announcement comes the day before VMware's big user event VMworld."

Comment Automate it (Score 2, Interesting) 195

There are some good automated security scanners out there. For instance: Nesses/Nikto, WebScarab with proxmon, portswigger, and you can even go as far as using 3rd party companies such as HackerSafe.com or SecurityMetrics.com. Even though this doesn't give you a 100% fail-safe security scenario (*cough* nothing does and probably never will), it at least helps decrease the chances of common and even some more uncommon attacks such as SQL injections, overflows, man-in-the-middle attacks, etc. You also obviously have to write secure code and keep all of your software up to date (especially open source software). This is not only true for PHP, but for all programming languages. You should also try using BSD since you have a LAMP system. Some other good sources of information: http://www.webappsec.org/ http://www.owasp.org/ Hope this helps...

Comment Web development (Score 1) 352

Web development is a nice and diverse field to get in to. The direction web development is heading should provide good job security... you will just need to learn how to use javascript/ajax, some server side language, SQL, and HTML/CSS. By having to handle multiple technologies in web development, your job doesn't seem as monotonous as going through some C# code all day fixing bugs or writing modules. You can also dive in to doing some graphics/ui design in the web development field if you're in to that sort of thing. I have a B.S. in computer science degree at Purdue University and I enjoy web development much more than working on desktop/other standalone applications all of the time.

Comment Re:hosted vs downloaded/licensed e-commerce (Score 1) 238

I don't think of it as an obligation but more of a convenience to them since integrating in to their open API gives them more business.
I also think that any application that implements 3rd party APIs such as USPS Web Tools should have proper error catching to handle problems such as these.

As of right now, we're still experiencing problems with USPS Web Tools and fail-over pricing is still being set. That means USPS has been having these problems for nearly 40 hours now.

A lot of companies selling on the Internet have lost a lot of money in the last 2 days because of shopping cart software not handling USPS Web Tools correctly. This just points back to why hosted e-commerce solutions such as SEO-Cart, Volusion, Monster Commerce, etc are typically better than licensed / downloaded e-commerce solutions. But USPS is also at fault since they're the source of the problem.

Comment hosted vs downloaded/licensed e-commerce (Score 5, Interesting) 238

The company I work for provides a hosted e-commerce shopping cart solution, SEO-Cart, which supports the USPS Web Tools. Of course the first call coming in for the day was from a client using USPS and having incorrect shipping prices being calculated for their store.

I went ahead and called USPS and the lady who answered was quite rude and explained to me that they had a Worldwide outage which affected other applications than just their Webtools API, and also that they hire a 3rd party company to handle their Webtools API software. She couldn't provide any other information at all and I told her a company of that size should have some sort of fail over plan in place to prevent them from being down as long as they have been. I was really disappointed in the fact she didn't even ask me for my name, phone number, or company by time the conversation was over, but she was probably being bombarded with phone calls all day.

After figuring out that USPS was completely down, I looked through our fail over code and found the following equations seem to come close to the USPS pricing:

National shipping: [cart-weight]*1.6+3.00
International shipping: [cart-weight]*1.6+15.00

These also include pricing for insurance.

After tweaking the fail over pricing code to this, it seemed that everyone using USPS were happy with the results. We also had to decrease the connection timeout set for the request to the USPS Webtools API which was also slowing things down.

The Webtools API seems to be both up and down today, with some orders having shipping prices directly from USPS and others having the fallback pricing. Either way, hopefully their IT department learns from this and also provide us information as to what exactly went wrong.

On that note, this is a prime example that I use when speaking to prospects about the advantages of using a hosted shopping cart solution rather than a licensed/free download solution. Besides the obvious IT benefits that you get with a good hosted shopping cart solution, hosted shopping cart software is typically a centralized application that can provide quick updates to problems like these. Of course this is assuming that the prospect is serious about their online store and doesn't want to handle technical support themselves.

Slashdot Top Deals

Arithmetic is being able to count up to twenty without taking off your shoes. -- Mickey Mouse

Working...