Jump to content


Corporate Sponsors


Latest News: (loading..)

imop

Member Since 10 Jan 2010
Offline Last Active Jan 31 2012, 16:00
-----

Posts I've Made

In Topic: Trying to mess with the stylessheet with no luck

04 January 2012, 20:25

View Postyaniv14, on 04 January 2012, 20:05, said:

Just use Inspect Element in chrome or firebug in Firefox, locate the file and specific line of what you changed and edit this CSS file in notepad++

Correct! ;)

In Topic: Trying to mess with the stylessheet with no luck

04 January 2012, 15:02

Be more specific on your problem and start with:

What version of oSC are u using?

p.s. did you searched the forum for solution?

In Topic: How to limit lenght of product name

04 January 2012, 14:57

Hi

1) question:
Something like this:

$rest = substr("abcdef", 0, -1);
echo $rest.'...';  // returns "abcde..."

2) question - Yes

In Topic: Cant Get Simple Contribution to work correctly

04 January 2012, 07:50

Can u give me the contribution link, so i can take a closer look?

In Topic: from localhost to live server

02 January 2012, 09:47

View Postsydjeii, on 02 January 2012, 09:09, said:

i found the files..which values should i change?

First u need to change:

this lines in both files:

  define('DB_SERVER', 'localhost');
  define('DB_SERVER_USERNAME', 'my_database_username');
  define('DB_SERVER_PASSWORD', 'my_database_password');
  define('DB_DATABASE', 'my_database_name');

then look at you paths in beginning of file:

  define('HTTP_SERVER', 'http://www.yourdomain.com');
  define('HTTPS_SERVER', 'http://www.yourdomain.com');
  define('ENABLE_SSL', false);
  define('HTTP_COOKIE_DOMAIN', '');
  define('HTTPS_COOKIE_DOMAIN', '');
  define('HTTP_COOKIE_PATH', '/catalog/');
  define('HTTPS_COOKIE_PATH', '/catalog/');
  define('DIR_WS_HTTP_CATALOG', '/catalog/');
  define('DIR_WS_HTTPS_CATALOG', '/catalog/');

if you shop is in the main directory of your hosting then delete the "/catalog/" from above config lines for example:
before:
define('HTTP_COOKIE_PATH', '/catalog/');
after:
define('HTTP_COOKIE_PATH', '');


also look for this line:

define('DIR_FS_CATALOG', '/home/username/domains/yourdomain.com/public_html/');

change the absolute path to your shop directory.

also look if admin/includes/configure.php and make changes