osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

Just installed MS2-Max here's a few tips if your struggling

This is a discussion on Just installed MS2-Max here's a few tips if your struggling within the osCMax v1.7 Installation forums, part of the osCMax v1.7 Forums category; I am using Dreamweaver MX 2004......


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v1.7 Forums > osCMax v1.7 Installation

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #11  
Old 10-26-2004, 12:49 PM
New Member
 
Join Date: Oct 2003
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
innovations
Default

I am using Dreamweaver MX 2004...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
  #12  
Old 11-10-2004, 05:09 PM
New Member
 
Join Date: Nov 2004
Posts: 23
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
seandon01
Default

THANK YOU FOR THIS TOPIC!!! I was gonna kill m computer until i found this post.. solved my simple problem
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #13  
Old 02-05-2005, 03:02 PM
Member
 
Join Date: Jan 2005
Location: Holland
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
doumawis
Default i am still struggling with the database

i am not despered, but if you are in hurry to set up a shop than i can imagine that you don't like this sucking affair of installation.

The problem is the amateuristic installation manual with not all relevant details: you have to look in the forum or use your commen sense.
Well trial and error: that sucks and

The positive site of the story is that you are forced to study the subject databases and has to think about it.



doumawis
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #14  
Old 02-16-2005, 05:02 AM
New Member
 
Join Date: Feb 2005
Location: Belgium and Netherlands
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
nathanwheeler
Default RE: i am still struggling with the database

oki, first post , sorry if i do wrong.

IF you run oscommerce with a PHP5! installation you will get an empty screen when opening the
adminitsration page of your newly installed oscommerceMAX OR MS2
GO TO directory: admin/includes/classes/ and open upload.php , there is on line 30....
// self destruct
$this = null;

THIS should be :
// self destruct
$this == null;
__________________
hope this helps ...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #15  
Old 02-17-2005, 07:13 PM
Lurker
 
Join Date: Feb 2005
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
jaruss
Default Can't find mainpage.php?

I too appreciate this post. I am having difficulty understanding the file structure for osCmax 2.2.

The templates directory has main_page.tpl.php

Is this the file that I need to edit to modify the home page?

Do I have to rename it since the admin menu is looking for main_page.php?

Thanks for any help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #16  
Old 02-18-2005, 05:29 AM
Lurker
 
Join Date: Feb 2005
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
jaruss
Default RE: Can

Ok, I've been reading more and understand that it is the main_page.tpl.php that I need to modify. Why does the admin menu catalog/contents/Define Main Page instruct you to modify mainpage.php? Am I supposed to rename main_page.tpl.php?

Sorry if I'm being really slow here... I'm not a programmer just someone trying to get this working.

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #17  
Old 02-18-2005, 09:20 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 11,092
Thanks: 81
Thanked 348 Times in 327 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default RE: Can

Define main page modifies the center content of the index page of your shop. main_page.tpl.php modifies the actual template of your site design, not any content.
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates designed for osCMax 2. Loyalty discounts up to 30% off!
    Each purchase supports the osCMax project with much needed funds!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host. Default multi server configuration for exceptional performance!

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #18  
Old 04-22-2005, 03:05 PM
New Member
 
Join Date: Apr 2005
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
thatsme
Default

After installation on an apache php5 server I did this:
Code:
THIS should be :
// self destruct
$this == null;
but that message follows me now into my deepest dreams:

Code:
open_basedir restriction in effect. File(/includes/languages/german/login.php) is not within the allowed path(s):
Why I get this message on a new installation?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #19  
Old 04-23-2005, 02:10 AM
Member
 
Join Date: Jan 2004
Location: Netherlands
Posts: 71
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 0
paulM
Default Re: RE: i am still struggling with the database

Quote:
Originally Posted by nathanwheeler
// self destruct
$this = null;

THIS should be :
// self destruct
$this == null;
While this does help, it's not correct. "$this == null;" has no meaning here (that's why it helps as much as commenting the line out). It checks if $this equals null and returns true or false.

In stead of the above you could as well comment it out like
Code:
  // self destruct
  //$this == null;
But assuming the programmer had a reason to set $this to null, I would use:
Code:
  // self destruct
  unset($this);
myself
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #20  
Old 06-16-2005, 02:33 PM
New Member
 
Join Date: Mar 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
newtothis
Default RE: Can

I have problems too,I have done everything to get the define Main_Page writable but nothing, I logged in as the administrator with the regular default account admin@localhost.com and change the attributes to folder: cache,temp,define_mainpage/admin, languages and nothing..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
Closed Thread

Thread Tools

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

Similar Threads

Thread Thread Starter Forum Replies Last Post
Installed OsCMax....but.... jewls osCMax v2 Installation issues 2 12-03-2006 10:39 AM
Nearly installed please help beahawk osCommerce 2.2 Installation Help 4 05-18-2005 11:18 AM
Installed Mod Instructions rick osCMax v1.7 Discussion 1 12-27-2004 09:12 AM
OSCMAX 1.5 and the BTS that is installed, HELP!!! FilmDirector osCMax v1.7 General Mods Discussion 1 05-03-2004 10:48 PM
Modules not installed... why? Anonymous osCMax v1.7 Discussion 7 11-23-2003 11:04 PM


All times are GMT -8. The time now is 04:16 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax