-
Posts
287 -
Joined
-
Last visited
Profile Information
-
Gender
Not Telling
RobertP's Achievements

Regular Member (3/5)
27
Reputation
-
well for example this is my crontab line.. * * * * * php /var/www/index.php cron-tick > /dev/null 2>&1cron-tick -- is my argument... http://php.net/manual/en/features.commandline.usage.php http://php.net/manual/en/reserved.variables.argv.php
-
man, these phpfreaks guys are so friendly, i wish i got this much help when i started out... ps: don't ask for code, as for help
-
I would think since you are working with 'one' of your client's' (--plural of-course); then you should have a decent hosting environment. I shall recommend www.webfaction.com
-
How to create simple CMS without database
RobertP replied to Rita_Ruah's topic in Application Design
Ok, i strongly recommend using sqlite in your circumstance. It is a db, but it has no dependencies, except php support which i believe comes pre-installed.. -
Session/Users Wont work on some computers
RobertP replied to ryanmetzler3's topic in PHP Coding Help
My first guess is that the computers have cookies disabled. -
Opinions on Reputable and Reliable Reseller Hosts?
RobertP replied to BuildMyWeb's topic in Miscellaneous
i have been with webfaction for a while now: - full ssh access - possibility to install your own packages, run your own mysql, apache / w.e else - dedicated ram - plans starting less then 10$ - and amazing uptime... -
If the iPod supported "Find My iPhone/Pod", and if it was enabled then helpfully yeah; providing the pod was password protected or who ever has it does not know how to disable it. About the blackberry, sorry i have no experience with these devices.
-
Don't lie, that will only put you into a situation that you can not fulfil. You need to be professional when approaching potential customers; and continue to keep that professionalism consistent throughout the who period of working with that person. Make sure you have a portfolio and some code example that you are willing to show publicly, does not have to be the whole application just something to show you know what you are doing and to show your coding style / techniques. If you are only good at coding, then make sure you specifically state that.. if you are coding only... tell them what you can and can not do. -- 99.9% of potential customers do not know the difference between 'web developer' and 'web designer'. How that helps. edit: punctuation
- 6 replies
-
- web development
- design
-
(and 3 more)
Tagged with:
-
I think you should be reading the material the course is providing.
- 7 replies
-
- help
- computer-science
-
(and 2 more)
Tagged with:
-
Well my browser of choice is chrome, and there is a difference between 'inspect element' and 'view source'. Inspect element will in fact show the modified DOM (html structure), and the view source is the raw response from the web server.
-
I am looking for a resource friendly (on both the server and the visitors browser) for loading css and javascript files. I am currently loading both by external links: <link rel="stylesheet" href="..." /> <script src="..."></script>I have been contemplating on weather or not i should just embed the css in the html file..<style>...</style>Background: I am developing a large scale platform that will host websites. It will deploy itself as a distributed cms. If you have a better idea for performance within this category, please share for the community (and me )
-
Thank you, i will use your recommendation, as it seems like common sense rather then trying to build each tag into one expression. $patterns = array( '#\[(b)\]((?:[^[]|\[(?!/?\1])|(?R))+)\[/\1]#i', '#\[(i)\]((?:[^[]|\[(?!/?\1])|(?R))+)\[/\1]#i', '#\[(u)\]((?:[^[]|\[(?!/?\1])|(?R))+)\[/\1]#i', '#\[(color)\=(.+)]((?:[^[]|\[(?!/?\1])|(?R))+)\[/\1]#i', );
-
ok, so i have the color working, (c tag in this example, as i still can not use tags that are longer then 1 character ) #\[([b|i|u|c])?=(.+)]((?:[^[]|\[(?!/?\1])|(?R))+)\[/\1]#i but, this has broken my other 3 tags, [b|i|u]
-
so i am creating a bbcode parser, and i am having a little issue with my pattern. #\[([b|i|u])]((?:[^[]|\[(?!/?\1])|(?R))+)\[/\1]#i this works for b,i & u tags; however i am trying to implement a tag that is longer then 1 character (not sure why this would cause a problem, but it does) and add a parameter. i have tried the pattern below, but without luck. #\[([b|i|u|color])(?:=(.+))]((?:[^[]|\[(?!/?\1])|(?R))+)\[/\1]#i if someone could point me in the right direction, that would be amazing..