Giter Club home page Giter Club logo

cms's People

Contributors

dependabot[bot] avatar jordanjun98 avatar raylight75 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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

cms's Issues

Website Maintenance

It will take time for me to move the test site to a new hosting plan. I apologize for the inconvenience

Assign a new user as an admin...dump

If I want to add a user as an admin...
2017-06-19 06_51_50-admin backend
and save....I got an error
2017-06-19 06_48_43-localhost_myshop_public_backend_users_7
If I assign a user role...success, all is ok, no dump

and very nice project !

Problem with Laravel 5.5 and Zofe-Rapyd

So if you have problem when updating to Laravel 5.5 copy this code to Zofe/rapyd/src/DataForm/Field/Field.php From line 142 :
if (method_exists($this->relation, 'getQualifiedRelatedPivotKeyName')) { $this->rel_other_key = $this->relation->getQualifiedRelatedPivotKeyName(); } elseif (method_exists($this->relation, 'getQualifiedRelatedKeyName')) { $this->rel_other_key = $this->relation->getQualifiedRelatedKeyName(); } else { $this->rel_other_key = $this->relation->getOtherKey(); }
Or See this pull request zofe/rapyd-laravel#417

Call to undefined function _()

in some part view there is an error Call to undefined function _ ()
I think this problem lies in the translation function
please help to solve this

Trying to get in touch regarding a security issue

Hey there!

I'd like to report a security issue but cannot find contact instructions on your repository.

If not a hassle, might you kindly add a SECURITY.md file with an email, or another contact method? GitHub recommends this best practice to ensure security issues are responsibly disclosed, and it would serve as a simple instruction for security researchers in the future.

Thank you for your consideration, and I look forward to hearing from you!

(cc @huntr-helper)

Registration

hi, how do you manage unregistered users ? if anyone dont want to register how can shop ?

PHP Warning: require(E:\project\ecms\cms\bootstrap./vendor/autoload.php):

php artisan migrate
PHP Warning: require(E:\project\ecms\cms\bootstrap./vendor/autoload.php): failed to open stream: No such file or directory in E:\project\ecms\cms\bootstrap\autoload.php on line 17

Warning: require(E:\project\ecms\cms\bootstrap./vendor/autoload.php): failed to open stream: No such file or directory in E:\project\ecms\cms\bootstrap\autoload.php on line 17
PHP Fatal error: require(): Failed opening required 'E:\project\ecms\cms\bootstrap./vendor/autoload.php' (include_path='C:\xampp\php\PEAR') in E:\project\ecms\cms\bootstrap\autoload.php on line 17

Fatal error: require(): Failed opening required 'E:\project\ecms\cms\bootstrap./vendor/autoload.php' (include_path='C:\xampp\php\PEAR') in E:\project\ecms\cms\bootstrap\autoload.php on line 17

Socialite

Is it possible to add support for login with Githib, Facebook, twitter etc maybe with Socialite

Do you need Filipino Translation for Raylight75?

Hi there,

Good day and how are you? I hope this message finds you well.

I am Joseph Buarao , who has been doing high quality Filipino and Tagalog translations for several projects.

Consider this message as my letter of application. I am a web developer by profession and an experienced Filipino translator - these are on top of being an experienced web developer with more than 6 years of experience and specialized in the following scripting languages and technologies (HTML, CSS, JS, JQUERY, PHP, WORDPRESS and CONCRETE5). This means I know which codes are to be translated, and which ones that are to remain as it is. I am a strong advocate of thought-by-thought instead of word-by-word style of doing the translations, and I am carefully strict in grammars and spellings and proper word conjugations of my languages, Filipino and Tagalog.

I hope to hear from you soon and work with you in the translations. You can count on me that I will do my job with utmost dedication. Thank you and more power to you.

You can check my previous contributions:

textpattern/textpattern@29308ff
https://crowdin.com/project/textpattern-cms-textpacks/fil

Best Regards,
Joseph Buarao

PayPal support

I noticed that you have Paypal Class for test Payments , but does it work really

"laravelCollective/html" and "nesbot/carbon" compatibility issue

Hello.
After downloading "raylight75/cms" when I'm updating composer following Two errors occur

  1. "Zofe/rapyd dev-master" requires "laravelCollective/html ~5.6"
  2. laravel/framework v5.5.9 requires nesbot/carbon ~1.20

I could not get that, Does anyone has solution?
I've attached snapshot of that errors
raylight75issue

ErrorException (E_WARNING) "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?

Please i keep getting this error when i click on order, brand, category at the backend. i cloned the project did composer update. please help

ErrorException (E_WARNING)
"continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?

$methodClass = get_class($this->relation);
switch ($methodClass) {
case 'Illuminate\Database\Eloquent\Relations\BelongsToMany':

                $old_data = $this->relation->get()->modelKeys();
                $new_data = explode($this->serialization_sep, $data);

                $this->relation->detach($old_data);

                if ($data=='') {
                    continue;
                }

                if (is_callable($this->extra_attributes)) {
                    $callable = $this->extra_attributes;
                    foreach ($new_data as $d) {
                        $this->relation->attach($d, $callable($d));
                    }
                } elseif (is_array($this->extra_attributes)) {
                    $this->relation->attach($new_data, $this->extra_attributes);
                }

                break;
            case 'Illuminate\Database\Eloquent\Relations\HasOne':

                if (isset($this->model_relations[$this->rel_name])) {

error when click on orders in admin panel

hello
when clicking on orders in admin panel its show me this:
"continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?
`$methodClass = get_class($this->relation);
switch ($methodClass) {
case 'Illuminate\Database\Eloquent\Relations\BelongsToMany':

                $old_data = $this->relation->get()->modelKeys();
                $new_data = explode($this->serialization_sep, $data);

                $this->relation->detach($old_data);

                if ($data=='') {
                    continue;
                }

                if (is_callable($this->extra_attributes)) {
                    $callable = $this->extra_attributes;
                    foreach ($new_data as $d) {
                        $this->relation->attach($d, $callable($d));
                    }
                } elseif (is_array($this->extra_attributes)) {
                    $this->relation->attach($new_data, $this->extra_attributes);
                }

                break;
            case 'Illuminate\Database\Eloquent\Relations\HasOne':`

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.