-
Posts
657 -
Joined
-
Last visited
-
Days Won
1
Everything posted by OrganizedFellow
-
Best practice for staging to live database synchronization
OrganizedFellow replied to evanmcd's topic in General Support
This post is almost two years old Would you share that code snippet? -
Best way to "sync" localdev and liveserver database?!
OrganizedFellow replied to OrganizedFellow's topic in Pub
NICE IDEA!!!!!!!!!! -
Best way to "sync" localdev and liveserver database?!
OrganizedFellow replied to OrganizedFellow's topic in Pub
I've seen plenty of those deploy services, but I too work alone. I can't justify the cost of them, unless I end up having a dozen or so repos belonging to different sites. If you're still using phpmyadmin, check out http://www.adminer.org/ It's a single file replacement. Works great. -
So I've been using GIT for a little while now. I'm sure my host server supports it. I've just been using it locally with several commits and branches. Nothing complicated at all. I've been using SFTP to update my site files. I will explore (later this week) committing changes to my live website though. My question to you folks: How do you sync or merge, update your database? Do you prefer manually with phpmyadmin or another tool? (Personally I like adminer.) Or do you have some automated method or scripting that does some magic for you? I have no problem doing things manually, as I have for a long time. I guess I am a creature of habit. I do LIKE using GIT and it's made its way into my workflow fairly easily.
-
Downgrade ProcessWire from 2.4 to 2.3?
OrganizedFellow replied to Lance O.'s topic in General Support
What would be the need to downgrade? -
I am actually pretty shocked that no one has mentioned GIT, github, bitbucket, etc. ? I occasionally switch between my desktop and laptop - which I hardly use. And GIT has been truly indispensable.
-
@gerhard I have the latest versions of Ruby and Compass. I followed all the instructions in your readme.md file. After I've finished everything, the finished template looks identical to Ryans Foundation 4 version. Is it supposed to be identical? or should it look different? I looked at the Demo that Joss set up and version 5 looks remarkably different than 4. I should note that I've barely been playing with scss/sass/ruby/gems for a few days. Mostly following tutorials. I have used Foundation since its very early version 2 But only ventured to play with its scss version when I came upon this thread.
-
I agree. I was/am a die-hard user and supporter of Foundation, but gotta admit, it is totally overkill for simple sites. After looking at the CSS in PocketGrid, it really is flexible. Yall seen this? http://arnaudleray.github.io/pocketgrid/examples/nested-grids-responsive.html
-
http://www.adminer.org/ it is a single file php replacement for phpmyadmin.
-
modifying the Skyscrapers profile for a realty company project
OrganizedFellow replied to OrganizedFellow's topic in Pub
I havent gotten around to it yet Ryan (busy week with the kiddos). Could ya provide me with a code snippet to make this work? -
modifying the Skyscrapers profile for a realty company project
OrganizedFellow replied to OrganizedFellow's topic in Pub
Thank you, my mistake, I should have caught that. Thanks, I will give that a shot later today. -
modifying the Skyscrapers profile for a realty company project
OrganizedFellow posted a topic in Pub
I am modifying the Skyscrapers profile for a pretend realty company. It seems well suited to the job + this seems like a superb way to "get to know PW" further. I thought I'd simply replace height with square footage. Floors and year opened will be replaced with number of bedrooms/bathrooms + year built. I haven't started yet A very time consuming part appears to be the part related to replacing all the skyscraper images with my own. What is the easiest way to replace all images in Skyscrapers profile with my own? I'm looking at a sql dump of the project and it looks like there are 71 mentions of '.jpg' under the `field_images` table, data column. But when I do a search for any of these file names (for example: sears1.jpg, westin.jpg, marriott3.jpg) in my actual folder/file structure, they are not found. What would be the simplest way to replace all the images with my own? -
EE has many sites that use *ee*.com/net/org in the domain name, mostly due to the long "e" pronunciation. With that in mind, all I can think of for PW is pwetty, a play on the word pretty, but as spoken by Elmer Fudd maybe even pwettysites.com?!
-
Project Management for Developers: How you do it?
OrganizedFellow replied to Vineet Sawant's topic in Pub
While I think Asana works very well, it's better with a team effort! Since I work alone, I have found Trello to work very well for me. -
Make sure to spread the word and vote for PW CMS on cmscritic
OrganizedFellow replied to OrganizedFellow's topic in Pub
weird, disqus doesnt like me, lol -
http://www.cmscritic.com/announcing-the-peoples-choice-for-best-open-source-cms-nominees/
-
Processwire Waiting for use.typekit.net
OrganizedFellow replied to NooseLadder's topic in General Support
<~~ uses TypeKit also and not running into problems. -
I don't own many commercial licenses, just these: My wife bought me Adobe CS5 as a wedding present years ago. I wish she had consulted me, haha, I only use Fireworks for graphic design. I've never even once launched DreamWeaver ColorSchemer Studio 2 http://www.colorschemer.com/studio_info.php A few other freebies include: Clipboard Help+Spell is a clipboard history utility http://www.donationcoder.com/Software/Mouser/clipboardhelpandspell/index.html Screenshot Captor is a screenshot utility http://www.donationcoder.com/Software/Mouser/screenshotcaptor/index.html WinSplit Revolution is a small utility which allows you to easily organize your open windows by tiling, resizing and positioning them to make the best use of your desktop real estate http://winsplit-revolution.com/ Desktop to Android to Desktop clipboard manager https://www.clippersync.com/
-
Cygwin probably is not required, since Msysgit will replace it (much smaller alternative). http://msysgit.github.io/
-
Very interesting method, thanks for sharing!
- 30 replies
-
- deployment
- tools
-
(and 1 more)
Tagged with:
-
Here is a super lightbox alternative http://dimsemenov.com/plugins/magnific-popup/
-
I want/need to do this also, but I haven't learned GIT well enough yet. So far, as the sole contributor to my projects, it works wonderfully. And I see the great potential to using it in a team. Sadly, my host has git enabled, but my pulls are not working. Something off with the host I guess. So for the meantime, I work entirely offline and then FTP (slowly).
- 30 replies
-
- deployment
- tools
-
(and 1 more)
Tagged with:
-
SUPERB! My PHP is still at a beginner level. Thank you! Regarding the function. I read it as: if $n is divisible by 2 echo('odd'); }else (if not){ echo('even'); But I expect if $n is indeed divisible by 2, then the first each should read even, not odd. Or am I reading it wrong?