Jump to content

Nabeel

Administrators
  • Posts

    8151
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Any financial stuff is accounted for if you use it. It's in the pipeline for some time
  2. Basically, it goes like this: mysite.com/index.php/MODULE then MODULE -> Template A module is what's called a "controller", which handles the logic, getting data from a model (the api), and passing that data to a view (template) to output. Usually, most new programmers will plop everything into one file - all their SQL, their PHP and the HTML, all into one big file, which makes it a mess to extend, and a big mess to debug and eventually the next person who has to look at it, will shoot themselves (I come across alot of this code, it's not pretty). But this method is called "MVC" programming, "Model-view-controller", where the controller (a module) is the brain for that peice, and it will talk to the model (api) and then send its final data to the view (a template). This way is very powerful as you can shift things around, etc. In my methodology, I do the main Template::Set() calls in the Controller after getting the data from the model, and then Template::Show(), then in the template, I show the final output. That way, there are no calls to the model within a template, and it's very clear where to look for specific things; if you want to know how variables are set for the template, you check the controller. If you want to see what template is called, you check the controller. If you want to see what data is used, you check the controller, then you check the model since you'll know the exact path it's taking. And you can wrestle around with the template without touching anything in the controller or model. This way it's also really easy to see where bugs really are. Maybe reading this will help: http://en.wikipedia.org/wiki/Model-view-controller http://www.codinghorror.com/blog/archives/001112.html
  3. Can you send the image to me?
  4. Nabeel

    Financials

    Oh, the per-flight ones are rolled into the total number. It's not tabulated out the way the monthlies are... ...I think. If you add up the numbers, it should make sense
  5. Nabeel

    Financials

    For a previous month? When you view a previous month, only expenses that existed in that month will show
  6. Rev 691 - Lazy/autoloading of core and common classes, reduced memory usage by ...27 April 2009, 11:55 amRev 691 - nabeel (3 file(s) modified)Lazy/autoloading of core and common classes, reduced memory usage by ...+ /trunk/core/classes/autoload.php~ /trunk/core/codon.config.php~ /trunk/index.phpSource: phpVMSDownload from http://downloads.phpvms.net
  7. Nabeel

    Financials

    Past reports? What kind of expenses?
  8. What kind of image were you uploading? What was the size? Also, the permissions of the /lib/avatars folder must be 777
  9. Can you specifically overwrite the core/classes/codonwebservice.class.php file from the latest beta http://downloads.phpvms.net/phpvms.beta.zip ^^ Did you use that file? 661 is the update which isn't correct, you want the file above. Try that one and let me know
  10. What did you try to change the avatar to?
  11. Is the default core_navigation.tpl working?
  12. Still there? What exactly is the error? Also, what version is showing in the admin panel, and you did overwrite all the core files?
  13. Hey there, well, hopefully you'll find someone, but I think most people will only help if you've put in some sort of effort too. Check out the tutorials and read through the documentation, hopefully there will be enough to get you started at least.
  14. Hey there, welcome! First, copy any templates you edit into your skin folder. The other thing is, that capitalization may be controlled through CSS.
  15. Admin templates, no. Your main site templates, you're supposed to put your edited templates in your skin's folder
  16. In the /core folder
  17. That's fine, it doesn't need to be compiled in. It's probably just an older version that's been used for the .so
  18. I didn't think phpnuke was still being developed. Well, if you skin it the same, it can be done
  19. http://phpvms.net/forum/index.php?topic=729.msg2124#new
  20. Try to re-save it wihtout any alpha layers. Can you zip and send me a copy of it so I can take a look
  21. On that second one, search around, there's an option for it
  22. Yep Cody said it all right
  23. Shows up fine to me
  24. Wow php-nuke, haven't looked at that in a long time. You could make the page designs the same in both and just cross link. Other than that, I don't know of any other way
  25. downloads.phpvms.net/phpvms.beta.zip
×
×
  • Create New...