Git Product home page Git Product logo

wardrobe-archived's People

Contributors

ericlbarnes avatar gazard7 avatar rtablada avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wardrobe-archived's Issues

Nginx rewrite

Since I do not use Apache, /install gave me a 404 and .htaccess does not work with nGinx, so I had to modifie my config to look something like:

    location / {
             try_files $uri $uri/ /index.php;
    }
    location ~ \.php$ {
            try_files $uri @missing;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }
    location @missing {
            rewrite ^ /index.php;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

Just thought this would be useful for other nGinx users.

Magic Constants.

I love simplicity. I've built a very basic CMS in the past. Curious to test this out, however you rely too much on DIR, magic constants shouldn't be relied upon. It was very difficult to get this working since the file system needs to be completely redone. The start file, should have a root file variable, where the user places the location, and then the app uses that to know where the files are located. Don't rely on the internal system, too many OS and software changes to know if it works or not. Other than that, looks interesting.

Getting index of files

I just ran composer create-project wardrobe/wardrobe as per the instructions, and then went to the website with my apache. Since there's no .htaccess, it displays an index of files. So... That works. But wardrobe doesn't do jackall - I have to make it 'go', somehow, so at this point (and this might be worth putting in the install instructions), which file are we supposed to run to install wardrobe further?

One thing I've tried is to go to server.php, because it's the only php file that might be runnable. It redirects to /install which (correctly) outputs a 404 - it doesn't exist, neither as a file, nor as a directory.

What's the next step?

Argument 2 passed to Illuminate\\Auth\\Guard::__construct() must be an instance of Illuminate\\Session\\Store

I just tried to setup wardrobe in two different ways.
method 1) git clone https://github.com/wardrobecms/wardrobe then composer install

method 2) composer create-project wardrobe/wardrobe

In both cases before it fully completes I get the following error

Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Nothing to install or update
Generating autoload files
{"error":{"type":"ErrorException","message":"Argument 2 passed to Illuminate\\Auth\\Guard::__construct() must be an instance of Illuminate\\Session\\Store, instance of Illuminate\\Session\\SessionManager given, called in S:\\PRJ\\wardrobe\\vendor\\wardrob
e\\core\\src\\Wardrobe\\Core\\Facades\\Wardrobe.php on line 62 and defined","file":"S:\\PRJ\\wardrobe\\vendor\\laravel\\framework\\src\\Illuminate\\Auth\\Guard.php","line":76}}Script php artisan optimize handling the post-install-cmd event returned with an error

[RuntimeException]
Error Output:

install [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--no-plugins] [--no-custom-installers] [--no-scripts] [--no-progress] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader]

this machine is running Windows 8, PHP 5.5, Apache 2

Installation instructions failed

Hi.

I tried to install wardrobe via composer as indicated on your install section, but it didn't work, the install failed saying Class 'Patchwork\Utf8\Bootup' not found in autoload.php

I tried clearing autoload.php and doing composer install but it didn't work

What I ended up doing was installing Laravel 4.1 from scratch:
composer create-project laravel/laravel wardrobe 4.1 --prefer-dist

The installing patchwork utf8:
composer require patchwork/utf8 1.1.x-dev

Then installing wardrobe core
composer require wardrobe/core

And then bringing in the Wardrobe files from git.

Then I was able to set up wardrobe and install a user.

But once I got it installed I couldn't access the login page. I had to add the login routes from core::routes.admin_group_rules to core::routes.blog_group_rules

Maybe you guys need to update the instructions and the code a bit.

Thanks.

Doesn't have a collection of themes?

I haven't see any collections of Wardrobe themes.
I think it should be have at your website because if someone want to create
a theme for public so this man want to share it.

[question] html

is there any way to edit/save/display as html?
using current markup lacks of some features like inline specific element styling etc..

I am stuck on the frontpage

How do I get to see the admin area and the login area. I got trough the install and now I get to see the frontpage with a option to either go to post (empty) or rss.

So how to proceed from this? I tried /login without succes.

edit:
Do I need to go into routes and create it my self? Just started learning Laravel.

Input blank URI Slug

I'm using the Japanese, URI Slug will be blank if you have a title in Japanese.
Will it not be the current date to be insert if URI Slug is blank?

Project dead?

Just wondering if this project was dead or somewhat?

Laravel versions?

During install, after being asked to add user (/install/user)
I am getting the following error

Class Wardrobe\Core\Models\User contains 3 abstract methods and must therefore be declared abstract or implement the remaining methods (Illuminate\Auth\UserInterface::getRememberToken, Illuminate\Auth\UserInterface::setRememberToken, Illuminate\Auth\UserInterface::getRememberTokenName)

This is supposed to be caused by Laravel update from 4.1.25 -> 4.1.26+ http://laravel.com/docs/upgrade#upgrade-4.1.26

See:
laravel/laravel@f138f0f

but according to Composer.json, laravel is 4.0.*
and calling php artisan --version, i was told that i am on "Laravel Framework version 4.0.10"

Did you mean this? wardrobe:cofig

Not quite sure how that one went undetected? I'm assuming everyone runs this command

S:\proj\wardrobe>php artisan wardrobe:config
  [InvalidArgumentException]
  Command "wardrobe:config" is not defined.

  Did you mean this?
      wardrobe:cofig

S:\proj\wardrobe>php artisan wardrobe:cofig
Configuration published for package: wardrobe/core

Post Body

Hi, please escape input/output data especially in the post's body.
When I try to add javascript alert it was rendered by the browser. This may cause issues.

Doubly trailing slash

// double trailing slash makes it impossible to work locally. Any fix using MAMP with this?

PHP Fatal error

  1. Git clone
  2. Composer install
  3. PHP Fatal error: Call to undefined method Illuminate\Foundation\Application::redirectIfTrailingSlash() in /home/user/wardrobe/bootstrap/start.php on line 16

Tags can get deleted on save

Step 1:
Create a new post and add some tags.

Step 2:
Press "Publish Post" and stay on the site (editor).

(Optional: Check the tags in editor, they are empty now...)

Step 3:
Change something in text (or not) and "Save Post" again.

Tags are deleted from Database.

If you check the tags in editor now, you see them, but they are not saved in the database anymore, there is just the post_id with an empty tag.

When you save the post a third time, the tags gets addded to database again.

Markdown files

Where are the markdown files stored? I looked in the db at the content column but it is not in markdown form.

Can we use wardrobe on mainstream hosting ?

First, it's the first time I try to use a project which need Composer. And I'm not sure how to handle it.

I sent complete wardrobe directory by FTP on a mainstream web hosting (in my case, OVH) and modified the database file. But, what should I do with Composer since I don't want to use Wardrobe locally, but on the web host.

Can you guide me to the right spot ?

Kind,

Can't drag and drop posts

Getting:

"Wardrobe\Core\Controllers\Api\File not found"

...when trying to drag and drop a post onto the admin. Further investigation seems to indicate that that file actually doesn't exist in the Wardrobe\Core package.

View [default.about] not found. and View [default.tags] not found.

I have installed Wardrobe and everything works perfectly. I have selected the default theme and noticed in the routes it has a set up for "/about" and "/tags", out of curiosity, I went to view those pages in my browser and got the respective errors shown in the title.

I have installed via composer and my database has been set up properly. The index works along with the admin and the rss and archive also work.

I have changed the theme from default to blocky and to simple with the same errors.

codemirror vs dropzone

I'm a bit confused where exactly is dropzone being used? This whole time I thought the image drop in the text area was dropzone but now I realise it's actually code mirror...

Add :dev-master to composer install

Took me a bit to figure out that you have to add :dev-master to the "composer create-project wardrobe/wardrobe" otherwise I was getting an error saying could not find package with stability stable.

Redirect with inputs

when there is an error on creating the user, the inputs are empty and we have an error message, it should redirect with inputs

typo wardrobe:config

Small typo in /vendor/wardrobe/core/src/Wardrobe/Core/Console/ConfigCommand.php after installation:

protected $name = 'wardrobe:cofig';

must be wardrobe:config (I have no idea where to look for wardrobe artisan commands).

draft

Hello
Please,You can do Drafts ?

404 Not Found

I was installing with composer create-project wardrobe/wardrobe command. And I gave permission

chmod -R 777 app/storage chmod 777 public/images

But when I go to www.mysite.com/public/public/install I found 404 error.

Any idea how to fix this?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.