Veel Media

Programing Source code

Main menu

Skip to primary content
Skip to secondary content
  • Web Development
    • PHP Frameworks
    • Javascript
  • Tools
    • Javascript Tools

Error: Database table *** for model *** was not found

Posted on November 23, 2011 by admin
8

A possible solution: Delete cached models in CakePHP
Any time you add a new model or adjust your associations, be sure to delete the cached ones from the /app/tmp/ folder, if you’ll get inexplicable errors about missing models.

Posted in CakePHP | 8 Replies

Useful Javascript Libraries

Posted on November 17, 2011 by admin
1

Moment.js

A lightweight javascript date library for parsing, manipulating, and formatting dates.

Link: http://momentjs.com/

Node.js

Node.js is an event-driven I/O server-side JavaScript environment based on V8. It is intended for writing scalable network programs such as web servers.

Link: http://nodejs.org/

Posted in Javascript Tools | 1 Reply

Check if a Javascript Function Exists or Is Defined

Posted on October 24, 2011 by admin
2

To check if a Javascript function exists before calling it, try this:

if (typeof yourFunctionName == "function") {
    yourFunctionName();
}

Source:

http://www.idealog.us/2007/02/check_if_a_java.html

Posted in Javascript | Tagged function, javascript | 2 Replies

Categories

  • CakePHP (1)
  • Javascript (1)
  • Javascript Tools (1)

Archives

  • November 2011 (2)
  • October 2011 (1)

 

January 2012
M T W T F S S
« Nov    
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

Tags

function javascript
Proudly powered by WordPress