icon Get the most out of Surmunity, read our tips here! Need an interesting blog to read? You've got to read the Surpass Blog! | Welcome! Please register to access all of our features.

» Surpass Web Hosting Forums » Discussions » All Things Techy » Web Standards Design » In need of some zen help....pretty please

Web Standards Design Discuss accessibility, CSS, XHTML and more.

Reply
 
LinkBack Thread Tools Search this Thread
Old July 30th, 2007, 2:36 PM   #1 (permalink)
Registered User
Fresh Surpasser
 
Joined in Jan 2005
15 posts
Gave thanks: 1
Thanked 0 times
In need of some zen help....pretty please

Long story short, I paid a "friend" ( I use the term loosely) $600 to do my site and he has left me high, dry and broke. I even went as far as designing it myself because he didnt know how to do "girly" sites. All he had to do was take my design slice it, dice it and roll with it. Its been a few weeks now and I HAVE to get this site up and going in the next week or 2 and he has been MIA with no way to contact.

So now I am left in need of some help as I know nothing at all about CSS. I have read the tutorials, I have played with the code, but I do not know the ins and outs of it, how its applied to zen cart, what goes where, and how to implement my design to the site. I can do basic html, as far as making eBay templates and such, but this a whole nother bowl of spaghetti and it just too overwhelming for me especially when I am trying to do everything else in normal life as well as virtual life.

I also have a SSL certificate, but have no idea how to get it to go https on the page I need it to be on.

So these things are what I am needing. my budget is pretty much blown, but if the price is reasonable, I am very willing to pay for your time and help.
classycrafter is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 30th, 2007, 3:58 PM   #2 (permalink)
﴾͡๏̯͡๏﴿...tweet
Super #1
 
Joined in Dec 2005
5,743 posts
Gave thanks: 145
Thanked 151 times
zen cart.... ewww. good luck.
__________________
poof
Brandonnn is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 30th, 2007, 4:19 PM   #3 (permalink)
Registered User
Fresh Surpasser
 
Joined in Jan 2005
15 posts
Gave thanks: 1
Thanked 0 times
Quote:
Originally Posted by Brandon View Post
zen cart.... ewww. good luck.

Is there an easier cart out there? Or are they all pretty much the same?
classycrafter is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 6th, 2007, 2:35 PM   #4 (permalink)
Senior Member
Super #1
 
FredFredrickson's Avatar
 
Joined in Nov 2003
Lives in New Hampshire
1,182 posts
Gave thanks: 3
Thanked 22 times
Put a fountain in the corner. That will make it feng shui
__________________
The Coding Blog - Follow along as we discover and discuss everything it takes to code an entire website, start to finish! [Latest Entry: 4/4/08 - Starting a Website]
FredFredrickson is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 14th, 2007, 11:53 AM   #5 (permalink)
Registered User
Comfy Contributor
 
Joined in Dec 2006
Lives in North Carolina, the suck ass state...
152 posts
Gave thanks: 8
Thanked 3 times
That's why you have them make and deliver you the site FIRST then you pay them...
Otaku is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 16th, 2007, 6:45 PM   #6 (permalink)
Registered User
Fresh Surpasser
 
Joined in Sep 2007
1 posts
Gave thanks: 0
Thanked 1 Time in 1 Post
I'd be willing to help you out! I've been looking for things to put in my portfolio. E-mail me at enchantameritech.net, and let me know the details.
enamoured is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
This user thanks enamoured for this great post!
Kayla (September 16th, 2007)
Old September 17th, 2007, 4:47 AM   #7 (permalink)
﴾͡๏̯͡๏﴿...tweet
Super #1
 
Joined in Dec 2005
5,743 posts
Gave thanks: 145
Thanked 151 times
Quote:
Originally Posted by Otaku View Post
That's why you have them make and deliver you the site FIRST then you pay them...
Hah. Good luck with that concept. No real client will take you seriously.
__________________
poof
Brandonnn is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 17th, 2007, 12:30 PM   #8 (permalink)
Registered User
Fresh Surpasser
 
Blondy's Avatar
 
Joined in Sep 2007
7 posts
Gave thanks: 0
Thanked 0 times
I am not sure what problem exactly you faced with the CSS and design, but I will try to help you out with SSL, it is pretty easy.

The set up procedure varies, depending on whether you have your own certificate, or are using the shared one of your hosting server. The process requires you to change the following files by hand:

includes/ configure.php
admin/ includes/ configure.php

It is important to note that in case you are using word processing software, additional symbols will be added to your files, causing malfunction of your shop. To avoid this, please use simple text editors, such as Notepad.

1. If you use your own SSL:

For the new configuration settings to be applied, you need to change either listed files. To do that, just find the files, listed above, and open them with a simple text editor. Locate the following lines of code:

// Define the webserver and path parameters
define('HTTP_SERVER', 'http://www.yourdomain.com');
define('HTTPS_SERVER', 'https://(www.)yourdomain.com');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?

Set your domain name in the appropriate slots, and replace false in the last row with true. Again, whether you place www. in front of your domain name depends on the certificate you have purchased. SSL certificate can be purchased for "yourdomain.com" or for "www.yourdomain.com"

2. If you use shared SSL:

Again, you need to open the files with a text editor. Change

includes/configure.php and
admin/includes/configure.php

to:

// Define the webserver and path parameters
define('HTTP_SERVER', 'http://www.YOUR_SHOP.com');
define('HTTPS_SERVER', 'https://server.IP.address.here/~YOUR_USERNAME');
define('ENABLE_SSL', true); // secure webserver for checkout procedure?

Here I am not sure about the shared SSL address, you need to know this or ask Surpass staff - they will definitely help you out.

In case you desire to disable SSL - you must locate the files
includes/configure.php
admin/includes/configure.php

and in the code segment

// Define the webserver and path parameters
define('HTTP_SERVER', 'http://www.YOUR_SHOP.com');
define('HTTPS_SERVER', 'https://www.YOUR_SHOP.com');
define('ENABLE_SSL', true); // secure webserver for checkout procedure?

change the word true to false. That would be enough to turn the encryption off for your store.

Much text, I know But I really wanted you to understand it better. Good luck!
Blondy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 18th, 2007, 12:22 PM   #9 (permalink)
Senior Member
Super #1
 
FredFredrickson's Avatar
 
Joined in Nov 2003
Lives in New Hampshire
1,182 posts
Gave thanks: 3
Thanked 22 times
I usually do half down, and second half on completion. Then both parties have a reason to stay with it.
__________________
The Coding Blog - Follow along as we discover and discuss everything it takes to code an entire website, start to finish! [Latest Entry: 4/4/08 - Starting a Website]
FredFredrickson is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On