-
Digital download CMS?
Hi all, Thank you for the replies, and sorry for my late reply! Very helpful info. I am now working on this project fully, and looking for an eCommerce solution for selling digital downloads! Otherwise, as you guys say, I will have to get this custom built. One point from me: Stay away from GetShopped - download links are only emailed after manually confirming payment (!). Tony
-
Digital download CMS?
Thank you Sandeep, appreciated. I am aware of Magento being resource heavy, so am trying to stay away from that.. If/when I find any other solutions I will be sure to post them on here. Tony
-
Digital download CMS?
Hi all, I need to build an ecommerce site with MP3 downloads/purchases, obviously complete with a CMS for the client to easily upload new tracks. Can anyone recommend any CMS's or plugins etc to help achieve this? Any help will be very appreciated. Tony
-
DB user permissions
I know what the problem is now - I am using Plesk! I need to use CPanel; CPanel has the option to give permissions! Thank you for the potential help. All the bset, Tony
-
DB user permissions
Hi all, I'm trying to execute a db file, but I only recieve a message saying 'insufficient permissions'. I am using plesk and MySQL.. I have been trying to give full access to the user name, but have been unsuccessful so far. If I run this query from phpMyAdmin: GRANT ALL PRIVILEGES ON database-name.* TO 'user-name'@'localhost' IDENTIFIED BY 'password'; I get this error: '#1044 - Access denied for user 'user-name'@'%' to database 'database-name'' Any help would be most appreicated; I need to get this working ASAP! Best, Tony
-
Login System Tutorial?
Hi all, I need to expand on my knowledge of dynamic (or database driven) web applications. I am looking for a modern tutorial that will teach me what I need to know for creating a login system; obviously PHP, mySQL and cookies. Any pointers would be be greatly received. Best, Tony
-
Ecommerce - Simple one-item shop!
Thanks! I will be using OpenCart in the future.
-
Ecommerce - Simple one-item shop!
Thanks Richard - I was looking for something other than Magento, but I am now very happy to know that this will do the job for us! Tony
-
Ecommerce - Simple one-item shop!
Hi all, After days of researching I could really do with some pointers. I need the facilities for a one item only shop, all of the plugins etc that I have found so far are missing something that we need, and seem impossibile to customise. Main Features needed: One page checkout SagePay intergration 'Default item' for shopping basket/checkout. Coupon code abilities For example, we want to be able to give people a link to this item. The user will visit this link, and the link will be the checkout on our shop for this one and only item. Obviously the item would be updated occasionaly. Any help would be very appreicated as this seems impossible to find, and I would prefer not to build this manually.. Best, Tony
-
What CMS to use?
Thanks Hoang Loi! I will definitely be using some of these in the near future - looking forward to it! Thanks all. Tony
-
Countdown script displayed in 48 hour format?
Haha, thank you ever so much - all working now. I have also learnt something new! Tony
-
Countdown script displayed in 48 hour format?
Thanks guys, Spitfire - I done this, but i'm still not getting 48 hours? It looks like the script isn't 'allowing' the hour to be counted over 24 hours? Tony
-
Countdown script displayed in 48 hour format?
Hi all, I have a countdown script. It works great, except I would like it to display in a 48 hour format instead of a 24 hour format; It will only ever be a 48 hour countdown. Eg '47 hours 8 mins 2 secs remaining', rather than '1 day 24 hours 8 mins 2 secs remaining'. Any help would be very appreciated. /*usage*/ <script type="text/javascript"> TargetDate = "03/24/2011 11:59 PM"; CountActive = true; CountStepper = -1; LeadingZero = true; DisplayFormat = "%%H%% %%M%% %%S%%"; FinishMessage = "Who Pays Full Price Is Ready For Launch!"; </script> //countdown functionality function calcage(secs, num1, num2) { s = ((Math.floor(secs/num1))%num2).toString(); if (LeadingZero && s.length < 2) s = "0" + s; return "<span>" + s + "</span>"; } function CountBack(secs) { if (secs < 0) { document.getElementById("countdown").innerHTML = FinishMessage; return; } DisplayStr = DisplayFormat.replace(/%%D%%/g, calcage(secs,86400,100000)); DisplayStr = DisplayStr.replace(/%%H%%/g, calcage(secs,3600,24)); DisplayStr = DisplayStr.replace(/%%M%%/g, calcage(secs,60,60)); DisplayStr = DisplayStr.replace(/%%S%%/g, calcage(secs,1,60)); document.getElementById("countdown").innerHTML = DisplayStr; if (CountActive) setTimeout("CountBack(" + (secs+CountStepper) + ")", SetTimeOutPeriod); } function putspan(backcolor, forecolor) { document.write("<span id='countdown'></span>"); } if (typeof(BackColor)=="undefined") BackColor = "white"; if (typeof(ForeColor)=="undefined") ForeColor= "black"; if (typeof(TargetDate)=="undefined") TargetDate = "12/31/2020 5:00 AM"; if (typeof(DisplayFormat)=="undefined") DisplayFormat = "%%D%% %%H%% %%M%% %%S%%"; if (typeof(CountActive)=="undefined") CountActive = true; if (typeof(FinishMessage)=="undefined") FinishMessage = ""; if (typeof(CountStepper)!="number") CountStepper = -1; if (typeof(LeadingZero)=="undefined") LeadingZero = true; CountStepper = Math.ceil(CountStepper); if (CountStepper == 0) CountActive = false; var SetTimeOutPeriod = (Math.abs(CountStepper)-1)*1000 + 990; putspan(BackColor, ForeColor); var dthen = new Date(TargetDate); var dnow = new Date(); if(CountStepper>0) ddiff = new Date(dnow-dthen); else ddiff = new Date(dthen-dnow); gsecs = Math.floor(ddiff.valueOf()/1000); CountBack(gsecs);
-
Is this design too simple?
Nice work Ben. I agree with the carousel and I would also put a navigation at the top, and/or the footer. As for SEO - If you put a h1 at the beginning of the page, it will be the description of the site on Google. If it's not a 'high volume' site, I don't think you need seperate pages. Sure it's always better to have individual pages, but you can implement some nice transitions with divs. Looking forward to the finished result!
-
What CMS to use?
Bump