Professional OpenCart Customization And More
as when i start, i put my domain name in, and then my user and password and just sits there and says not loggin in at bottom
next time i run it , says cant run the db?
also if i log in and click import, says db not initialize
1. Go to the infomation page, copy the text and paste it herextreme-styling wrote:have downloaded this and cant seem to get it to work? do i have to ftp anything to my site?
as when i start, i put my domain name in, and then my user and password and just sits there and says not loggin in at bottom
next time i run it , says cant run the db?
also if i log in and click import, says db not initialize
2. you do need to initialize some Dbs before you can go
3. Does your site use SSL for administration?
Professional OpenCart Customization And More
PHPSESSID=eac6fe5e6af79789e876c935d1596a29
currency=GBP
HTTP/1.1 302 Moved Temporarily
Date: Thu, 20 Jan 2011 21:55:30 GMT
Server: Apache
X-Powered-By: PHP/5.2.14
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: PHPSESSID=eac6fe5e6af79789e876c935d1596a29; path=/
Set-Cookie: currency=GBP; expires=Sat, 19-Feb-2011 21:55:30 GMT; path=/; domain=www.xtreme-styling.com
Location: http://www.xtreme-styling.com/admin/ind ... a357f98ab1
Vary: Accept-Encoding
Content-Length: 0
Keep-Alive: timeout=10, max=30
Connection: Keep-Alive
Content-Type: text/html; charset=UTF-8
i click it, it does nothing with the db?
Professional OpenCart Customization And More
In most cases they need to enter your IP-address (whatismyip.org) to their exclusion in their firewall.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
Opencart Tool does not access the online DB directly. which is also insecure to expose your DB to outside.i2Paq wrote:Does your hoster let you connect to your db from home?
In most cases they need to enter your IP-address (whatismyip.org) to their exclusion in their firewall.
i2Paq, does this work fine with you?
To All other users:
what version of OC are you having?
I thought it had something to do with OC version, but I have tested many times with diffeent version:
1.4-> http://opencart14.westmontcomputer.com
1.4.9-> http://opencart149.westmontcomputer.com
1.4.9.3-> http://opencart1493.westmontcomputer.com
It worked fine with all of them. you can try them too, the user name and password are all "demo".
Professional OpenCart Customization And More
PHPSESSID=300548ed872d8af46b6160118433c05f
currency=GBP
HTTP/1.1 302 Moved Temporarily
Date: Fri, 21 Jan 2011 23:10:58 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: PHPSESSID=300548ed872d8af46b6160118433c05f; path=/
Set-Cookie: currency=GBP; expires=Sun, 20-Feb-2011 23:10:58 GMT; path=/; domain=opencart1493.westmontcomputer.com
Location: http://opencart1493.westmontcomputer.co ... 52be9588f1
Content-Length: 0
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html; charset=UTF-8
Celestial - Martín Abel Rosales
WhatsApp: 50671482211
Email: martinrosales2012@hotmail.com
Skype: martin.abel.rosales
San José , Costa Rica
what user name and pass did you use? it should be "demo"celestial wrote:Same thing
PHPSESSID=300548ed872d8af46b6160118433c05f
currency=GBP
HTTP/1.1 302 Moved Temporarily
Date: Fri, 21 Jan 2011 23:10:58 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: PHPSESSID=300548ed872d8af46b6160118433c05f; path=/
Set-Cookie: currency=GBP; expires=Sun, 20-Feb-2011 23:10:58 GMT; path=/; domain=opencart1493.westmontcomputer.com
Location: http://opencart1493.westmontcomputer.co ... 52be9588f1
Content-Length: 0
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html; charset=UTF-8
Professional OpenCart Customization And More
OpenCart Tool Update,
Change 1.The way to get your language setup in your opencart
Initially, I wanted the tool to be as invasive as possible(nothing need on the server), I have to change my mind to do some change to make it be compatible with opencart which has customized administration pages. But there is very little to do make it work because I do not want it to be invasive. just download the server end package, there are only to files:
File 1. admin\controller\tool\helper.php, looks like this
<?php
class ControllerToolHelper extends Controller {
private $error = array();
public function language() {
$this->load->model('tool/helper');
$results = $this->model_tool_helper->getLanguages();
foreach ($results as $result) {
echo $result['language_id'] . '=' . $result['name'] . "\r\n";
}
}
}
?>
File 2. admin\model\tool\helper.php, looks like this:
<?php
class ModelToolHelper extends Model {
public function getLanguages() {
$query = $this->db->query("SELECT language_id, name from " . DB_PREFIX . "language");
return $query->rows;
}
}
?>
if they do not look like here I posted, do NOT used it. what you need to do it to just upload the files to your server.
Change 2. Multi-Languages support enhancement,
it is easies to use, I know both english and Chinese, so the English and Chinese files come with the software, it will be nice if someone else can translate it to other languages
look here for how to translate: http://forum.opencart.com/viewtopic.php?f=23&t=25597
Professional OpenCart Customization And More
any chance for an OS X version?
And from the 2nd topic: "Can you add a "Language" setting (select-input) based on a directories and files under languages directory?"
Can you?
Professional OpenCart Customization And More
Would be good if this tool supports Sub categories in future..

Anyway just got the tool, and couldn't initialise properly.
Here's the information:
PHPSESSID=62ce020ccacc22dd6218c46b86bcabda
currency=SGD
HTTP/1.0 302 Found
Date: Thu, 09 Jun 2011 09:37:12 GMT
Server: LiteSpeed
Connection: close
X-Powered-By: PHP/5.2.17
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: PHPSESSID=62ce020ccacc22dd6218c46b86bcabda; path=/
Set-Cookie: currency=SGD; expires=Sat, 09-Jul-2011 09:37:12 GMT; path=/; domain=www.kawaii-gamers.com
Location: http://kawaii-gamers.com/admin/index.ph ... bd34f97336
Content-Type: text/html
Content-Length: 0
No more using Apsona, as they are not updated.
- Every upgrade -- rem. 2 reinstall vqmod & mindful of modules w/ VQmod -- E.g Import / Export Tool by MHC
Seems everyone is facing the same issue of initialising and cannot connect to the database.
No more using Apsona, as they are not updated.
- Every upgrade -- rem. 2 reinstall vqmod & mindful of modules w/ VQmod -- E.g Import / Export Tool by MHC
Users browsing this forum: No registered users and 16 guests