Jump to content

phpFirstJoy

Members
  • Posts

    32
  • Joined

Profile Information

  • Gender
    Not Telling

phpFirstJoy's Achievements

Member

Member (2/5)

0

Reputation

  1. Do you know if there's an easy way to do that than to redraw them? Some kind of masking maybe? It takes a while for me to draw them cause I'm not very good with the pen tool yet.
  2. lol I'm finding that small changes make huge differences. I do feel more comfortable with it now though I'm a bit nervous about the ad space - I'll try to take better photos with backdrops. Think that will make it better?
  3. Ok, I made some more changes - fixed the colours a bit (I redid the shopping bags!) Other than the box below the photograph of the bracelet, I don't have any pink... Does it look pink at the bottom? I was trying to fade the plaster-looking background to something solid. The photograph is where my ads and promotions will appear. Not sure how I can change that, any ideas? BTW, I did click your link even though you told me not to Here's the updated image: [redacted by request] What do you think?
  4. Hello, I redesigned my current store but I hated it and people seem to agree! So I created a new design but it still doesn't feel right. Would really appreciate some critiques and suggestions. Here it is: [redacted by request]
  5. Is it safe for me to assume that both arrays are sorted by date/time order? If so, you could probably "cheat" a little by taking the first payment and checking it against the first deposit. Are they equal? If not, add the second payment to the first payment. Is the new total equal to the first deposit? If yes, increment to the second deposit and so on. It's not very elegant but it might get the job done!
  6. I think your config paths are not pointing to the right places. You may want to check those. No images/formatting is a good sign of that - at least that's what I experienced when getting Symfony to work.
  7. I don't think it restricts the programmer from developing with PHP5 though - similar to CodeIgniter and CakePHP. I thought the only two major frameworks that completely rely on PHP5 is Zend and Symfony and I hated them both for tasting like pound cake. But anyway, I digress... was wondering if anyone has used it and if they have, how did they find it?
  8. But so are the popular CakePHP, CodeIgniter, and others. Only a few truly use PHP5 only... In all fairness, the choice of PHP flavour technically shouldn't make this framework any worse than the others because it uses PHP4, imho.
  9. Just curious if anyone has used Akelos before? http://www.akelos.org/ It looks quite interesting but their community is reminiscent of a graveyard... :-\
  10. Slightly off-topic... My 2 cents: you can also use MVCL (L for language) which can possibly, in the future, assist you in translating sites into different languages without hassle.
  11. I don't think the captcha will stop brute force attacks - it's there to keep bots from automatically filling out your forms and submitting a massive number of user name signups, at least that's how I understood it. (Edit: spelling)
  12. You will need to play around with the included stylesheet. The stylesheet controls where things display and how they are displayed.
  13. Ditto on all three points! Plus it's one less set of syntax to memorize which is always good for the Alma mater.
  14. I guess I can't put off setting up Eclipse any longer, can I? Anyway, I think I found it! home.php $this->document->title = sprintf($this->language->get('title'), $this->config->get('config_store')); $this->document->description = $this->config->get('config_meta_description'); and in index.php // Router if (isset($request->get['route'])) { $action = new Router($request->get['route']); } else { $action = new Router('common/home'); } ... the else is called at default. The puzzle is complete! Ah, I get it now. Another site attributed the Registry as a temporary basket. I guess you could also look at it as a grocery basket - unless you place products back on the shelf, each page and all its elements are in the basket until you pay for it at the checkout counter. Then it gets dumped and emptied onto your screen. But what a mess! The code is strewn all over the place. Thanks, gizmola, you're a life-saver! And I learned more stuff! I think I'll stick around - it's so much nicer at this board knowing that there's someone who actually replies regardless of whether they know what's going on or not. I get more help in a random forum from a random person in four days than at OpenCart dev (two weeks and counting and I'm not even graced with an insult, rude reply, or anything). Not to mention I'm going through the code primarily to fill their non-existent documentation and code comments as a contribution to the OpenCart community... sheesh! No wonder people would rather get paid for it - free help isn't very much appreciated these days! [/end vent] Anyway, thanks again!
  15. Is it the scope resolution operator? Like in here... // Config $config = new Config(); Registry::set('config', $config); So Config is instantiated but Registry is not. Config is placed into Registry but because the both have similar methods and members (particularly $data and __get() and __set()), the Registry ones take precedence (its members and methods are set to static) and overload the Config ones. So, when this is done... foreach ($query->rows as $setting) { $config->set($setting['key'], $setting['value']); } It is actually Registry::set($setting['key']....)? Did I get it right? Or am I still a bit off?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.