vote up 2 vote down star
2

This is a very specific question, but I hope there are some folks familiar with this setup using multiple installs of symfony. It's an urgent issue, and I am pretty desperate and just a lowly frontend developer with little knowledge of the inner workings of symfony. I'm hoping an answer here can prevent me from reading all the documentation, for now.

All I know about this development environment for this project I inherited is linked to the live site via the staging site, there are multiple dev sites, one for each team member. Each dev server is linked to a central svn repository. Developers check out from the repository and then update the server to test separately before committing to the repo again. Once the dev server has been updated by running 'svn update', I am suppose to type in the commands 'symfony sync staging' and 'symfony sync staging go' in the www directory of my dev server to sync files with the staging server. Then I run some commands to clear the cache and rebuild the model on the staging server and run some similar commands to go live with the changes.

What I did wrong was type 'symfony sync staging' and 'symfony sync staging go' while accessing the app directory on the staging server. I got some error messages while the second command was being processed, things along the lines of 'file not found.' I tried contacting the original dev team that set up all this, but our communication with them is limited. With their help I was able to replenish missing files and directories in the app/web and public-html/ directories like frontend-dev.php, frontend.php, admin-dev.php, backend.php, backend-dev.php, screen.css, .htaccess, /sf, etc. etc, while having to comment out the relative-url the settings.yml in app/apps/frontend/config/, since the staging site does not use a relative url.

The site currently has areas that strangely don't work, where pages show up as empty even though I have checked the respective actions.php function and template file for the module. The code for the modules look up to date, although I haven't inspected all of them, since there are a lot of modules. I am guessing there are some settings that aren't correct. I tried using frontend-dev.php but somehow .css aren't loading, so I can't see any info to help me debug.

Any suggestions would be helpful. I am very lost with how to fix this issue and do not have time to read all the documentation. Most importantly, I don't understand the nature (or scope) of my problem, besides that some files were overwritten, though I can't pinpoint which ones.

flag

80% accept rate

1 Answer

vote up 1 vote down

After some consulting, I replaced all the missing files in app/web (I missed some in the first run, specifically the /sf folder with all the javascript) and public_html. I also found my dev was overwriting my custom frontend config/settings.yml file to enable the relative url only it was using. I wrote a short php condition testing the $_SERVER['HTTP_HOST'] and added it to the svn repo to solve this issue. These two changes solved the rest of the issues.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.